O Level Web Design Paper July 2021
मार्कअप टैग वेब ब्राउज़र को __________ बताते हैं।
Markup tags tell the web browser __________.
ब्राउज़र टैग्स को सीधे नहीं दिखाता, बल्कि यह देखता है कि उन टैग्स के अनुसार कंटेंट को कैसे स्क्रीन पर प्रस्तुत (render) करना है।
Correct Answer: B) How to display the page
टेक्स्ट बॉक्स नियंत्रण की __________ विशेषता अधिकतम वर्ण को सीमित करने की अनुमति देती है।
__________ attribute of text box control allow to limit the maximum character.
में maxlength एट्रिब्यूट यह तय करता है कि उपयोगकर्ता अधिकतम कितने अक्षर टाइप कर सकता है
Correct Answer: C) maxlength
वेब पेज __________ टैग से शुरू होते हैं।
Web pages start with __________ tag.
-
-
एक मानक वेब पेज हमेशा टैग से शुरू होता है और पर समाप्त होता है।
-
Correct Answer: C) <HTML>
वह विशेषता, जो वर्तमान दस्तावेज़ और HREF'ed URL के बीच संबंध को परिभाषित करती है:
The attribute, which define the relationship between current document and HREF'ed URL is :
rel (Relationship) एट्रिब्यूट यह बताता है कि लिंक किया गया दस्तावेज़ वर्तमान पेज से कैसे संबंधित है (जैसे: rel="stylesheet")।
Correct Answer: A) REL
तालिका सेल के अंदर सामग्री को बाईं ओर संरेखित करने के लिए सही HTML है:
Correct HTML to left align the content inside a table cell is :
टेबल सेल के अंदर सामग्री को बाईं ओर करने के लिए align एट्रिब्यूट का उपयोग किया जाता है।
Correct Answer: C) <td align=”left”>
मेटा टैग ___________ में दिखाई देता है।
Meta tag appear in ___________.
मेटा टैग्स (जो कीवर्ड और डिस्क्रिप्शन की जानकारी देते हैं) हमेशा सेक्शन के अंदर रखे जाते हैं।
Correct Answer: A) <HEAD>
<INPUT> एक __________ है.
<INPUT> is a __________.
एक एम्प्टी टैग है क्योंकि इसे बंद करने के लिए अलग से की आवश्यकता नहीं होती
Correct Answer: B) empty tag
मानचित्र परिभाषा फ़ाइल सामान्यतः यहाँ संग्रहित होती है:
The map definition file is generally stored in :
पुराने वेब सर्वर सिस्टम में इमेज मैप और स्क्रिप्ट फाइलों को अक्सर cgi-bin डायरेक्टरी में रखा जाता था।
Correct Answer: A) CGI-BIN
<TEXT AREA> टैग के अंदर का पाठ इस प्रकार काम करता है:
the text inside the <TEXT AREA > tag works like :
-
-
के अंदर का टेक्स्ट व्हाइटस्पेस और लाइन ब्रेक को उसी तरह सुरक्षित रखता है जैसेटैग।
-
Correct Answer: C) <PRE> formatted text<PRE>
CSS बॉर्डर गुणों में border-style शामिल नहीं है।
The CSS border properties do not include border-style.
The CSS border properties include border-style, along with other properties like border-width and border-color.
Correct Answer: B) FALSE
"none" मान पृष्ठ से तत्व को पूरी तरह हटा देता है।
The "none" value totally removes the element from the page.
The "none" value totally removes the element from the page. It will not take any space.
Correct Answer: A) TRUE
List-Item तत्व को <li> तत्व की तरह व्यवहार करने में सक्षम बनाता है।
List-Item makes the element behave like a <li> element.
The display property has many values:
| Value | Description |
|---|---|
| inline | Displays an element as an inline element |
| block | Displays an element as a block element |
| contents | Makes the container disappear, making the child elements children of the element the next level up in the DOM |
| flex | Displays an element as a block-level flex container |
| grid | Displays an element as a block-level grid container |
| inline-block | Displays an element as an inline-level block container. The element itself is formatted as an inline element, but you can apply height and width values |
| inline-flex | Displays an element as an inline-level flex container |
| inline-grid | Displays an element as an inline-level grid container |
| inline-table | The element is displayed as an inline-level table |
| list-item | Let the element behave like a <li> element |
| run-in | Displays an element as either block or inline, depending on context |
| table | Let the element behave like a <table> element |
| table-caption | Let the element behave like a <caption> element |
| table-column-group | Let the element behave like a <colgroup> element |
| table-header-group | Let the element behave like a <thead> element |
| table-footer-group | Let the element behave like a <tfoot> element |
| table-row-group | Let the element behave like a <tbody> element |
| table-cell | Let the element behave like a <td> element |
| table-column | Let the element behave like a <col> element |
| table-row | Let the element behave like a <tr> element |
| none | The element is completely removed |
| initial | Sets this property to its default value |
| inherit | Inherits this property from its parent element |
Correct Answer: A) TRUE
सीएसएस फ्लोट प्रॉपर्टी एक पोजिशनिंग प्रॉपर्टी नहीं है।
The CSS float property is not a positioning property.
Correct Answer: B) FALSE