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

O Level Web Design Paper January 2021

Question: 1 Report Error

__ टैग का उपयोग पैराग्राफ की शुरुआत को चिह्नित करने के लिए किया जाता है।

__ tags is used to mark a beginning of paragraph.

A)
B)
C)
D)
Explanation

tags are used to mark the beginning (and end) of a paragraph in HTML.

Example:

<p>This is a paragraph of text.p>

This

tag is used to enclose and define paragraphs in HTML documents. It automatically creates space before and after the paragraph, helping to structure content in a readable way.

टैग का उपयोग एक नया पैराग्राफ शुरू करने के लिए किया जाता है।
केवल लाइन ब्रेक देता है, और / टेबल के लिए होते हैं।

Correct Answer: C) <P>


Question: 2 Report Error

सबसे बड़े शीर्षक के लिए सही HTML टैग है:

Correct HTML tag for the largest heading is:

A)
B)
C)
D)
Explanation

HTML में छह स्तर के शीर्षक होते हैं, जिसमें

सबसे बड़ा और
सबसे छोटा होता है।

Correct Answer: D) <h1>


Question: 3 Report Error

निम्नलिखित में से कौन सा एक कंटेनर है?

Which of the following is a container?

A)
B)
C)
D)
Explanation

A container is typically an element that holds or wraps other elements. Some common HTML containers are:

  • : A generic container often used to group content or apply styles to sections of a webpage.
  • : A container used for grouping content into sections.
  • : A container used for grouping content that can stand alone, like blog posts or news articles.
  • and
    : Containers used for grouping header or footer content.
  • कंटेनर टैग वे होते हैं जिन्हें खोलने () और बंद करने () दोनों की आवश्यकता होती है। एक एम्प्टी (Empty) टैग है।

Correct Answer: D) Both (A) and (B)


Question: 4 Report Error

वह विशेषता, जो वर्तमान दस्तावेज़ और HREF'ed URL के बीच संबंध को परिभाषित करती है:

The attribute, which define the relation-ship between current document and HREF’ed URL is :

A)
B)
C)
D)

<DT> को हमारे वेब पेज की एक पंक्ति में फिट करने के लिए डिज़ाइन किया गया है लेकिन <DD> इसे स्वीकार करेगा:

<DT> is designed to fit a single line of our web page but <DD> will accept a :

A)
B)
C)
D)
Explanation

The correct answer is (B) full paragraph. The 

 tag is designed to fit a single line of text, while the 
tag can accept a full paragraph.

डिक्शनरी लिस्ट (

) में,
(Definition Term) एक शब्द के लिए होता है और
(Definition Description) उस शब्द की विस्तृत व्याख्या या पैराग्राफ के लिए होता है।

Correct Answer: B) full paragraph


Question: 6 Report Error

कैरेक्टर एन्कोडिंग है:

Character encoding is :

A)
B)
C)
D)
Explanation

कैरेक्टर एन्कोडिंग एक ऐसी प्रणाली है जो अक्षरों (characters) को विशिष्ट कोड या नंबरों की श्रृंखला (जैसे ASCII या UTF-8) में बदलती है ताकि डेटा को सही ढंग से स्टोर और ट्रांसमिट किया जा सके।

Correct Answer: C) a system that consists of a code which pairs each character with a pattern, sequence of natural numbers or electrical pulse in order to transmit the data


Question: 7 Report Error

HTML का फुल फॉर्म क्या है?

What is the full form of HTML?

A)
B)
C)
D)
Explanation

HTML stands for Hypertext Markup Language, which is the standard language used to create and design documents on the World Wide Web. HTML uses tags to structure content on the web, such as headings, paragraphs, links, images, and other elements.

    • HTML का पूर्ण रूप 'HyperText Markup Language' है, जिसका उपयोग वेब पेज बनाने के लिए किया जाता है।

Correct Answer: B) Hyper text markup language


Question: 8 Report Error

आधार यूआरएल स्थापित करने का एक बेहतर तरीका इसका उपयोग करना है:

A much better approach to establish the base URL is to use :

A)
B)
C)
D)
Explanation

In HTML, the element is used to specify a base URL for all relative URLs in a document. When you set a tag, all relative links (e.g., images, stylesheets, links) will be resolved relative to the specified base URL. This is particularly useful when you want to avoid hardcoding URLs in multiple places.

Example of using the element:

 
<base href="https://www.examjila.com/"> <a href="/old-paper.html">Link to Page 1a> <a href="/online-test.html">Link to Page 2a>

In this example, both links will be resolved as:

  • https://www.examjila.com/online-test.html
  • https://www.example.com/old-paper.html

Without the element, the links would be resolved relative to the current page’s location.

टैग का उपयोग डॉक्यूमेंट के सभी रिलेटिव URL के लिए एक 'आधार' URL सेट करने के लिए किया जाता है।

Correct Answer: A) BASE element


ग्राफ़िक का कोई भी भाग जो किसी अन्य हॉट ज़ोन में शामिल नहीं है, उसे इसका हिस्सा माना जाता है:

Any part of the graphic that is not included in another hot zone is considered to be part of :

A)
B)
C)
D)
Explanation

If a region of an image does not fall within any defined hot zone, it is considered part of the "default" region, which typically has a default action.

    • इमेज मैप्स (Image Maps) में, यदि ग्राफिक का कोई हिस्सा किसी विशिष्ट 'हॉट ज़ोन' (Shape) में नहीं आता है, तो वह 'default' क्षेत्र का हिस्सा माना जाता है।

Correct Answer: C) default


Question: 11 Report Error

CSS का मतलब कैस्केडिंग स्टाइल शीट्स है।

CSS stands for Cascading Style Sheets.

A)
B)
Explanation

CSS stands for Cascading Style Sheets, and it is used to control the styling and layout of web pages. With CSS, you can style HTML elements in various ways, such as changing colors, fonts, sizes, and positioning.

The term "Cascading" refers to how styles are applied at different levels (e.g., inline, internal, or external styles), and if multiple styles apply to the same element, the "cascading" rules determine which style will take precedence.

Correct Answer: A) True


Question: 12 Report Error

CSS का उपयोग किसी भी प्रकार के XML दस्तावेज़ों के साथ भी किया जा सकता है।

CSS can also be used with any kind of XML documents.

A)
B)
Explanation

Yes, CSS (Cascading Style Sheets) can be used to style XML (Extensible Markup Language) documents, although there are some differences in how CSS is applied to XML compared to HTML.

Here’s a breakdown:

Basic Concept:

  • HTML: CSS is applied to HTML elements to define their appearance, such as colors, layout, and fonts.
  • XML: CSS can be used to style XML elements as well, but XML is not inherently designed for presentation, so it’s usually styled for a specific purpose, such as transforming XML data for display in a browser.

Correct Answer: A) True


Question: 13 Report Error

CSS नियम सेट में एक चयनकर्ता और एक घोषणा ब्लॉक होता है।

A CSS rule set contains a selector and a declaration block.

A)
B)
Explanation

Yes, that's correct! A CSS rule set consists of two main parts: the selector and the declaration block.

Here’s a detailed breakdown:

1. Selector:

The selector targets the HTML elements that you want to style. It can be any valid CSS selector, such as:

  • Element selectors (e.g., p, div, h1),
  • Class selectors (e.g., .class-name),
  • ID selectors (e.g., #id-name),
  • Attribute selectors (e.g., [type="text"]),
  • Pseudo-classes (e.g., :hover, :first-child),
  • Pseudo-elements (e.g., ::after, ::before).

    2. Declaration Block:

    The declaration block contains one or more declarations that define the style rules for the selected elements. Each declaration is a property-value pair, and each declaration is separated by a semicolon.

Correct Answer: A) True


Question: 14 Report Error

सीएसएस एलिमेंट चयनकर्ता सीएसएस में चयनकर्ताओं के प्रकार हैं।

CSS Element Selector is types of selectors in CSS.

A)
B)
Explanation

Yes, the element selector is one of the fundamental types of selectors in CSS. It allows you to target HTML elements by their tag name and apply styles to all instances of that element in the document.

What is an Element Selector?

An element selector targets all elements of a specific type or tag in an HTML document. It is the most basic form of CSS selector and is used to style all occurrences of a particular HTML element.

Syntax:

element { property: value; }
  • element: The HTML element you want to style (e.g., p, h1, div, a).
  • property: The CSS property you want to apply (e.g., color, font-size, margin).
  • value: The value for the property (e.g., red, 16px, 20px).

Example:

p { color: blue; font-size: 18px; }

In this example:

  • The element selector p selects all <p> (paragraph) elements in the document.
  • The declaration block { color: blue; font-size: 18px; } defines the styles applied to those elements, making the text color blue and the font size 18px.

How It Works:

  • All <p> elements in the HTML document will inherit the specified styles.
  • Similarly, you can use any HTML tag as an element selector to target all instances of that tag.

Correct Answer: A) True


Question: 15 Report Error

यूनिवर्सल चयनकर्ता का उपयोग कभी भी वाइल्डकार्ड वर्ण के रूप में नहीं किया जाता है।

The universal selector is never used as a wildcard character.

A)
B)
Explanation

The universal selector (*) in CSS is used as a wildcard character. It targets all elements in the HTML document, applying the specified styles universally to every element on the page.

For example:

* { margin: 0; padding: 0; }

This rule applies the margin: 0 and padding: 0 styles to every element on the page, making the universal selector function as a wildcard that selects everything.

So, the statement "The universal selector is never used as a wildcard character" is false. The universal selector is, in fact, a wildcard in CSS.

Correct Answer: B) False


Question: 16 Report Error

Grouping selector का उपयोग विभिन्न शैली परिभाषाओं वाले सभी तत्वों का चयन करने के लिए किया जाता है।

The grouping selector is used to select all the elements with the different style definitions.

A)
B)
Explanation

The grouping selector is used to apply the same style to multiple elements, not different styles. You group selectors together by separating them with commas to apply a single set of style definitions to all of them.

For example:

 
h1, h2, p { color: blue; font-size: 16px; }

Here, h1, h2, and p elements will all have the same styles (blue color and 16px font size), not different ones.

So, the correct interpretation is:

  • The grouping selector applies the same style definitions to multiple elements, not different ones.

Correct Answer: B) False


Question: 17 Report Error

Id selector किसी विशिष्ट तत्व का चयन करने के लिए HTML तत्व की आईडी विशेषता का चयन करता है।

Id selector selects the id attribute of an HTML element to select a specific element.

A)
B)
Explanation
  • The ID selector in CSS is used to select a specific HTML element that has a particular id attribute value.
  • In CSS, the ID selector is represented by a hash symbol (#) followed by the id value.

Correct Answer: A) True


Question: 18 Report Error

इनलाइन सीएसएस का उपयोग कई लाइनों या तत्वों पर सीएसएस लागू करने के लिए किया जाता है।

Inline CSS is used to apply CSS on multiple lines or elements.

A)
B)
Explanation

Inline CSS refers to applying CSS styles directly within an HTML element using the style attribute. It applies styles to individual elements, not multiple elements. You can only apply inline styles to a single element at a time, and it is typically done on a single line (although you can technically write multiline code in the style attribute).

Correct Answer: B) False


Question: 19 Report Error

आंतरिक स्टाइल शीट का उपयोग एक से अधिक दस्तावेज़ के लिए कई शैलियों को जोड़ने के लिए किया जाता है।

The internal style sheet is used to add multiple styles for more than one document.

A)
B)
Explanation

The statement: "The internal style sheet is used to add multiple styles for more than one document." is False.

An internal style sheet is used to define CSS rules within a single HTML document, not for multiple documents. It is placed inside the <style> tag, usually within the <head> section of an HTML page.

Correct Answer: B) False


Question: 20 Report Error

बाहरी स्टाइल शीट केवल एक फ़ाइल को बदलकर पूरी वेब साइट का स्वरूप बदलने की सुविधा प्रदान करती है।

The external style sheet facilitates one to change the look of the entire web site by changing just one file.

A)
B)
Explanation

The statement: "The external style sheet facilitates one to change the look of the entire website by changing just one file." is True.

Explanation:

An external style sheet is a separate .css file that contains all the CSS rules for styling a website. This .css file is linked to multiple HTML documents across the website. By using an external style sheet, you can manage and update the styling of the entire website by modifying just one file (the CSS file), rather than updating individual styles in each HTML document.

How it Works:

  1. Create an External CSS File: You create a .css file (e.g., styles.css) and write your CSS rules in that file.

    Example (styles.css):

     
    body { background-color: lightblue; }
    h1 { color: darkblue; }
  2. Link the CSS File to HTML Documents: Each HTML document on your website links to the external .css file using the <link> tag within the <head> section.

    Example (index.html):

     
    <!DOCTYPE html>
    <html lang="en">
    <head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>My Examjila Website</title>
    <link rel="stylesheet" href="styles.css">
    </head>
    <body>
    <h1>Welcome to My Website Examjila.com</h1>
    <p>This is a paragraph styled using an external CSS file.</p>
    </body>
    </html>
  3. Change the Look of the Entire Website: By changing the styles.css file, you can affect the styling of all HTML pages linked to it. For example, if you update the background color or font in the styles.css file, the change will automatically apply to all the HTML pages that reference this external stylesheet.

    Example of changing background color in styles.css:

    body { background-color: lightgreen; /* Changed from lightblue */ }

    This change will instantly apply to all HTML files that include the styles.css file, making it very easy to maintain a consistent design across a website.

Key Benefits of External Style Sheets:

  1. Consistency: One style sheet can control the look of the entire website, ensuring consistency across all pages.
  2. Ease of Maintenance: If you need to change the look of your site, you only need to modify the external CSS file, and the changes will be reflected in all linked pages.
  3. Reduced Redundancy: You don't have to repeat CSS rules in each HTML file, which makes your code more efficient and easier to manage.
  4. Performance: Since the CSS file is cached by browsers, it can improve page load times as the browser only needs to download the CSS file once.

Correct Answer: A) True


Related Papers



















































Latest Updates