🚀 Hurry! Offer Ends In
00 Days
00 Hours
00 Mins
00 Secs
Enroll Now
X

O Level Web Design Paper January 2026

Question: 3 Report Error

Bootstrap जैसे frameworks की तुलना में W3.CSS की मुख्य विशेषता क्या है?

What is a primary characteristic of W3.CSS compared to other frameworks like Bootstrap?

A)
B)
C)
D)

Question: 7 Report Error

निम्न CSS का प्रभाव क्या होगा?

What will be the effect of the following CSS?

div[class^="box-"] {
    background-color: yellow;
}
A)
B)
C)
D)
Explanation

The selector div[class^="box-"] is a CSS Attribute Selector. Here is the breakdown of how it works:

  • div: This part targets only

    elements.

  • [class...]: This looks for the class attribute within those elements.

  • ^=: This is the "starts with" operator. It tells the browser to match elements whose attribute value begins with the specified string.

  • "box-": This is the specific string it is looking for.

Other Selector Symbols

For your exams, it is helpful to remember these three common attribute matchers:

  • ^= (Starts with): div[class^="box-"] matches

    .

  • $= (Ends with): div[class$="-box"] matches

    .

  • *= (Contains): div[class*="box"] matches

    .

Correct Answer: B) Only divs with class starting with "box-" will have yellow background


Question: 10 Report Error
Question: 17 Report Error

निम्न CSS snippet को <span> element पर apply करने पर output क्या होगा

What is the output of the following CSS snippet applied to a <span> element

span {
  border: 1px solid red;
  outline: green dotted thick;
}
A)
B)
C)
D)

Question: 23 Report Error

सर्वर साइड स्क्रिप्ट्स हैं

The server-side scripts are

A)
B)
C)
D)

Question: 40 Report Error

Google, Yahoo, और Ask.com के उदाहरण हैं

Google, Yahoo, and Ask.com are examples of

A)
B)
C)
D)

Question: 46 Report Error

NaN का पूरा नाम क्या है

What does NaN stand for

A)
B)
C)
D)

Question: 49 Report Error

JavaScript को किसने और कब विकसित किया

Who invented JavaScript and when

A)
B)
C)
D)

Question: 55 Report Error

HTML में <div> tag का मुख्य उद्देश्य क्या है

What is the primary purpose of the <div> tag in HTML

A)
B)
C)
D)

Question: 62 Report Error

W3.CSS में 'w3-panel' क्लास का मुख्य प्रभाव क्या है

What is the primary effect of using the 'w3-panel' class in W3.CSS

A)
B)
C)
D)

Question: 64 Report Error

वेब डेवलपमेंट में DOM का क्या मतलब है

What does DOM stand for in web development

A)
B)
C)
D)

Question: 67 Report Error

नीचे दिए गए कोड में कौन सा कोड सबसे अधिक प्रभावी है

Which of the following code is most efficient

Code 1:
for(var number=10; number>=1; number--) {
  document.write(number);
}

Code 2:
var number=10;
while(number>=1) {
  document.write(number);
  number--;
}
A)
B)
C)
D)

Question: 71 Report Error
Question: 73 Report Error

Definition List क्या है

What is a Definition List

A)
B)
C)
D)

Question: 74 Report Error

Which was the first website

पहली वेबसाइट कौन-सी थी

A)
B)
C)
D)

Question: 76 Report Error

AngularJS के लिए कौन-सा कथन सही है

Which of the following statement is true for AngularJS

A)
B)
C)
D)

Question: 77 Report Error

CSS के जनक कौन हैं

Who is the Father of CSS

A)
B)
C)
D)

Question: 78 Report Error

HTML का <iframe> टैग किसे दर्शाता है

The HTML <iframe> tag specifies

A)
B)
C)
D)

Question: 83 Report Error

Angular में Two-way Data Binding क्या है

What is two-way data binding in Angular

A)
B)
C)
D)

Question: 91 Report Error

फोटो एडिटर में 'Brightness' और 'Contrast' को एडजस्ट करने का मुख्य उद्देश्य क्या है

What is the main purpose of adjusting 'Brightness' and 'Contrast' in a photo editor

A)
B)
C)
D)

Related Papers



















































Latest Updates