01. सीएसएस क्या है?
01. What is CSS?
01. What is CSS?
02. HTML पेज में CSS एम्बेड करने के लिए निम्न में से किस टैग का उपयोग किया जाता है?
02. Which of the following tag is used to embed CSS in HTML page?
02. Which of the following tag is used to embed CSS in HTML page?
03. निम्नलिखित में से कौन सा CSS सिलेक्टर तत्वों के समूह को निर्दिष्ट करने के लिए उपयोग किया जाता है?
03. Which of the following CSS selectors are used to specify a group of elements?
03. Which of the following CSS selectors are used to specify a group of elements?
04. निम्नलिखित में से किसने टेक्स्ट, लिस्ट, बॉक्स, मार्जिन, बॉर्डर, कलर और बैकग्राउंड प्रॉपर्टीज को प्रस्तुत किया है?
04. Which of the following has introduced text, list, box, margin, border, color, and background properties?
04. Which of the following has introduced text, list, box, margin, border, color, and background properties?
05. आंतरिक स्टाइल शीट को परिभाषित करने के लिए निम्न में से किस प्रकार के HTML टैग का उपयोग किया जाता है?
05. Which of the following type of HTML tag is used to define an internal style sheet?
05. Which of the following type of HTML tag is used to define an internal style sheet?
06. टेक्स्ट को बोल्ड करने के लिए निम्नलिखित में से कौन सी CSS प्रॉपर्टी का उपयोग किया जाता है?
06. Which of the following CSS property is used to make the text bold?
06. Which of the following CSS property is used to make the text bold?
07. निम्नलिखित में से किस CSS सिलेक्टर का उपयोग किसी विशेष विशिष्ट तत्व को बाइंड करने के लिए किया जाता है?
07. Which of the following CSS selector is used to specify a rule to bind a particular unique element?
07. Which of the following CSS selector is used to specify a rule to bind a particular unique element?
Explanation- For binding a particular unique element, id selectors are used. While for a group of elements, class selector can be used.
--- Answer is-----> D) id
08. निम्नलिखित CSS कोड स्निपेट का आउटपुट क्या होगा?
08. What will be the output of following CSS code snippet?
h1 {color: "green";}08. What will be the output of following CSS code snippet?
Explanation-Output of the above code snippet won’t happen as the declaration syntax is wrong. The correct declaration is : h1 { color: green; }
--- Answer is-----> A) Nothings happen
09. निम्नलिखित में से कौन सी CSS स्टाइल प्रॉपर्टी का उपयोग इटैलिक टेक्स्ट को निर्दिष्ट करने के लिए किया जाता है?
09. Which of the following CSS style property is used to specify an italic text?
09. Which of the following CSS style property is used to specify an italic text?
Explanation-font-style property is used to specify an italic text. font-style property has three values (normal, italic & oblique).
--- Answer is-----> D) font-style
10. निम्नलिखित CSS कोड स्निपेट का आउटपुट क्या होगा?
10. What will be the output of following CSS code snippet?
10. What will be the output of following CSS code snippet?
h1{color: red text-decoration: underline; font-style: italic;}
11. HTML फाइल में बाहरी स्टाइल शीट को लिंक करने के लिए निम्नलिखित में से कौन सा सिंटैक्स सही है?
11. Which of the following is the correct syntax to link an external style sheet in the HTML file?
11. Which of the following is the correct syntax to link an external style sheet in the HTML file?
12. वेबकिट के लिए निम्नलिखित में से कौन सी सीएसएस एक्सटेंशन उपसर्ग हैं?
12. Which of the following are the CSS Extension Prefixes for Webkit?
a) -chrome
b) -web
c) -o-
d) –webkit
Ans :- (d) –webkit
13. HTML फ़ाइल में बाहरी स्टाइल शीट को लिंक करने के लिए निम्नलिखित में से कौन सा सही सिंटैक्स है?
13. Which of the following is the correct syntax to link an external style sheet in the HTML file?
a) <link rel=”stylesheet” href=”style.css” />
b) <link rel=”stylesheet” src=”style.css” />
c) <style rel=”stylesheet” src=”style.css” />
d) <style rel=”stylesheet” link=”style.css” />
Ans :- (a) <link rel=”stylesheet” href=”style.css” />
14. निम्नलिखित में से कौन सा आधिकारिक W3C अनुशंसा बनने वाला पहला CSS विनिर्देश है?
14. Which of the following is the first CSS specification to become an official W3C Recommendation?
a) CSS level 2
b) (X)HTML CSS
c) CSS level 1
d) CSS level 2.1
Ans :- (c) CSS level 1
15. निम्नलिखित में से कौन सा फ़ंक्शन एक रैखिक ग्रेडिएंट को CSS छवि के रूप में परिभाषित करता है?
15. Which of the following function defines a linear gradient as a CSS image?
a) gradient ( )
b) linear-gradient( )
c) grayscale( )
d) image( )
Ans :- (b) linear-gradient( )
16. निम्नलिखित में से किस सीएसएस संपत्ति का उपयोग छवि को बॉर्डर शैली के बजाय बॉर्डर के रूप में सेट करने के लिए किया जा सकता है?
16. Which of the following CSS property can be used to set the image as a border instead of the border style?
a) background-image-source
b) background-image
c) border-image-source
d) border-image
Ans :- (c) border-image-source
17. निम्नलिखित में से कौन सी सीएसएस संपत्ति एक ही घोषणा में किसी तत्व की सीमा के सभी चार पक्षों के विभिन्न गुणों को परिभाषित करती है?
17. Which of the following CSS property defines the different properties of all four sides of an element’s border in a single declaration?
a) border-collapse
b) border-width
c) padding
d) border
Ans :- (b) border-width
18. सीएसएस शैलियाँ लागू करने का सही तरीका निम्नलिखित में से कौन सा है?
18. Which of the following is the correct way to apply CSS Styles?
a) in an external CSS file
b) inside an HTML element
c) inside the <head> section of an HTML page
d) all of the mentioned
Ans :- (d) all of the mentioned
19. निम्नलिखित में से कौन सी सीएसएस संपत्ति टेक्स्ट का फ़ॉन्ट आकार निर्धारित करती है?
19. Which of the following CSS property sets the font size of text?
a) font-size
b) text-size
c) text
d) size
Ans :- (a) font-size
20. निम्नलिखित में से कौन सी सीएसएस बॉक्स मॉडल की संपत्ति नहीं है?
20. Which of the following is not the property of the CSS box model?
a) margin
b) color
c) width
d) height
Ans :- b) color
21. निम्नलिखित में से कौन सी सीएसएस संपत्ति यह निर्धारित करती है कि किसी तत्व में किस प्रकार की लाइन सजावट जोड़ी जाती है, जैसे अंडरलाइन, ओवर लाइन आदि?
21. Which of the following CSS property sets what kind of line decorations are added to an element, such as underlines, over lines, etc. ?
a) text-decoration
b) text-style
c) text-decoration-line
d) text-line
Ans :- (c) text-decoration-line
22. निम्नलिखित में से कौन सी सीएसएस संपत्ति किसी रूपरेखा के स्वरूप और डिज़ाइन को निर्दिष्ट करती है?
22. Which of the following CSS property specifies the look and design of an outline?
a) outline-style
b) outline-format
c) outline-font
d) none of the mentioned
Ans :- (a) outline-style
23. निम्नलिखित सीएसएस कोड स्निपेट का आउटपुट क्या होगा?
23. What will be the output of the following CSS code snippet?
span {
border: 1px solid red;
outline: green dotted thick;
}
a) All span elements will have a green thick border and a red outline
b) All span elements will have a red border and a green dotted outline
c) All span elements will have a outer green dotted border and an inner red border
d) All span elements will have an outer red border and inner green dotted border
Ans :- (c) All span elements will have a outer green dotted border and an inner red border
24. निम्नलिखित में से कौन सी सीएसएस संपत्ति एक बॉक्स तत्व के लिए छाया निर्धारित करती है?
24. Which of the following CSS property sets the shadow for a box element?
a) set-shadow
b) box-shadow
c) shadow
d) canvas-shadow
Ans :- (b) box-shadow
25. निम्नलिखित में से किस CSS प्रॉपर्टी का उपयोग टेक्स्ट का रंग सेट करने के लिए किया जाता है?
25. Which of the following CSS property is used to set the color of the text?
a) text-decoration
b) pallet
c) colour
d) color
Ans :- (d) color
26. निम्नलिखित में से कौन सी सीएसएस संपत्ति किसी तत्व की स्थिति को नियंत्रित करती है?
26. Which of the following CSS Property controls how an element is positioned?
a) static
b) position
c) fix
d) set
Ans :- (b) position
27. निम्नलिखित में से कौन सा सीएसएस चयनकर्ता चेक किए गए तत्वों का चयन करता है?
27. Which of the following CSS selector selects the elements that are checked?
a) :checked
b) E ~ F
c) ::after
d) none of the mentioned
Ans :- (a) :checked
28. अतिप्रवाह तत्व के लिए निम्नलिखित में से कौन सा उचित मान है?
28. Which of the following is an appropriate value for the overflow element?
a) scroll
b) hidden
c) auto
d) all of the mentioned
Ans :- (d) all of the mentioned
29. CSS में टेबल बॉर्डर निर्दिष्ट करने के लिए निम्नलिखित में से किस CSS प्रॉपर्टी का उपयोग किया जाता है?
29. Which of the following CSS property is used to specify table borders in CSS?
a) table:border
b) table
c) border
d) none of the mentioned
Ans :- (c) border
30. किसी तालिका में टेक्स्ट को संरेखित करने के लिए निम्नलिखित में से किस गुण का उपयोग किया जाता है?
30. Which of the following property is used to align the text in a table?
a) text-align
b) align
c) text
d) none of the mentioned
Ans :- (a) text-align
0 Comments