page-banner
WDP M2-R5.1 MCQs SET-14
Q1.
डिलीट हुए टेक्स्ट को दिखाने के लिए किस HTML एलिमेंट का प्रयोग किया जाता है?

To show deleted text, which HTML element is used?
A. <del>
B. <em>
C. <strong>
D. <ins>
View Answer
Q2.
HTML फॉर्म में ड्रॉपडाउन बनाने के लिए किस टैग का उपयोग किया जाता है?

Which tag is used to create a dropdown in HTML Form?
A. <input>
B. <select>
C. <text>
D. <textarea>
View Answer
Q3.
HTML में क्रमांकित सूची बनाने के लिए किस टैग का उपयोग किया जाता है?

Which tag is used to create a numbered list in HTML?
A. <ol>
B. <ul>
C. <li>
D. <ll>
View Answer
Q4.
HTML फॉर्म में चेकबॉक्स कैसे बनाते हैं?

How to create a checkbox in HTML Form?
A. <input type=”text”>
B. <input type=”textarea”>
C. <input type=”checkbox”>
D. <input type=”button”>
View Answer
Q5.
HTML फाइल को सेव करने के लिए निम्न में से किस एक्सटेंशन का उपयोग किया जाता है?

Which of the following extension is used to save an HTML file?
A. .hl
B. .h
C. .htl
D. .html
View Answer
Q6.
HTML में ब्लैंक लाइन बनाने के लिए किस टैग का उपयोग किया जाता है?

Which tag is used to create a blank line in HTML?
A. <b>
B. <br>
C. <em>
D. <a>
View Answer
Q7.
प्लेन टेक्स्ट को इटैलिक फॉर्मेट में बदलने के लिए किस HTML टैग का प्रयोग किया जाता है?

Which HTML tag is used to convert the plain text into italic format?
A. <b>
B. <p>
C. <i>
D. <a>
View Answer
Q8.
HTML में <hr/> टैग का क्या उपयोग है?

What is the use of <hr/> tag in HTML?
A. For making content appearance italics
B. To create vertical rule between sections
C. To create a line break
D. To create horizontal rule between sections
View Answer
Q9.
<iframe> के अंतर्गत कौन-सा एट्रिब्यूट आवश्यक नहीं है?

Which attribute is not essential under <iframe>?
A. frame border
B. width
C. height
D. src
View Answer
Q10.
HTML में टेक्स्ट को रेखांकित करने के लिए किस टैग का उपयोग किया जाता है?

Which tag is used to underline the text in HTML?
A. <p>
B. <u>
C. <i>
D. <ul>
View Answer
Q11.
कौन सी विशेषता एक तत्व के साथ जुड़े होने के लिए एक अद्वितीय अल्फ़ान्यूमेरिक पहचानकर्ता निर्दिष्ट करती है?

Which attribute specifies a unique alphanumeric identifier to be associated with an element?
A. type
B. article
C. id
D. class
View Answer
Q12.
YouTube वीडियो के लिए किस HTML तत्व का उपयोग किया जाता है?

Which HTML element is used for YouTube videos?
A. <samp>
B. <small>
C. <frame>
D. <iframe>
View Answer
Q13.
जावास्क्रिप्ट में डेटा प्रदर्शित करने के लिए, हम __________ का उपयोग नहीं कर सकते है

For displaying data in JavaScript, we can’t use ____________
A. document.write()
B. console.log()
C. innerHTML
D. document.getElementById()
View Answer
Q14.
टेस्टिंग के लिए हमें ________ का प्रयोग करना चाहिए

For testing we should use ________
A. document.write()
B. console.log()
C. window.alert()
D. innerHTML
View Answer
Q15.
निम्नलिखित में से कौन सा कीवर्ड जावास्क्रिप्ट के निष्पादन को रोकता है?

Which of the following keyword stops the execution of JavaScript?
A. break
B. return
C. debugger
D. try….catch
View Answer
Q16.
जावास्क्रिप्ट नंबरों को ______________ के रूप में संग्रहित किया जाता है

JavaScript numbers are stored as ______________
A. integers
B. double precision floating point
C. double
D. floating point
View Answer
Q17.
वेरिएबल को संख्या में बदलने के लिए किस विधि का प्रयोग नहीं किया जाता है ?

Which method is not used for converting variables to number?
A. parseInt ()
B. Number()
C. parseFloat()
D. valueOf()
View Answer
Q18.
HTML में, टैग __________ होते हैं।

In HTML, the tags are __________.
A. in upper case
B. case-sensitive
C. in lowercase
D. not case sensitive
View Answer
Q19.
HTML5 में डॉक्यूमेंट टाइप को इनिशियलाइज़ करने के लिए किस टैग का उपयोग किया जाता है?

Which tag is used in HTML5 for the initialization of the document type?
A. <Doctype HTML>
B. <! DOCTYPE html>
C. <Doctype>
D. <\Doctype html>
View Answer
Q20.
वह सही तरीका क्या है जिससे हम एक ऑर्डर की गई सूची को शुरू कर सकते हैं जिसकी संख्या 5 है?

What is the correct way in which we can start an ordered list that has the numeric value count of 5?
A. <ol type = “1” start = “5”>
B. <ol type = “1” num = “5”>
C. <ol type = “1” begin = “5”>
D. <ol type = “1” initial = “5”>
View Answer