O Level Web Design Paper January 2022
“w3-border-0” is a border property for w3.css, which of the following is true ?
"w3-बॉर्डर-0" w3.css के लिए एक बॉर्डर प्रॉपर्टी है, निम्नलिखित में से कौन सा सत्य है?
The w3-border-0 class in w3.css removes all borders from an element. When this class is applied, it eliminates any borders around the element entirely.
Explanation of the other options:
- (A) "It has rounded borders": This is incorrect because w3-border-0 removes borders, it does not round them.
- (C) "removes rounded borders only": This is also incorrect because w3-border-0 removes all borders, whether they are rounded or not.
- (D) "None of these": Since (B) is correct, this option is not the right choice.
- W3.CSS में
w3-border-0क्लास का उपयोग किसी तत्व से सभी पहले से मौजूद बॉर्डर को हटाने के लिए किया जाता है
Correct Answer: B) removes all borders
निम्नलिखित में से किसका उपयोग HTML पेज को पढ़ने और उसे रेंडर करने के लिए किया जाता है?
Which of the following is used to read a HTML page and render it ?
वेब ब्राउज़र (जैसे Chrome, Firefox) का मुख्य कार्य HTML कोड को पढ़ना और उसे एक दृश्य वेब पेज के रूप में 'रेंडर' (Render) करना है
Correct Answer: A) Web browser
DNS __________ का अनुवाद करता है।
DNS translates __________.
-
-
DNS (Domain Name System) मुख्य रूप से डोमेन नेम को IP एड्रेस में बदलता है, लेकिन यह 'Reverse DNS' के माध्यम से IP को डोमेन नेम में भी बदल सकता है।
-
Correct Answer: C) both (A) & (B)
एक बार ईमेल भेजे जाने के बाद, संदेश टुकड़ों में टूट जाता है जिसे __________ कहा जाता है।
Once the email is sent, the message is broken into pieces called __________.
इंटरनेट पर डेटा (जैसे ईमेल) छोटे-छोटे टुकड़ों में यात्रा करता है जिन्हें 'नेटवर्क पैकेट्स' कहा जाता है।
Correct Answer: A) Packets
__________ विशेषता प्रत्येक सेल के भीतर स्थान जोड़ती है।
The __________ attribute adds space within each cell.
CellPadding सेल की सीमा (Border) और उसके अंदर की सामग्री के बीच की दूरी को नियंत्रित करता है। CellSpacing दो सेल के बीच की दूरी तय करता है
Correct Answer: B) Cell Padding
बाहरी स्टाइल शीट को संदर्भित करने के लिए सही HTML क्या है?
What is the correct HTML for referring to an external style sheet ?
बाहरी CSS फाइल को जोड़ने के लिए टैग का ही उपयोग किया जाता है
Correct Answer: A) <link rel=”stylesheet” type=”text/css” href=”mystyle.css”>
HTML दस्तावेज़ में बाह्य स्टाइल शीट को संदर्भित करने का सही स्थान कौन सा है?
Where in an HTML document is the correct place to refer to an external style sheet ?
बाहरी स्टाइल शीट को लिंक करने का सबसे सही और मानक स्थान HTML डॉक्यूमेंट का सेक्शन है।
Correct Answer: B) In the<head> section
"xxx.js" नामक बाह्य स्क्रिप्ट को संदर्भित करने के लिए सही सिंटैक्स क्या है?
What is the correct syntax for referring to an external script called "xxx.js" ?
The correct syntax for referring to an external JavaScript file is:
So, the correct answer is:
(B) .
बाहरी जावास्क्रिप्ट फाइल को जोड़ने के लिए src (Source) एट्रिब्यूट का उपयोग किया जाता है।
Correct Answer: B) <script src=”xxx.js”>
निम्नलिखित में से कौन Angular Js में एक फ़िल्टर है?
Which of the following is a filter in Angular Js ?
Angular JS में currency, date, uppercase, और lowercase सभी अंतर्निर्मित (built-in) फिल्टर्स हैं।
Correct Answer: D) All of the above