page-banner
WDP M2-R5.1 MCQs SET-11
Q1.
कौन सा कथन जावास्क्रिप्ट में var और let कीवर्ड के बीच सही अंतर निर्दिष्ट करता है?

Which statement specify correct difference between var and let keywords in JavaScript ?
A. var defines a variable while let defines a constant.
B. There is no such major difference between them.
C. The value of a variable declared with var can be changed while the value of a variable declared with let cannot be changed.
D. var defined function scoped variable while let define block scoped variable.
View Answer
Q2.
इंटरनेट से जुड़ने के लिए निम्न में से क्या आवश्यक है?

Which of the following is required for joining the internet ?
A. Internet architecture board
B. Internet society
C. Internet service provider
D. Different computer
View Answer
Q3.
CSS फ़ाइल में एकाधिक पंक्ति टिप्पणियाँ कैसे सम्मिलित करें?

How to insert multiple line comments in a CSS file ?
A. //statement
B. „statement
C. /* statement */
D. // statement //
View Answer
Q4.
कौन सी CSS Property यह तय करने में मदद करती है कि टेक्स्ट को क्लिप किया जाना चाहिए, कुछ डॉट्स (एलिप्सिस) दिखाएं, या एक कस्टम स्ट्रिंग प्रदर्शित करें?

Which CSS property helps one to decide whether the text should be clipped, show some dots (ellipsis), or display a custom string ?
A. Text-decoration
B. Text-stroke
C. Text-shadow
D. Text-overflow
View Answer
Q5.
निम्न में से किसका उपयोग HTML में एक क्रमित सूची बनाने के लिए किया जाता है?

Which of the following is used to create an ordered list in HTML?
A. <ul>
B. <ol>
C. <pl>
D. <hl>
View Answer
Q6.
HTTP का मतलब __________ है।

HTTP stands for __________.
A. Hyper Text Transfer Protocol
B. Hyper Trasfer Text Protocol
C. Hyper Text Transmission Protocol
D. Hyper Transmission Text Protocol
View Answer
Q7.
नीचे दी गई CSS प्रोपर्टीज में से टेक्स्ट को बोल्ड करने के लिए निम्न में से किसका प्रयोग किया जाता है?

From the below mentioned CSS properties, which of the following is used to make the text bold?
A. Text-align: bold
B. Font-style: bold
C. Font-weight: bold
D. Text-decoration: bold
View Answer
Q8.
निम्न में से कौन सी माउस घटना नहीं है?

Which of the following is not a mouse event ?
A. onclick
B. onmousescroller
C. onmouseover
D. onmousemove
View Answer
Q9.
कौन सा चयनकर्ता एक निश्चित अवस्था के आधार पर तत्वों का चयन करता है?

Which selector selects elements based on a certain state ?
A. Combinator selector
B. Pseudo Class selector
C. Pseudo elements selector
D. Attribute selector
View Answer
Q10.
निम्नलिखित में से कौन सा टेक्स्ट एडिटर नहीं है ?

Which of the following is not a text editor ?
A. Paint
B. Sublime
C. Notepad++
D. Visual Studio Code
View Answer
Q11.
सीएसएस शैली या कोड का उपयोग करके, सभी हाइपरलिंक्स से अंडरलाइन को कैसे हटाया जा सकता है?

By using CSS style or code, how can one remove the underline from all hyperlinks ?
A. a {text-decoration: no-underline;}
B. a {text: no-underline;}
C. a {text-decoration:none;}
D. a {text-style: no-underline;}
View Answer
Q12.
जावास्क्रिप्ट में “Sky is blue” लिखने का सही सिंटैक्स है:

The correct syntax to write “Sky is blue” in JavaScript is :
A. jscript.write(“Sky is blue”)
B. document.write(“Sky is blue”)
C. print(“Sky is blue”)
D. jscript.print(“Sky is blue”)
View Answer
Q13.
निम्नलिखित जावास्क्रिप्ट कोड का आउटपुट क्या होगा?

What will be the output of the following JavaScript code ?

<p id="demo"></p><script>var js = 10; js *= 5; document.getElementById("demo").innerHTML = js;</script>
A. </script>
B. 10
C. 15
D. 50
View Answer
Q14.
एक छवि के चारों ओर गुलाबी बिंदीदार सीमा बनाने के लिए सीएसएस विशेषता का उपयोग करना चाहिए?

CSS attribute(s) should one use to create a pink dotted border around an image?
A. I
B. II
C. III
D. Both II and III
View Answer
Q15.
निम्नलिखित स्थिति में क्या होगा ?

What will happen in the following case ?

h1 {color: red text-decoration: underline; font-style: italic;}
A. color: red, text-decoration: underline and font-style: italic all works
B. text-decoration: underline and font-style: italic works
C. color: red, text-decoration: underline works
D. only font-style: italic works
View Answer
Q16.
निम्नलिखित में से कौन सी मार्कअप भाषाएँ SGML पर आधारित हैं?

Which of the following markup languages are based on SGML ?
A. VHML
B. XML
C. CFML
D. SML
View Answer
Q17.
CSS में स्यूडो क्लास के लिए निम्न में से कौन सा सही है?

Which of the following is true for pseudo class in CSS ?
A. Match A Specified Element
B. Select The Active Links
C. Are Used to Select All the Visited Links
D. Are Used to Define a Special State of An Element
View Answer
Q18.
निम्नलिखित में से कौन सा सही है ?

Which of the following is true ?
A. BR tag is used to have a blank line
B. In tables, the header cell is centered by default and the data cells are right-aligned
C. The <TR> is used to create a data cell
D. INPUT tag must have at least 4 attributes
View Answer
Q19.
निम्नलिखित में से कौन सा/से कथन सत्य है/हैं?

Which of the following statement(s) is/are true ?
A. Only I
B. Only II
C. Both I and II
D. None of the above
View Answer
Q20.
बाहरी स्टाइल शीट को संदर्भित करने के लिए उचित HTML सिंटैक्स क्या है

What is the proper html syntax for referencing an external style sheet
A. <style src="demostyle.css”>
B. <stylesheet>demostyle.css</stylesheet/>
C. <link rel = “stylesheet” type= “text/css” href= “demostyle.css”>
D. None of these
View Answer
Q21.
निम्नलिखित में से कौन सा expressions सत्य है?

Which of the following expressions is true ?
A. { expression }
B. [{ expression }]
C. _expression
D. {{ expression }}
View Answer
Q22.
CSS में छवि पुनरावृत्ति को नियंत्रित करने के लिए सही विकल्प है:

To control image repetition in CSS , the correct option is :
A. h1 { background-loop: none; }
B. h1 { background-repeat: none; }
C. h1 { background-iterate: none; }
D. None of the above
View Answer
Q23.
HTML में सबसे बड़ा शीर्षक डालने के लिए निम्न में से किस टैग का उपयोग किया जाता है?

Which of the following tag is used for inserting the largest heading in HTML ?
A. <h3>
B. <h1>
C. <h6>
D. <h2>
View Answer
Q24.
निम्नलिखित में से किसका प्रयोग एक विशिष्ट नियम को लागू करने के लिए किया जाता है और CSS में इसे कभी भी ओवरराइड नहीं किया जा सकता है

Which of the following is used to apply a specific rule and can never be overridden in CSS ?
A. @important
B. !important!
C. !important
D. important!
View Answer
Q25.
निम्नलिखित में से किस उद्देश्य (ओं) के लिए जावास्क्रिप्ट को डिज़ाइन किया गया है?

For which of the following purpose(s) JavaScript is designed for ?
A. To style HTML Pages
B. To perform server-side scripting operation
C. To execute query related to DB on server
D. To add interactivity to HTML Pages
View Answer