Syllabus
O Level
M1 R5: Information Technology Tools and Network Basics
Introduction to Computers
Office Automation Tools
Internet and Web Technologies
Networking Fundamentals
M2 R5: Web Designing and Publishing
HTML
CSS
Javascript
Web Hosting And Publishing
M3 R5: Programming and Problem Solving through Python
Introduction to Programming
Python Programming
Data Structures in Python
File Processing in Python
M4 R5: Internet of Things (IoT) and Its Applications
Introduction to IoT
IoT Architecture
IoT Applications
IoT Security and Challenges | Soft Skills
Courses
Under Graduate Courses
BA
BCA
B.COM
Post Graduate Courses
MCA
MBA
M.COM
MA
M.SC.(MATHS)
MSW
Institutional Courses
DCA
ADCA
DFA
DOAP
TALLY PRIME
JAVA
PYTHON
CCA
C Languages
Job Oriented Courses
Digital Marketing
Full Stack Development
Data Science
Cybersecurity and Ethical Hacking
Blockchain Development
Cloud Computing
Artificial Intelligence (AI) and Machine Learning
Government Courses
CCC
O LEVEL
A LEVEL
Mock Test
M1 R5: Information Technology Tools and Network Basics
M2 R5: Web Designing and Publishing
M3 R5: Programming and Problem Solving through Python
M4 R5: Internet of Things (IoT) and Its Applications
Old Papers
2025
New!
2024
New!
2023
New!
2022
New!
2021
New!
2020
New!
2019
New!
2018
New!
2017
New!
2016
New!
2015
New!
2014
New!
2013
New!
2012
New!
2011
New!
Assignments
HTML
CSS
Javascript
Python
Practical Questions
New!
Log in
Sign Up
O Level Papers!
M2 R5: Web Designing and Publishing
HTML
Set 7
25
See Explanation !
1
To start a list at the count of 3 we use
3 की गिनती पर एक सूची शुरू करने के लिए हम
<ol begin=”3”>
<ol list=”3”>
<ol start=”3”>
<ol num=”3”>
Next Question
25
See Explanation !
2
Default style and color of unvisited link in any browser is
किसी भी ब्राउज़र में बिना देखे गए लिंक की डिफ़ॉल्ट शैली और रंग है
Normal and Blue
Underline and Purple
Underline and Magenta
Underlined and Blue
Previous Question
Next Question
25
See Explanation !
3
Which of the following is used to open document in new window / Tab ?
नई विंडो / टैब में दस्तावेज़ खोलने के लिए निम्नलिखित में से किसका उपयोग किया जाता है?
<a target=”_self”>Link</a>
<a target=”_blank”>Link</a>
<a target=”_top”>Link</a>
<a target=”_parent”>Link</a>
Previous Question
Next Question
25
See Explanation !
4
To create a link to an email address, which of the following syntax is used?
ईमेल पते का लिंक बनाने के लिए, निम्नलिखित में से किस वाक्यविन्यास का उपयोग किया जाता है?
<a email=”mailto:name@example.com”>email</a>
<a mail=”mailto:name@example.com”>email</a>
<a href=”mailto:name@example.com”>email</a>
None of these
Previous Question
Next Question
25
See Explanation !
5
Which of the following will show an image located in folder named ‘image’, which is in the parent folder of the current page?
निम्नलिखित में से कौन 'image‘ नामक फ़ोल्डर में स्थित एक छवि दिखाएगा, जो वर्तमान पृष्ठ के मूल फ़ोल्डर में है?
<img src=”pic.img”>
<img src=”../pic.img”>
<img src=”../image/pic.img”>
<img src=”image/pic.img”>
Previous Question
Next Question
25
See Explanation !
6
HTML <dl> tag defines the
HTML dl टैग परिभाषित करता है
Unordered list
Ordered list
Description list
Descriptive list
Previous Question
Next Question
25
See Explanation !
7
Which tag is used to describe an list item?
सूची आइटम का वर्णन करने के लिए किस टैग का उपयोग किया जाता है?
<dl>
<li>
<dd>
<ul>
Previous Question
Next Question
25
See Explanation !
8
Which of the following is not a semantic element?
निम्नलिखित में से कौन एक शब्दार्थ तत्व नहीं है?
<form>
<article>
<table>
<span>
Previous Question
Next Question
25
See Explanation !
9
Which element works as a sidebar?
कौन सा तत्व साइडबार के रूप में काम करता है?
<header>
<footer>
<nav>
<aside >
Previous Question
Next Question
25
See Explanation !
10
Which of the following is not a block element?
निम्नलिखित में से कौन एक ब्लॉक तत्व नहीं है?
<h1>
<ul>
<p>
<a>
Previous Question
Next Question
25
See Explanation !
11
Which element works similar to <b> element?
कौन सा तत्व किसके समान काम करता है
<fat>
<strong>
<black>
<emp>
Previous Question
Next Question
25
See Explanation !
12
Correct HTML tag to make a text italic?
टेक्स्ट इटैलिक बनाने के लिए सही HTML टैग?
<italic>
<it>
<i>
any of the above
Previous Question
Next Question
25
See Explanation !
13
Which entity will generate ‘&’ symbol?
कौन सी इकाई ‘&' उत्पन्न करेगी
& a n d ;
& a m p ;
&ann;
None of the above
Previous Question
Next Question
25
See Explanation !
14
What entity can provide multiple spaces between texts?
कौन सी इकाई टेक्स्ट के बीच कई जगहें प्रदान कर सकती है?
& n b s p ;
& e n s p ;
& e m s p ;
all of the above
Previous Question
Next Question
25
See Explanation !
15
The main container for <tr>, <td> and <th> is
tr,td,th के लिए मुख्य कंटेनर
<data>
<group>
<table>
none of the above
Previous Question
Next Question
25
See Explanation !
16
When is the content of a table shown?
टेबल की सामग्री कब दिखाई जाती है?
Before the border loads
After the table is loaded
In pieces as it loads
None of the above
Previous Question
Next Question
25
See Explanation !
17
Which tag allows you to add a row in a table?
कौन सा टैग आपको तालिका में एक पंक्ति जोड़ने की अनुमति देता है?
td
rw
tr
th
Previous Question
Next Question
25
See Explanation !
18
What will be added by using <td></td> tag ?
td tag का उपयोग करके क्या जोड़ा जाएगा
cell
row
step
column
Previous Question
Next Question
25
See Explanation !
19
Which attribute you will use with TD tag to merge two cells horizontally?
दो कोशिकाओं को क्षैतिज रूप से मर्ज करने के लिए आप TD टैग के साथ किस विशेषता का उपयोग करेंगे?
merge=colspan2
rowspan=2
colspan=2
merge=row2
Previous Question
Next Question
25
See Explanation !
20
Increasing the cell padding means
सेल पैडिंग बढ़ाने का मतलब है
Increase the softness of your site
increase the space between cells
increase the distance between cell and content
all of the above
Previous Question
Next Question
25
See Explanation !
21
Which of the following defines a visible heading for <details> element?
निम्नलिखित में से किसके लिए एक दृश्य शीर्षक परिभाषित करता है
summary
section
mark
main
Previous Question
Next Question
25
See Explanation !
22
Which element defines additional details?
कौन सा तत्व अतिरिक्त विवरण को परिभाषित करता है?
<summary>
<main>
<aside>
<details>
Previous Question
Next Question
25
See Explanation !
23
Which element denotes that the text is a short fragment of computer code?
कौन सा तत्व दर्शाता है कि टेक्स्ट कंप्यूटर कोड का एक छोटा टुकड़ा है?
<data>
<code>
<cite>
<dfn>
Previous Question
Next Question
25
See Explanation !
24
Which tag is used to increase the font size of the displayed text?
प्रदर्शित पाठ के फ़ॉन्ट आकार को बढ़ाने के लिए किस टैग का उपयोग किया जाता है?
<large></large>
<big></big>
<size></size>
<font></font>
Previous Question
Next Question
25
See Explanation !
25
The <small> and <big> tags are special in a what way?
small Tag और big टैग किस तरह से विशेष हैं?
They are for images only
They work on anything
They can be repeated
None of the above
Previous Question