page-banner
WDP M2-R5.1 MCQs SET-11
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 ?

var js = 10; js *= 5; document.getElementById("demo").innerHTML = js;
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