O Level Exam
Menu mobile
Home
MCQ Topic Wise
INFORMATION TECHNOLOGY TOOLS AND NETWORK BASIS
New
WEB DESIGNING AND PUBLISHING
New
PROGRAMMING AND PROBLEM SOLVING THROUGH PYTHON
New
INTERNET OF THINGS AND ITS APPLICATIONS
New
Online Mock Test
INFORMATION TECHNOLOGY TOOLS AND NETWORK BASIS
New
WEB DESIGNING AND PUBLISHING
New
PROGRAMMING AND PROBLEM SOLVING THROUGH PYTHON
New
INTERNET OF THINGS AND ITS APPLICATIONS
New
Old Papers
Practical Questions
Projects
O level Web designing and publishing Model Paper (Online Test) 4
Web Designing And Publishing - Set : 4
00:00:00
English
Hindi
Question No# :
01
out of 100
Report Bug
Which property is used to change the font of an element?
Which property is used to change the font of an element?
A.
font-style
font-style
B.
font-family
font-family
C.
font-weight
font-weight
D.
font-color
font-color
Question No# :
02
out of 100
Report Bug
How do you make the text bold using CSS?
How do you make the text bold using CSS?
A.
style:bold;
style:bold;
B.
font:bold;
font:bold;
C.
font-weight:bold;
font-weight:bold;
D.
text:bold;
text:bold;
Question No# :
03
out of 100
Report Bug
which is the correct format to set the border width for (top=10px,bottom=5px,left=20px and right=1px)
which is the correct format to set the border width for (top=10px,bottom=5px,left=20px and right=1px)
A.
border-width:10px 1px 5px 20px;
border-width:10px 1px 5px 20px;
B.
border-width:5px 20px 10px 1px;
border-width:5px 20px 10px 1px;
C.
border-width:10px 20px 5px 1px;
border-width:10px 20px 5px 1px;
D.
border-width:10px 5px 20px 1px;
border-width:10px 5px 20px 1px;
Question No# :
04
out of 100
Report Bug
Which property is used to change the left margin of an element?
Which property is used to change the left margin of an element?
A.
margin-left
margin-left
B.
indent
indent
C.
padding-left
padding-left
D.
left-margin
left-margin
Question No# :
05
out of 100
Report Bug
How do you make a list that lists its items with squares?
How do you make a list that lists its items with squares?
A.
list-style-type: square;
list-style-type: square;
B.
list-type: square;
list-type: square;
C.
list: square;
list: square;
D.
list-style: square;
list-style: square;
Question No# :
06
out of 100
Report Bug
How do you select an element with id 'demo'?
How do you select an element with id 'demo'?
A.
*demo
*demo
B.
#demo
#demo
C.
demo
demo
D.
.demo
.demo
Question No# :
07
out of 100
Report Bug
How do you select elements with class name 'test'?
How do you select elements with class name 'test'?
A.
test
test
B.
.test
.test
C.
*test
*test
D.
#test
#test
Question No# :
08
out of 100
Report Bug
How do you select all p elements inside a div element?
How do you select all p elements inside a div element?
A.
div p
div p
B.
div.p
div.p
C.
div + p
div + p
D.
div ~ p
div ~ p
Question No# :
09
out of 100
Report Bug
How do you group selectors?
आप चयनकर्ताओं को कैसे समूहित करते हैं?
A.
Separate each selector with a plus sign
Separate each selector with a plus sign
B.
Separate each selector with a comma
Separate each selector with a comma
C.
Separate each selector with a space
Separate each selector with a space
D.
All of These
All of These
Question No# :
10
out of 100
Report Bug
What is the default value of the position property?
What is the default value of the position property?
A.
absolute
absolute
B.
static
static
C.
fixed
fixed
D.
relative
relative
Question No# :
11
out of 100
Report Bug
Inside which HTML element do we put the JavaScript?
Inside which HTML element do we put the JavaScript?
A.
<javascript>
<javascript>
B.
<script>
<script>
C.
<scripting>
<scripting>
D.
<link>
<link>
Question No# :
12
out of 100
Report Bug
What is the correct syntax for referring to an external script called "data.js"?
What is the correct syntax for referring to an external script called "data.js"?
A.
<script name="data.js">
<script name="data.js">
B.
<script href="data.js">
<script href="data.js">
C.
<script src="data.js">
<script src="data.js">
D.
<link href="data.js">
<link href="data.js">
Question No# :
13
out of 100
Report Bug
How do you write "Hello World" in an alert box?
How do you write "Hello World" in an alert box?
A.
alert("Hello World");
alert("Hello World");
B.
msgBox("Hello World");
msgBox("Hello World");
C.
alertBox("Hello World");
alertBox("Hello World");
D.
msg("Hello World");
msg("Hello World");
Question No# :
14
out of 100
Report Bug
How do you create a function in JavaScript?
How do you create a function in JavaScript?
A.
function:myFunction()
function:myFunction()
B.
function myFunction()
function myFunction()
C.
function = myFunction()
function = myFunction()
D.
function.myFunction()
function.myFunction()
Question No# :
15
out of 100
Report Bug
How to write an IF statement in JavaScript?
How to write an IF statement in JavaScript?
A.
if (i == 5)
if (i == 5)
B.
if i == 5 then
if i == 5 then
C.
if i = 5
if i = 5
D.
if i = 5 then
if i = 5 then
Question No# :
16
out of 100
Report Bug
How to write an IF statement for executing some code if "i" is NOT equal to 5?
How to write an IF statement for executing some code if "i" is NOT equal to 5?
A.
if (i <> 5)
if (i <> 5)
B.
if (i != 5)
if (i != 5)
C.
if i =! 5 then
if i =! 5 then
D.
if i <> 5
if i <> 5
Question No# :
17
out of 100
Report Bug
How can you add a comment in a JavaScript?
How can you add a comment in a JavaScript?
A.
<!--This is a comment-->
<!--This is a comment-->
B.
//This is a comment
//This is a comment
C.
'This is a comment
'This is a comment
D.
#This is a comment
#This is a comment
Question No# :
18
out of 100
Report Bug
What is the correct way to write a JavaScript array?
What is the correct way to write a JavaScript array?
A.
var colors = 1 = ("red"), 2 = ("green"), 3 = ("blue")
var colors = 1 = ("red"), 2 = ("green"), 3 = ("blue")
B.
var colors = (1:"red", 2:"green", 3:"blue")
var colors = (1:"red", 2:"green", 3:"blue")
C.
var colors = "red", "green", "blue"
var colors = "red", "green", "blue"
D.
var colors = ["red", "green", "blue"]
var colors = ["red", "green", "blue"]
Question No# :
19
out of 100
Report Bug
How do you round the number 7.25, to the nearest integer?
How do you round the number 7.25, to the nearest integer?
A.
round(7.25)
round(7.25)
B.
Math.rnd(7.25)
Math.rnd(7.25)
C.
rnd(7.25)
rnd(7.25)
D.
Math.round(7.25)
Math.round(7.25)
Question No# :
20
out of 100
Report Bug
How do you find the number with the highest value of x and y?
How do you find the number with the highest value of x and y?
A.
ceil(x, y)
ceil(x, y)
B.
Math.max(x, y)
Math.max(x, y)
C.
top(x, y)
top(x, y)
D.
Math.ceil(x, y)
Math.ceil(x, y)
Question No# :
21
out of 100
Report Bug
How do you declare a JavaScript variable?
How do you declare a JavaScript variable?
A.
variable carName;
variable carName;
B.
var carName;
var carName;
C.
vari carName;
vari carName;
D.
dim carName;
dim carName;
Question No# :
22
out of 100
Report Bug
Which operator is used to assign a value to a variable?
Which operator is used to assign a value to a variable?
A.
=
=
B.
x
x
C.
==
==
D.
*
*
Question No# :
23
out of 100
Report Bug
Which is Not a Text Editor Software
कौन सा टेक्स्ट एडिटर सॉफ्टवेयर नहीं है
A.
MS Paint
एमएस पेंट
B.
Notepad
नोटपैड
C.
Notepad++
नोटपैड++
D.
Wordpad
वर्डपैड
Question No# :
24
out of 100
Report Bug
Which text Editor is in-built in Windows operating System
विंडोज ऑपरेटिंग सिस्टम में कौन सा टेक्स्ट एडिटर इन-बिल्ट है
A.
Notepad
नोटपैड
B.
Paint
पेंट
C.
Notepad++
नोटपैड++
D.
All of These
ये सभी
Question No# :
25
out of 100
Report Bug
What is the default file extension of notepad
नोटपैड का डिफॉल्ट फाइल एक्सटेंशन क्या है
A.
.txt
.txt
B.
.html
.html
C.
.css
.css
D.
None of These
इनमें से कोई नहीं
Question No# :
26
out of 100
Report Bug
Notepad++ is which type of Software
Notepad++ किस प्रकार का Software है
A.
Text Editor
टेक्स्ट एडिटर
B.
Image Editor
इमेज़ एडिटर
C.
HTML Editor
एचटीएमएल एडिटर
D.
All of These
ये सभी
Question No# :
27
out of 100
Report Bug
The latest HTML standard is
HTML का नवीनतम संस्करण कौन सा है
A.
XML
XML
B.
SGML
SGML
C.
HTML 4.0
HTML 4.0
D.
HTML 5.0
HTML 5.0
Question No# :
28
out of 100
Report Bug
Which tag tells the browser where the HTML page starts and stops?
कौन सा टैग ब्राउज़र को बताता है कि HTML पेज कहाँ से शुरू होता है और कहाँ रुकता है?
A.
<html>
<html>
B.
<body>
<body>
C.
<head>
<head>
D.
<title>
<title>
Question No# :
29
out of 100
Report Bug
Which of the following is a valid tag?
निम्नलिखित में से कौन एक मान्य टैग है?
A.
[BODY]
[BODY]
B.
<BODY>
<BODY>
C.
Both a) and b)
Both a) and b)
D.
None of these
None of these
Question No# :
30
out of 100
Report Bug
What can be the possible extension for the HTML5 file?
HTML5 फ़ाइल के लिए संभावित एक्सटेंशन क्या हो सकता है?
A.
.htm
.htm
B.
.html
.html
C.
.txt
.txt
D.
Both .html and .htm
Both .html and .htm
Question No# :
31
out of 100
Report Bug
The BODY tag is usually used after
<body > टैग आमतौर पर किस टैग के बाद प्रयोग किया जाता है
A.
HTML tag
HTML tag
B.
HEAD tag
HEAD tag
C.
TITLE tag
TITLE tag
D.
EM tag
EM tag
Question No# :
32
out of 100
Report Bug
How do we write comments in HTML5?
हम HTML5 में कमेंट कैसे लिखते हैं?
A.
<!--.….-->
<!--.….-->
B.
<--.….--!>
<--.….--!>
C.
</--…..-->
</--…..-->
D.
</--…..--/>
</--…..--/>
Question No# :
33
out of 100
Report Bug
The title tag
<title> टैग के बारे में क्या सही है
A.
defines a title in the browser toolbar
ब्राउज़र टूलबार में एक शीर्षक परिभाषित करता है
B.
provides a title for the page when it is added to favorites
बाहरी टूल बार्स को एक श्रेणी में रखा गया है
C.
displays a title for the page in search-engine results
सर्च -इंजन परिणामों में पृष्ठ के लिए एक शीर्षक प्रदर्शित करता है
D.
all of the above
ऊपर के सभी
Question No# :
34
out of 100
Report Bug
Where is the title tag defined?
<title > टैग का प्रयोग कहा किया जाता है?
A.
Immediately inside the html tag
तुरंत html टैग के अंदर
B.
Immediately inside the head tag
हेड टैग के अंदर
C.
Immediately inside the body tag
बॉडी टैग के अंदर
D.
None of the above
इनमे से कोई भी नहीं
Question No# :
35
out of 100
Report Bug
Using <p> tag will
Using <p> tag will
A.
start a new paragraph
start a new paragraph
B.
break the line
break the line
C.
end the current paragraph
end the current paragraph
D.
none of the above
none of the above
Question No# :
36
out of 100
Report Bug
Can the element <h1> be replaced with <H1>?
Can the element <h1> be replaced with <H1>?
A.
No, they represent different elements altogether
No, they represent different elements altogether
B.
Yes, both are same
Yes, both are same
C.
First is correct only
First is correct only
D.
Second is correct only
Second is correct only
Question No# :
37
out of 100
Report Bug
What does the <br> tag add to your webpage?
<br> टैग आपके वेबपेज में क्या जोड़ता है?
A.
Long break
Long break
B.
Paragraph break
Paragraph break
C.
Line break
Line break
D.
None of the above
None of the above
Question No# :
38
out of 100
Report Bug
To create a bulleted list we use
To create a bulleted list we use
A.
<ol>
<ol>
B.
<ul>
<ul>
C.
<li>
<li>
D.
None of the above
None of the above
Question No# :
39
out of 100
Report Bug
To start a list using filled circles we use
To start a list using filled circles we use
A.
<ul type:"disc">
<ul type:"disc">
B.
<ul type="round">
<ul type="round">
C.
<ul type="disc">
<ul type="disc">
D.
<ul type:"round">
<ul type:"round">
Question No# :
40
out of 100
Report Bug
What kind of list will <ol> tags create?
What kind of list will <ol> tags create?
A.
Numbered list
Numbered list
B.
Bulleted list
Bulleted list
C.
Any of the two
Any of the two
D.
None of the above
None of the above
Question No# :
41
out of 100
Report Bug
Which tag will display the content of list?
Which tag will display the content of list?
A.
ul
ul
B.
li
li
C.
ol
ol
D.
dl
dl
Question No# :
42
out of 100
Report Bug
Which attribute is/are used to set the dimensions of the image?
Which attribute is/are used to set the dimensions of the image?
A.
size
size
B.
width and Height
width and Height
C.
length and breadth
length and breadth
D.
dimension
dimension
Question No# :
43
out of 100
Report Bug
Which attribute is used to set the path for an image element?
Which attribute is used to set the path for an image element?
A.
val
val
B.
source
source
C.
src
src
D.
alt
alt
Question No# :
44
out of 100
Report Bug
If the image cannot be displayed then ___ attribute specifies an alternate text for an image.
If the image cannot be displayed then ___ attribute specifies an alternate text for an image.
A.
text
text
B.
alt
alt
C.
value
value
D.
caption
caption
Question No# :
45
out of 100
Report Bug
The tag used for creating hypertext and hypermedia links is
The tag used for creating hypertext and hypermedia links is
A.
<hr>
<hr>
B.
<br>
<br>
C.
<pre>
<pre>
D.
<a>
<a>
Question No# :
46
out of 100
Report Bug
URL for link is specified using ___ attribute.
URL for link is specified using ___ attribute.
A.
src
src
B.
href
href
C.
link
link
D.
rel
rel
Question No# :
47
out of 100
Report Bug
A linked page using anchor tag is normally displayed in
A linked page using anchor tag is normally displayed in
A.
New window
New window
B.
Current window
Current window
C.
New tab
New tab
D.
Same tab
Same tab
Question No# :
48
out of 100
Report Bug
Which attribute is used to specify where to open the linked document?
Which attribute is used to specify where to open the linked document?
A.
target
target
B.
coords
coords
C.
rel
rel
D.
pos
pos
Question No# :
49
out of 100
Report Bug
Default color of active link in browser is
Default color of active link in browser is
A.
red
red
B.
blue
blue
C.
green
green
D.
brown
brown
Question No# :
50
out of 100
Report Bug
Relative URLs are used to
Relative URLs are used to
A.
link other pages within the same site
link other pages within the same site
B.
link the same page with other sites
link the same page with other sites
C.
link other pages with other sites
link other pages with other sites
D.
does not link
does not link
Question No# :
51
out of 100
Report Bug
For defining internal links in a page which attribute is used
एक पेज में आंतरिक लिंक को परिभाषित करने के लिए किस विशेषता का उपयोग किया जाता है
A.
name
name
B.
target
target
C.
src
src
D.
None of These
None of These
Question No# :
52
out of 100
Report Bug
In HTML, tags that include both start and end tag are called
HTML में वे टैग जिनमें स्टार्ट और एंड टैग दोनों शामिल होते हैं, कहलाते हैं
A.
Comment tag
Comment tag
B.
Document tag
Document tag
C.
Container tag
Container tag
D.
None of the above
None of the above
Question No# :
53
out of 100
Report Bug
What is the correct syntax for writing ‘doctype’ in HTML5?
HTML5 में 'doctype' लिखने का सही तरीका क्या है?
A.
<!doctype html>
<!doctype html>
B.
<!DOCTYPE html>
<!DOCTYPE html>
C.
<!Doctype html>
<!Doctype html>
D.
All of the above
ऊपर के सभी
Question No# :
54
out of 100
Report Bug
Which of the following is not a pair tag?
निम्नलिखित में से कौन-सा पेयर टैग नहीं है?
A.
<img>
<img >
B.
<ul>
<ul>
C.
<a>
<a>
D.
<li>
<li>
Question No# :
55
out of 100
Report Bug
Alt Attribute is more useful in the situation where user have
Alt Attribute is more useful in the situation where user have
A.
high speed internet connection
high speed internet connection
B.
no image shown due to any reason
no image shown due to any reason
C.
broadband connection
broadband connection
D.
none of these
none of these
Question No# :
56
out of 100
Report Bug
What tag is used to list individual items of an ordered list?
What tag is used to list individual items of an ordered list?
A.
li
li
B.
ol
ol
C.
ul
ul
D.
none of the above
none of the above
Question No# :
57
out of 100
Report Bug
To start a list at the count of 3 we use
To start a list at the count of 3 we use
A.
<ol begin=”3”>
<ol begin=”3”>
B.
<ol list=”3”>
<ol list=”3”>
C.
<ol start=”3”>
<ol start=”3”>
D.
<ol num=”3”>
<ol num=”3”>
Question No# :
58
out of 100
Report Bug
Link in HTML can be of following type(s)
Link in HTML can be of following type(s)
A.
Visited
Visited
B.
Active
Active
C.
Unvisited
Unvisited
D.
All are the types of links
All are the types of links
Question No# :
59
out of 100
Report Bug
Default style and color of unvisited link in any browser is
Default style and color of unvisited link in any browser is
A.
Normal and Blue
Normal and Blue
B.
Underline and Purple
Underline and Purple
C.
Underline and Magenta
Underline and Magenta
D.
Underlined and Blue
Underlined and Blue
Question No# :
60
out of 100
Report Bug
Which of the following is used to open document in new window / Tab ?
Which of the following is used to open document in new window / Tab ?
A.
<a target=”_self”>Link</a>
<a target=”_self”>Link</a>
B.
<a target=”_blank”>Link</a>
<a target=”_blank”>Link</a>
C.
<a target=”_top”>Link</a>
<a target=”_top”>Link</a>
D.
<a target=”_parent”>Link</a>
<a target=”_parent”>Link</a>
Question No# :
61
out of 100
Report Bug
To create a link to an email address, which of the following syntax is used?
To create a link to an email address, which of the following syntax is used?
A.
<a email=”mailto:name@example.com”>email</a>
<a email=”mailto:name@example.com”>email</a>
B.
<a mail=”mailto:name@example.com”>email</a>
<a mail=”mailto:name@example.com”>email</a>
C.
<a href=”mailto:name@example.com”>email</a>
<a href=”mailto:name@example.com”>email</a>
D.
None of these
None of these
Question No# :
62
out of 100
Report Bug
Which of the following will show an image located in folder named ‘image’, which is in the parent folder of the current page?
Which of the following will show an image located in folder named ‘image’, which is in the parent folder of the current page?
A.
<img src=”pic.img”>
<img src=”pic.img”>
B.
<img src=”../pic.img”>
<img src=”../pic.img”>
C.
<img src=”../image/pic.img”>
<img src=”../image/pic.img”>
D.
<img src=”image/pic.img”>
<img src=”image/pic.img”>
Question No# :
63
out of 100
Report Bug
HTML <dl> tag defines the
HTML <dl> tag defines the
A.
Unordered list
Unordered list
B.
Ordered list
Ordered list
C.
Description list
Description list
D.
Descriptive list
Descriptive list
Question No# :
64
out of 100
Report Bug
Which tag is used to describe an list item?
सूची आइटम का वर्णन करने के लिए किस टैग का उपयोग किया जाता है?
A.
<dl>
<dl>
B.
<li>
<li>
C.
<dd>
<dd>
D.
<ul>
<ul>
Question No# :
65
out of 100
Report Bug
Which of the following is not a semantic element?
Which of the following is not a semantic element?
A.
<form>
<form>
B.
<article>
<article>
C.
<table>
<table>
D.
<span>
<span>
Question No# :
66
out of 100
Report Bug
Which element works as a sidebar?
Which element works as a sidebar?
A.
header
header
B.
footer
footer
C.
nav
nav
D.
aside
aside
Question No# :
67
out of 100
Report Bug
Which of the following is not a block element?
Which of the following is not a block element?
A.
<h1>
<h1>
B.
<ul>
<ul>
C.
<p>
<p>
D.
<a>
<a>
Question No# :
68
out of 100
Report Bug
Which element works similar to <b> element?
Which element works similar to <b> element?
A.
<fat>
<fat>
B.
<strong>
<strong>
C.
<black>
<black>
D.
<emp>
<emp>
Question No# :
69
out of 100
Report Bug
Correct HTML tag to make a text italic?
Correct HTML tag to make a text italic?
A.
<italic>
<italic>
B.
<it>
<it>
C.
<i>
<i>
D.
any of the above
any of the above
Question No# :
70
out of 100
Report Bug
Which entity will generate ‘&’ symbol?
Which entity will generate ‘&’ symbol?
A.
∧
∧
B.
&
&
C.
&ann;
&ann;
D.
None of the above
None of the above
Question No# :
71
out of 100
Report Bug
What entity can provide multiple spaces between texts?
What entity can provide multiple spaces between texts?
A.
B.
 
 
C.
 
 
D.
all of the above
all of the above
Question No# :
72
out of 100
Report Bug
The main container for <tr>, <td> and <th> is
The main container for <tr>, <td> and <th> is
A.
<data>
<data>
B.
<group>
<group>
C.
<table>
<table>
D.
none of the above
none of the above
Question No# :
73
out of 100
Report Bug
When is the content of a table shown?
When is the content of a table shown?
A.
Before the border loads
Before the border loads
B.
After the table is loaded
After the table is loaded
C.
In pieces as it loads
In pieces as it loads
D.
None of the above
None of the above
Question No# :
74
out of 100
Report Bug
Which tag allows you to add a row in a table?
Which tag allows you to add a row in a table?
A.
td
td
B.
rw
rw
C.
tr
tr
D.
th
th
Question No# :
75
out of 100
Report Bug
What will be added by using <td></td> tag ?
What will be added by using <td></td> tag ?
A.
cell
cell
B.
row
row
C.
step
step
D.
column
column
Question No# :
76
out of 100
Report Bug
Which attribute you will use with TD tag to merge two cells horizontally?
Which attribute you will use with TD tag to merge two cells horizontally?
A.
merge=colspan2
merge=colspan2
B.
rowspan=2
rowspan=2
C.
colspan=2
colspan=2
D.
merge=row2
merge=row2
Question No# :
77
out of 100
Report Bug
Increasing the cell padding means
Increasing the cell padding means
A.
Increase the softness of your site
Increase the softness of your site
B.
increase the space between cells
increase the space between cells
C.
increase the distance between cell and content
increase the distance between cell and content
D.
all of the above
all of the above
Question No# :
78
out of 100
Report Bug
Which of the following defines a visible heading for <details> element?
Which of the following defines a visible heading for <details> element?
A.
summary
summary
B.
section
section
C.
mark
mark
D.
main
main
Question No# :
79
out of 100
Report Bug
Which element defines additional details?
Which element defines additional details?
A.
<summary>
<summary>
B.
<main>
<main>
C.
<aside>
<aside>
D.
<details>
<details>
Question No# :
80
out of 100
Report Bug
Which element denotes that the text is a short fragment of computer code?
Which element denotes that the text is a short fragment of computer code?
A.
<data>
<data>
B.
<code>
<code>
C.
<cite>
<cite>
D.
<dfn>
<dfn>
Question No# :
81
out of 100
Report Bug
Which tag is used to increase the font size of the displayed text?
Which tag is used to increase the font size of the displayed text?
A.
<large></large>
<large></large>
B.
<big></big>
<big></big>
C.
<size></size>
<size></size>
D.
<font></font>
<font></font>
Question No# :
82
out of 100
Report Bug
The <small> and <big> tags are special in a what way?
The <small> and <big> tags are special in a what way?
A.
They are for images only
They are for images only
B.
They work on anything
They work on anything
C.
They can be repeated
They can be repeated
D.
None of the above
None of the above
Question No# :
83
out of 100
Report Bug
Is it possible to insert a table within another table?
Is it possible to insert a table within another table?
A.
Yes, but there must be exactly 2 rows and 2 columns in first table.
Yes, but there must be exactly 2 rows and 2 columns in first table.
B.
Yes, table can be inserted into cell of another table.
es, table can be inserted into cell of another table.
C.
Yes, but there must be no border in other table.
Yes, but there must be no border in other table.
D.
No, it’s not possible.
No, it’s not possible.
Question No# :
84
out of 100
Report Bug
What is the use of Forms in HTML?
What is the use of Forms in HTML?
A.
to display contents
to display contents
B.
to collect user’s input
to collect user’s input
C.
to search the site by user’s input
to search the site by user’s input
D.
none of the above
none of the above
Question No# :
85
out of 100
Report Bug
Which attribute is used to provide an advisory text about an element or its contents?
Which attribute is used to provide an advisory text about an element or its contents?
A.
tooltip
tooltip
B.
value
value
C.
title
title
D.
none of the above
none of the above
Question No# :
86
out of 100
Report Bug
Which element is used to take input from the user that can be send to the server?
Which element is used to take input from the user that can be send to the server?
A.
<form>
<form>
B.
<label>
<label>
C.
<input>
<input>
D.
<select>
<select>
Question No# :
87
out of 100
Report Bug
What is the default ‘type’ attribute of <input> element?
What is the default ‘type’ attribute of <input> element?
A.
text
text
B.
password
password
C.
numerals
numerals
D.
date
date
Question No# :
88
out of 100
Report Bug
Which of them is not the value of the input’s type attribute?
Which of them is not the value of the input’s type attribute?
A.
email
email
B.
password
password
C.
date
date
D.
age
age
Question No# :
89
out of 100
Report Bug
Adding which of the following to input box make it compulsory to be filled out when submitting the form?
Adding which of the following to input box make it compulsory to be filled out when submitting the form?
A.
type=”required”
type=”required”
B.
required
required
C.
important
important
D.
compulsory
compulsory
Question No# :
90
out of 100
Report Bug
Which tag creates a check box for a form in HTML?
Which tag creates a check box for a form in HTML?
A.
<checkbox></checkbox>
<checkbox></checkbox>
B.
<input type="checkbox">
<input type="checkbox">
C.
<input=checkbox>
<input=checkbox>
D.
<input checkbox>
<input checkbox>
Question No# :
91
out of 100
Report Bug
How does the “for” attribute of label links to input box?
How does the “for” attribute of label links to input box?
A.
set the “name” attribute of input to same value as “for” attribute
set the “name” attribute of input to same value as “for” attribute
B.
set the “value” attribute of input to same value as “for” attribute
set the “value” attribute of input to same value as “for” attribute
C.
set the “id” attribute of input to same value as “for” attribute
set the “id” attribute of input to same value as “for” attribute
D.
all the above options are necessary
all the above options are necessary
Question No# :
92
out of 100
Report Bug
Choose the correct statement regarding elements having same value of “name” attribute.
Choose the correct statement regarding elements having same value of “name” attribute.
A.
Elements with <input type="checkbox"> can have multiple value because multiple checkboxes can be selected and part of same set
Elements with <input type="checkbox"> can have multiple value because multiple checkboxes can be selected and part of same set
B.
Elements with <input type="radio"> can have same value because multiple radio buttons can be selected and part of same set
Elements with <input type="radio"> can have same value because multiple radio buttons can be selected and part of same set
C.
Elements with <input type="checkbox"> can have same value because only one checkbox can be selected and part of same set
Elements with <input type="checkbox"> can have same value because only one checkbox can be selected and part of same set
D.
Elements with <input type="radio"> can have same value because only one radio button can be selected and part of same set
Elements with <input type="radio"> can have same value because only one radio button can be selected and part of same set
Question No# :
93
out of 100
Report Bug
Which element is used to create multi-line text input?
Which element is used to create multi-line text input?
A.
text
text
B.
textarea
textarea
C.
submit
submit
D.
radio
radio
Question No# :
94
out of 100
Report Bug
To create a drop down which tag will you use?
To create a drop down which tag will you use?
A.
<select>
<select>
B.
<list>
<list>
C.
<input type="dropdown">
<input type="dropdown">
D.
Any of them will work
Any of them will work
Question No# :
95
out of 100
Report Bug
Which attribute can be used with <select> element?
Which attribute can be used with <select> element?
A.
selected
selected
B.
value
value
C.
multiple
multiple
D.
none of the above
none of the above
Question No# :
96
out of 100
Report Bug
What does the action attribute defines?
What does the action attribute defines?
A.
Specify the action to be performed on the form content
Specify the action to be performed on the form content
B.
Specify the address on the server to send the form content to
Specify the address on the server to send the form content to
C.
Specify the method to call when the form is submitted
Specify the method to call when the form is submitted
D.
None of the above
None of the above
Question No# :
97
out of 100
Report Bug
The method attribute of from tag specifies the
The method attribute of from tag specifies the
A.
the method name that process the form data
the method name that process the form data
B.
the URI of program that processes the form data
the URI of program that processes the form data
C.
the method that the browser uses to submit the form
the method that the browser uses to submit the form
D.
None of the above
None of the above
Question No# :
98
out of 100
Report Bug
Which of the following is not the keyword of form method attribute?
Which of the following is not the keyword of form method attribute?
A.
GET
GET
B.
POST
POST
C.
OUT
PUT
D.
All of These
OUT
Question No# :
99
out of 100
Report Bug
Which of the following tag is used for audio in HTML5 ?
Which of the following tag is used for audio in HTML5 ?
A.
<video>
<video>
B.
<canvas>
<canvas>
C.
<media>
<media>
D.
<audio>
<audio>
Question No# :
100
out of 100
Report Bug
Which tag is used to defines multiple media resources for media elements audio and video?
Which tag is used to defines multiple media resources for media elements audio and video?
A.
<canvas>
<canvas>
B.
<source>
<source>
C.
<media>
<media>
D.
none of the above
none of the above
CCC Online Test 2021
CCC Practice Test Hindi
Python Programming Tutorials
Best Computer Training Institute in Prayagraj (Allahabad)
Best Java Training Institute in Prayagraj (Allahabad)
Best Python Training Institute in Prayagraj (Allahabad)
O Level NIELIT Study material and Quiz
Bank SSC Railway TET UPTET Question Bank
career counselling in allahabad
Sarkari Naukari Notification
Best Website and Software Company in Allahabad
Website development Company in Allahabad