O Level Online 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) 5
Web Designing And Publishing - Set : 5
00:00:00
English
Hindi
Question No# :
01
out of 100
Report Bug
In which of the following ways can a submit button be created?
A.
<input type="submit" value="Submit"/>
<input type="submit" value="Submit"/>
B.
<input type="text" value="Submit"/>
<input type="text" value="Submit"/>
C.
<input type="button" value="Submit"/>
<input type="button" value="Submit"/>
D.
<input type="reset" value="Submit"/>
<input type="reset" value="Submit"/>
Question No# :
02
out of 100
Report Bug
When form data contains sensitive information, then which method should be used?
जब फ्रॉममें संवेदनशील जानकारी हो, तो किस विधि का उपयोग किया जाना चाहिए?
A.
Get
Get
B.
Post
Post
C.
Put
Put
D.
Out
Out
Question No# :
03
out of 100
Report Bug
What is the correct syntax to add user controllable mp4 video to the HTML?
A.
<video controls><source src="xyz.mp4" type="video"></video>
<video controls><source src="xyz.mp4" type="video"></video>
B.
<video><source src="xyz.mp4" type="video/mp4"></video>
<video><source src="xyz.mp4" type="video/mp4"></video>
C.
<video controls><source src="xyz.mp4" type="video/mp4"></video>
<video controls><source src="xyz.mp4" type="video/mp4"></video>
D.
all of the above
all of the above
Question No# :
04
out of 100
Report Bug
CSS is an acronym for
A.
Cascading Style Sheet
Cascading Style Sheet
B.
Costume Style Sheet
Costume Style Sheet
C.
Cascading System Style
Cascading System Style
D.
None of the Above
None of the Above
Question No# :
05
out of 100
Report Bug
Which tag is used to contain content that is related to the primary content of the webpage, but isn't the primary content of the page.
किस टैग का उपयोग उस सामग्री को शामिल करने के लिए किया जाता है जो वेबपेज की प्राथमिक सामग्री से संबंधित है, लेकिन पृष्ठ की प्राथमिक सामग्री नहीं है।
A.
header
header
B.
footer
footer
C.
nav
nav
D.
aside
aside
Question No# :
06
out of 100
Report Bug
What is true about CSS?
CSS के बारे में क्या सत्य है?
A.
apply styles for the web page
apply styles for the web page
B.
define structure of the web page
define structure of the web page
C.
provide meaning to the sections of the web page
provide meaning to the sections of the web page
D.
none of the above
none of the above
Question No# :
07
out of 100
Report Bug
Which of the following represents an internal style sheet?
A.
style=”tag{property:value;}”
style=”tag{property:value;}”
B.
<style> tag{property: value;} </style>
<style> tag{property: value;} </style>
C.
css=”tag{property=value;}”
css=”tag{property=value;}”
D.
<style> tag{property=value;} </style>
<style> tag{property=value;} </style>
Question No# :
08
out of 100
Report Bug
Which is the correct CSS syntax written inside the style tag?
A.
body { font-size: 20px; }
body { font-size: 20px; }
B.
body { font-size= 20px };
body { font-size= 20px };
C.
body:{ font-size: 20px; }
body:{ font-size: 20px; }
D.
body:{ font-size= 20px; }
body:{ font-size= 20px; }
Question No# :
09
out of 100
Report Bug
Which selector is used to specify a group of elements?
A.
id
id
B.
class
class
C.
tag
tag
D.
both b) and c)
both b) and c)
Question No# :
10
out of 100
Report Bug
How do you select elements with class name "test"?
A.
*test
*test
B.
#test
#test
C.
.test
.test
D.
test
test
Question No# :
11
out of 100
Report Bug
Which attribute specifies a unique alphanumeric identifier to be associated with an element?
A.
class
class
B.
id
id
C.
article
article
D.
html
html
Question No# :
12
out of 100
Report Bug
What should be used for an unique element as attribute name in the following: <p ___=”_12t”>
A.
id
id
B.
class
class
C.
The element will be in the DOM, but won’t work as required
The element will be in the DOM, but won’t work as required
D.
The element would not be in the DOM
The element would not be in the DOM
Question No# :
13
out of 100
Report Bug
How do you select an element with id "demo"?
A.
demo
demo
B.
#demo
#demo
C.
.demo
.demo
D.
*demo
*demo
Question No# :
14
out of 100
Report Bug
How to apply specific styles to h1 tag only when mouse points to it?
कसी H1 टैग पे माउस ले जाने पे कोई कस प्रोपेरी कैसे लगाएंगे
A.
h1.hover
h1.hover
B.
h1 : hover
h1 : hover
C.
h1:hover
h1:hover
D.
h1: hover
h1: hover
Question No# :
15
out of 100
Report Bug
If the elements - <p>, <h4> and <a> tags are needed to be of the orange color, then which of the following will do this?
A.
p h4 a { color: orange; }
p h4 a { color: orange; }
B.
p; h4; a { color: orange; }
p; h4; a { color: orange; }
C.
p+a+h4 { color: orange; }
p+a+h4 { color: orange; }
D.
h4, a, p { color: orange; }
h4, a, p { color: orange; }
Question No# :
16
out of 100
Report Bug
How do you group multiple selectors?
आप अनेक चयनकर्ताओं का समूह कैसे बनाते हैं?
A.
Separate each selector with a plus sign
Separate each selector with a plus sign
B.
Separate each selector with a space
Separate each selector with a space
C.
Separate each selector with a comma
Separate each selector with a comma
D.
Seperate each selector with a star
Seperate each selector with a star
Question No# :
17
out of 100
Report Bug
How to apply styles to para’s having class ‘style’? (There are other elements with same class name)
A.
p
p
B.
p.style
p.style
C.
p-style
p-style
D.
.style
.style
Question No# :
18
out of 100
Report Bug
How to apply styles to all <span> element inside para’s having class ‘style’?
A.
p.style span
p.style span
B.
p.style.span
p.style.span
C.
p.style span*
p.style span*
D.
none of the above
none of the above
Question No# :
19
out of 100
Report Bug
How will you make all paragraph text color is 'RED' ?
आप सभी पैराग्राफ के टेक्स्ट को 'लाल' रंग में कैसे करेंगे ?
A.
p { color: red; }
p { color: red; }
B.
p { color:rgb(255,0,0); }
p { color:rgb(255,0,0); }
C.
p { color: rgba(255,0,0,1); }
p { color: rgba(255,0,0,1); }
D.
all of the above
all of the above
Question No# :
20
out of 100
Report Bug
What should be the value of the width attribute, so that the width of the element adjusts itself to the current width of its parent element?
चौड़ाई विशेषता का मान क्या होना चाहिए, ताकि तत्व की चौड़ाई अपने मूल तत्व की वर्तमान चौड़ाई के अनुसार समायोजित हो जाए?
A.
100rem
100rem
B.
100%
100%
C.
100vw
100vw
D.
100em
100em
Question No# :
21
out of 100
Report Bug
Which of the following will give blue color to text?
निम्नलिखित में से कौन टेक्स्ट को नीला रंग देगा?
A.
color: hsl(255, 0, 0);
color: hsl(255, 0, 0);
B.
color: hsl(0, 255, 0);
color: hsl(0, 255, 0);
C.
color: rgba(0, 0, 255, 1);
color: rgba(0, 0, 255, 1);
D.
color: rgba(0, 0, 255, 0);
color: rgba(0, 0, 255, 0);
Question No# :
22
out of 100
Report Bug
If we want to use a dotted border around an image, which css property will we use?
A.
border-color
border-color
B.
border-decoration
border-decoration
C.
border-style
border-style
D.
border-line
border-line
Question No# :
23
out of 100
Report Bug
Select the CSS property that sets the width of an element’s bottom border?
उस CSS गुण का चयन करें जो तत्व की निचली सीमा की चौड़ाई निर्धारित करता है?
A.
border-width
border-width
B.
border-bottom
border-bottom
C.
border-width-bottom
border-width-bottom
D.
border-bottom-width
border-bottom-width
Question No# :
24
out of 100
Report Bug
Select the CSS property that sets the width of an element’s bottom border?
उस सीएसएस प्रॉपर्टी का चयन करें जो किसी तत्व की निचली सीमा की चौड़ाई निर्धारित करती है?
A.
border-width
border-width
B.
border-bottom
border-bottom
C.
border-width-bottom
border-width-bottom
D.
border-bottom-width
border-bottom-width
Question No# :
25
out of 100
Report Bug
What is the correct CSS syntax for making all the <p> elements bold?
A.
p { font-weight:bold; }
p { font-weight:bold; }
B.
<p style=”font-size:bold;”>
<p style=”font-size:bold;”>
C.
p { text-size:bold; }
p { text-size:bold; }
D.
<p style=”text-size:bold;”>
<p style=”text-size:bold;”>
Question No# :
26
out of 100
Report Bug
By default Hyperlinks are displayed with an underline. How do you remove the underline from all hyperlinks by using CSS code?
A.
a { underline:none; }
a { underline:none; }
B.
a { text-decoration:no-underline; }
a { text-decoration:no-underline; }
C.
a { decoration:no-underline; }
a { decoration:no-underline; }
D.
a { text-decoration:none; }
a { text-decoration:none; }
Question No# :
27
out of 100
Report Bug
Which property is used to display the text in italics?
A.
font-family
font-family
B.
font-style
font-style
C.
font-weight
font-weight
D.
text-style
text-style
Question No# :
28
out of 100
Report Bug
How do you add a background color for all <h1> elements?
A.
all.h1 { background-color:#FFFFFF; }
all.h1 { background-color:#FFFFFF; }
B.
h1 { background-color:#FFFFFF; }
h1 { background-color:#FFFFFF; }
C.
h1.all { background-color:#FFFFFF; }
h1.all { background-color:#FFFFFF; }
D.
none of the above
none of the above
Question No# :
29
out of 100
Report Bug
Which CSS property sets a background image for an element?
किस CSS प्रॉपर्टी की मदद से किसी एलिमेंट में बैकग्राउंड इमेज लगा सकते है
A.
background
background
B.
background-attachment
background-attachment
C.
background-color
background-color
D.
background or background-image both
background और background-image both
Question No# :
30
out of 100
Report Bug
Which of the following property is used to control the scrolling of an image in the background?
पेज के बैकग्राउंड में किसी पिक्चर की स्क्रॉलिंग को नियंत्रित करने के लिए निम्नलिखित में से किस प्रॉपर्टी का उपयोग किया जाता है?
A.
background-attachment
background-attachment
B.
background
background
C.
background-repeat
background-repeat
D.
background-position
background-position
Question No# :
31
out of 100
Report Bug
Which property is used to give space between elements?
A.
padding
padding
B.
indent
indent
C.
margin
margin
D.
gap
gap
Question No# :
32
out of 100
Report Bug
What does the ‘margin:auto’ means?
A.
Set the margin equally on top and bottom of the element
Set the margin equally on top and bottom of the element
B.
Set the margin equally on left and right of the element
Set the margin equally on left and right of the element
C.
Set the margin equally on all sides of the element.
Set the margin equally on all sides of the element.
D.
It is uncertain what will happen
It is uncertain what will happen
Question No# :
33
out of 100
Report Bug
Which property is used to give space between content and border?
A.
margin
margin
B.
indent
indent
C.
padding
padding
D.
gap
gap
Question No# :
34
out of 100
Report Bug
If an element have padding values 20px for top, 30px bottom, 15px for right, 10px for left. Then which of the following is the correct way to set that padding?
A.
padding: 20px 30px 15px 10px
padding: 20px 30px 15px 10px
B.
padding: 20px 15px 30px 10px
padding: 20px 15px 30px 10px
C.
padding: 15px 30px 10px 20px
padding: 15px 30px 10px 20px
D.
padding: 30px 15px 20px 10px
padding: 30px 15px 20px 10px
Question No# :
35
out of 100
Report Bug
If an element becomes invisible but the rest of the web page layout is not affected, then what could be the property applied to that element?
A.
display: none;
display: none;
B.
visibility: hidden;
visibility: hidden;
C.
display: hidden;
display: hidden;
D.
visibility: none;
visibility: none;
Question No# :
36
out of 100
Report Bug
Which value of position always fixes the position of the element relative to the viewport?
A.
absolute
absolute
B.
fixed
fixed
C.
static
static
D.
sticky
sticky
Question No# :
37
out of 100
Report Bug
Which of the following does not count in the total width of the element in the web page?
A.
border
border
B.
margin
margin
C.
padding
padding
D.
none of the above
none of the above
Question No# :
38
out of 100
Report Bug
Which property will be used to display an image of at least 100px width?
A.
max-height
max-height
B.
max-width
max-width
C.
min-height
min-height
D.
min-width
min-width
Question No# :
39
out of 100
Report Bug
If the width of an element is exceeded by the content of the element, then which property will define the behaviour of the content?
A.
overflow-y
overflow-y
B.
overflow-x
overflow-x
C.
overflow-width
overflow-width
D.
overflow -z
overflow -z
Question No# :
40
out of 100
Report Bug
Which of the following is not a value for font-style property?
A.
normal
normal
B.
italic
italic
C.
oblique
oblique
D.
none of the above
none of the above
Question No# :
41
out of 100
Report Bug
Which of the following is not used with text-decoration property?
A.
overline
overline
B.
underline
underline
C.
line-through
line-through
D.
inline
inline
Question No# :
42
out of 100
Report Bug
Which of the following options is correct for the following statements: 1) Vertical margins add together 2) Horizontal margins add together
A.
Statement 1) is correct and 2) is incorrect
Statement 1) is correct and 2) is incorrect
B.
Statement 1) is incorrect and 2) is correct
Statement 1) is incorrect and 2) is correct
C.
Statement 1) and 2) are both correct
Statement 1) and 2) are both correct
D.
Statement 1) and 2) are both incorrect
Statement 1) and 2) are both incorrect
Question No# :
43
out of 100
Report Bug
If an element have margin values 20px for top, 20px for bottom, 30px for right, 30px for left. Then which of the following is the correct way to set the margin?
A.
margin: 20px 20px 30px 30px
margin: 20px 20px 30px 30px
B.
margin: 30px 20px
margin: 30px 20px
C.
margin: 20px 30px
margin: 20px 30px
D.
margin: 30px 30px 20px 20px
margin: 30px 30px 20px 20px
Question No# :
44
out of 100
Report Bug
If the background image is of larger or smaller size than the container width, then which line of code will resize it to make fully visible?
A.
background-size: contain;
background-size: contain;
B.
background-repeat: no-repeat;
background-repeat: no-repeat;
C.
background-size: cover;
background-size: cover;
D.
none of the above
none of the above
Question No# :
45
out of 100
Report Bug
<INPUT> is
<इनपुट> है
A.
format tag
प्रारूप टैग
B.
empty tag
खाली टैग
C.
both (A) and (B)
a और B दोनों
D.
None of the above
इनमे से कोई भी नहीं
Question No# :
46
out of 100
Report Bug
The map definition file is generally stored in
मैप डेफ़िनिशन फ़ाइल आम तौर पर स्टोर्ड होती है
A.
CGI-BIN
सीजीआई-बिन
B.
RECYCLE-BIN
रीसायकल बिन
C.
BIN
बिन
D.
All of the above
ऊपर के सभी
Question No# :
47
out of 100
Report Bug
The attribute, which define the relationship between current document and HREFed URL is
The attribute, which define the relationship between current document and HREFed URL is
A.
REL
REL
B.
URL
URL
C.
REV
REV
D.
all of these
all of these
Question No# :
48
out of 100
Report Bug
Correct HTML to left align the content inside a table cell is
A.
<tdleft>
<tdleft>
B.
<td raligh = "left" >
<td raligh = "left" >
C.
<td align = "left">
<td align = "left">
D.
<td leftalign>
<td leftalign>
Question No# :
49
out of 100
Report Bug
Meta tag appear in
A.
<HEAD>
<HEAD>
B.
<TITLE>
<TITLE>
C.
<BODY>
<BODY>
D.
<FORM>
<FORM>
Question No# :
50
out of 100
Report Bug
The text inside the <TEXTAREA> tag works like
A.
<P> formatted text
<P> formatted text
B.
<T> formatted text
<T> formatted text
C.
<PRE> formatted text
<PRE> formatted text
D.
None Of These
None Of These
Question No# :
51
out of 100
Report Bug
which tags is used to mark a beginning of paragraph.
पैराग्राफ की शुरुआत को चिह्नित करने के लिए कौन से टैग का उपयोग किया जाता है
A.
<td>
<td>
B.
<br>
<br>
C.
<P>
<P>
D.
<tr>
<tr>
Question No# :
52
out of 100
Report Bug
Which of the following is a container tag
निम्न में से कौन एक कंटेनर टैग है
A.
<select>
<select>
B.
<body>
<body>
C.
<input>
<input>
D.
Both (A) and (B)
Both (A) and (B)
Question No# :
53
out of 100
Report Bug
<DT> tag is designed to fit a single line of our web page but <DD> tag will accept a
<DT> टैग को हमारे वेब पेज की एक पंक्ति में फिट करने के लिए डिज़ाइन किया गया है लेकिन <DD> टैग स्वीकार करेगा
A.
line of text
line of text
B.
Full paragraph
Full paragraph
C.
word
word
D.
request
request
Question No# :
54
out of 100
Report Bug
A much better approach to establish the base URL is to use
आधार URL को स्थापित करने का एक बेहतर तरीका उपयोग करना है
A.
Base element
Base element
B.
Head Element
Head Element
C.
Both(A) and (B)
Both(A) and (B)
D.
None of these
None of these
Question No# :
55
out of 100
Report Bug
The tag used to create a new list item and also include a hyperlink is
एक नया सूची आइटम बनाने और एक हाइपरलिंक भी शामिल करने के लिए उपयोग किया जाने वाला टैग है
A.
<LI>
<LI>
B.
<DL>
<DL>
C.
<DD>
<DD>
D.
<UL>
<UL>
Question No# :
56
out of 100
Report Bug
Any part of the graphic that is not included in another zone is considered to be part of
ग्राफ़िक का कोई भी भाग जो किसी अन्य ज़ोन में शामिल नहीं है, का हिस्सा माना जाता है
A.
rect
रेक्ट
B.
point
पॉइंट
C.
default
डिफ़ॉल्ट
D.
polygon
पॉलिगोन
Question No# :
57
out of 100
Report Bug
Which Tag is used to define a caption in table
A.
<caption></caption>
<caption></caption>
B.
<label></label>
<label></label>
C.
<title></title>
<title></title>
D.
None of these
None of these
Question No# :
58
out of 100
Report Bug
Which attribute id used in <td> or <th> to marge 2 or more cell vertically
A.
rowspan
rowspan
B.
colspan
colspan
C.
rowmarge
rowmarge
D.
colmarge
colmarge
Question No# :
59
out of 100
Report Bug
which is correct value for 'valign' attribute of <td> tag
A.
left
left
B.
right
right
C.
top
top
D.
All of the above
All of the above
Question No# :
60
out of 100
Report Bug
which attribute is used to set the space between two cells
A.
cellpadding
cellpadding
B.
cellspacing
cellspacing
C.
cellmargin
cellmargin
D.
cellgapping
cellgapping
Question No# :
61
out of 100
Report Bug
the default text alignment for <th> tag is
the default text alignment for <th> tag is
A.
Left
Left
B.
Right
Right
C.
Center
Center
D.
Justify
Justify
Question No# :
62
out of 100
Report Bug
The default text alignment of <td> tag is
A.
Left
Left
B.
Right
Right
C.
Center
Center
D.
Justify
Justify
Question No# :
63
out of 100
Report Bug
The default vertical alignment (valign) of <td> tag is
A.
Top
Top
B.
Bottom
Bottom
C.
Center
Center
D.
Left
Left
Question No# :
64
out of 100
Report Bug
Which attribute is used to change the border color of table
A.
colorborder
colorborder
B.
border
border
C.
bgcolor
bgcolor
D.
bordercolor
bordercolor
Question No# :
65
out of 100
Report Bug
which attribute is used to set or change the background color of table
A.
background
background
B.
backgrouncolor
backgrouncolor
C.
bgcolor
bgcolor
D.
tablecolor
tablecolor
Question No# :
66
out of 100
Report Bug
bgcolor attribute us used in which tag
A.
<table>
<table>
B.
<tr>
<tr>
C.
<td>
<td>
D.
All of the above
All of the above
Question No# :
67
out of 100
Report Bug
Which one is valid attribute of <body> tag
A.
color
color
B.
text
text
C.
font
font
D.
image
image
Question No# :
68
out of 100
Report Bug
which one is invalid attribute of <body> tag
A.
bgcolor
bgcolor
B.
text
text
C.
color
color
D.
background
background
Question No# :
69
out of 100
Report Bug
which attribute is used to set the background image in <body> tag
A.
image
image
B.
backgrounimage
backgrounimage
C.
backgrounpic
backgrounpic
D.
background
background
Question No# :
70
out of 100
Report Bug
Which is the correct format to apply attribute in any tag
A.
<tagName attributeName="value">...</tagName>
<tagName attributeName="value">...</tagName>
B.
</tagName attributeName="value">...</tagName>
</tagName attributeName="value">...</tagName>
C.
<attributeName="value" tagName>...</tagName>
<attributeName="value" tagName>...</tagName>
D.
<tagName >...</ attributeName="value" tagName>
<tagName >...</ attributeName="value" tagName>
Question No# :
71
out of 100
Report Bug
Which One is the valid color code for RED in Hexadecimal color scheme
Which One is the valid color code for RED in Hexadecimal color scheme
A.
#FFFFFF
#FFFFFF
B.
#000000
#000000
C.
#FF0000
#FF0000
D.
#00FF00
#00FF00
Question No# :
72
out of 100
Report Bug
The factors you can take into consideration to improve the look and feel of the Website are:
वेबसाइट के रंगरूप को बेहतर बनाने के लिए जिन कारकों पर आप ध्यान दे सकते हैं वे हैं:
A.
Space and balance
स्पेस एंड बैलेंस
B.
Consistency
कंसिस्टेंसी
C.
Colour
कलर
D.
All of the above
ऊपर के सभी
Question No# :
73
out of 100
Report Bug
In order to establish a site, the following should be considered:
एक साइट एस्टब्लिश करने के लिए, निम्नलिखित पर विचार किया जाना चाहिए:
A.
Provide new information regularly
नियमित रूप से न्यू इंफॉर्मेशन प्रोवाइड करें
B.
Let your visitors register for e-mail notification of changes to the site
अपने विज़िटर्स को साइट में चेंजेस की ई-मेल नोटिफ़िकेशन के लिए रजिस्टर करने दें
C.
Update existing information
मौजूदा जानकारी अपडेट करें
D.
All of the above
ऊपर के सभी
Question No# :
74
out of 100
Report Bug
Host differs from desktop computers in that it can handle:
होस्ट डेस्कटॉप कंप्यूटर से अलग है जिसमें वह हैंडल कर सकता है:
A.
Multiple connections
मल्टीपल कनेक्शन
B.
Single connections
सिंगल कनेक्शन
C.
No connections
नो कनेक्शन
D.
All of the above
ऊपर के सभी
Question No# :
75
out of 100
Report Bug
When developing a home page for personal Website, the following guideline may be remembered:
पर्सनल वेबसाइट के लिए एक होम पेज डेवलप करते समय, निम्नलिखित गाइडलाइन्स को याद किया जा सकता है:
A.
Minimize download time
डाउनलोड समय कम से कम करें
B.
Include only original information, images or files
केवल ओरिजनल इन्फॉर्मेशन, इमेज या फ़ाइलें शामिल करें
C.
Provide concise information about how, when and where potential employers can contact you
संभावित नियोक्ता आपसे कैसे, कब और कहाँ संपर्क कर सकते हैं, इस बारे में संक्षिप्त जानकारी प्रदान करें
D.
All of the above
ऊपर के सभी
Question No# :
76
out of 100
Report Bug
Netscape Navigator and other browsers, such as the following, are available free on the Internet:
नेटस्केप नेविगेटर और अन्य ब्राउज़र, जैसे कि निम्नलिखित, इंटरनेट पर निःशुल्क उपलब्ध हैं:
A.
Internet Explorer
इंटरनेट एक्स्प्लोरर
B.
HotDog
हॉटडॉग
C.
Adobe PageMaker
एडोब पेजमेकर
D.
None of the above
इनमे से कोई भी नहीं
Question No# :
77
out of 100
Report Bug
Intranet has the following characteristic(s):
इंट्रानेट में निम्नलिखित विशेषताएं हैं:
A.
Improve corporate communication
कॉर्पोरेट कम्युनिकेशन में सुधार
B.
Cross-platform compatibility
क्रॉस-प्लेटफ़ॉर्म संगतता
C.
Accessible only to people within the organization
केवल ऑर्गनिज़शन के अंदर के लोगों के लिए एक्सेसिबल
D.
All of the above
ऊपर के सभी
Question No# :
78
out of 100
Report Bug
The selection of the following subnet address for all the workstations and the server while installing a proxy server was random. It was selected because it falls within the Class C subnet range and is easy to remember:
प्रॉक्सी सर्वर स्थापित करते समय सभी वर्कस्टेशन और सर्वर के लिए निम्नलिखित सबनेट पते का चयन रैंडम था। इसे इसलिए चुना गया क्योंकि यह क्लास सी सबनेट रेंज में आता है और इसे याद रखना आसान है:
A.
220.220.1.5
220.220.1.5
B.
220.111.220.220
220.111.220.220
C.
220.220.220.220
220.220.220.220
D.
None of the above
इनमे से कोई भी नहीं
Question No# :
79
out of 100
Report Bug
Find the odd one out:
विषम चुनें:
A.
Adobe PageMill and SiteMill
एडोब पेजमिल और साइटमिल
B.
NetScape Navigator Gold
नेटस्केप नेविगेटर गोल्ड
C.
Microsoft FrontPage
माइक्रोसॉफ्ट फ्रंटपेज
D.
DOS
डॉस
Question No# :
80
out of 100
Report Bug
The following is not an Internet search engine:
निम्नलिखित एक इंटरनेट सर्च इंजन नहीं है:
A.
Google
गूगल
B.
Webcrawler
वेब क्रॉलर
C.
Excite
एक्साइट
D.
Scientra ans
साइंट्रा ans
Question No# :
81
out of 100
Report Bug
The basic format for text link is:
टेक्स्ट लिंक के लिए मूल प्रारूप है:
A.
<A HREF=”URL”> The text describing link </A>
<A HREF="URL"> लिंक का डिस्क्राइब करने वाला टेक्स्ट </A>
B.
<HREF = “URL”> The text describing link </A>
<HREF = “URL”> लिंक का डिस्क्राइब करने वाला टेक्स्ट </A>
C.
<HREF = “URL”> </A>
<HREF = “URL”> </A>
D.
None of the above
इनमे से कोई भी नहीं
Question No# :
82
out of 100
Report Bug
In order to create an ordered list, we can use the tag:
ऑर्डर की गई सूची बनाने के लिए, हम टैग का उपयोग कर सकते हैं:
A.
<UL> </UL>
<UL> </UL>
B.
<P> </P>
<P> </P>
C.
<A> </A>
<A> </A>
D.
<OL> </OL>
<OL> </OL>
Question No# :
83
out of 100
Report Bug
The <Address> tag is similar to:
<पता> टैग समान है:
A.
Italics and bold facing
इटैलिक और बोल्ड फेसिंग
B.
Emphasis or bold facing
एम्फेसिस या बोल्ड फेसिंग
C.
Color alignment
कलर एलाइनमेंट
D.
Italics or emphasis
इटैलिक या एम्फेसिस
Question No# :
84
out of 100
Report Bug
HTML tags are recognized by:
HTML टैग किसके द्वारा पहचाने जाते हैं:
A.
< >
< >
B.
<< >>
<< >>
C.
<= =>
<= =>
D.
none of the above
इनमे से कोई भी नहीं
Question No# :
85
out of 100
Report Bug
An HTML file starts with the tag:
एक HTML फ़ाइल टैग से शुरू होती है:
A.
<TITLE>
<TITLE>
B.
<BODY>
<BODY>
C.
<BODY>
<BODY>
D.
<HTML>
<HTML>
Question No# :
86
out of 100
Report Bug
Which of the following is used as a dimension in frames?
निम्नलिखित में से किसका प्रयोग फ्रेम में आयाम के रूप में किया जाता है?
A.
Relative
रिश्तेदार
B.
Absolute
पूर्ण
C.
Percentage
प्रतिशत
D.
All of the above
ऊपर के सभी
Question No# :
87
out of 100
Report Bug
The attributes of FRAMESET elements are:
FRAMESET तत्वों की विशेषताएँ हैं:
A.
ROWS and COLS
रौस एंड कॉल्स
B.
MARGINHEIGHT and MARGINWIDTH
मार्जिनहाइट और मार्जिनविड्थ
C.
Both (a) and (b) above
दोनों (ए) और (बी) ऊपर
D.
None of the above
इनमे से कोई भी नहीं
Question No# :
88
out of 100
Report Bug
Name of the frame must begin with:
फ्रेम का नाम इसके साथ शुरू होना चाहिए:
A.
Only numerals
केवल अंक
B.
Special characters
विशेष वर्ण
C.
Alphanumeric characters
अक्षरांकीय वर्ण
D.
All of the above
ऊपर के सभी
Question No# :
89
out of 100
Report Bug
If there is not enough space to display all the contents in a frame, we have to use:
यदि फ्रेम में सभी सामग्री को प्रदर्शित करने के लिए पर्याप्त जगह नहीं है, तो हमें इसका उपयोग करना होगा:
A.
Another frame
एक और फ्रेम
B.
Small front size
सामने का छोटा आकार
C.
Scrollbar
स्क्रॉल बार
D.
Not possible
संभव नहीं
Question No# :
90
out of 100
Report Bug
Find the only statement in the following that is correct.
निम्नलिखित में से केवल वही कथन ज्ञात कीजिए जो सही है।
A.
JavaScript interpreter processes programs written in Java.
जावास्क्रिप्ट इन्टरप्रेटर जावा में लिखे गए प्रोग्राम्स को प्रोसेस करता है।
B.
JavaScript interpreter processes commands in a script written in JavaScript.
जावास्क्रिप्ट इन्टरप्रेटर जावास्क्रिप्ट में लिखी गई स्क्रिप्ट में कमांड को प्रोसेस करता है।
C.
Java and JavaScript are almost similar
जावा और जावास्क्रिप्ट लगभग समान हैं
D.
JavaScript cannot be embedded in HTML.
जावास्क्रिप्ट को HTML में एम्बेड नहीं किया जा सकता है।
Question No# :
91
out of 100
Report Bug
Which of the following is a notation that uses a name in angle brackets to annotate a piece of Web page information ?
निम्नलिखित में से कौन सा एक नोटेशन है जो वेब पेज की जानकारी के एक पीस को एनोटेट करने के लिए एंगल ब्रैकेट्स में एक नाम का यूज़ करता है?
A.
HTML
एचटीएमएल
B.
Tag
टैग
C.
Attribute
एट्रिब्यूट
D.
Markup Language
मार्कअप लैंग्वेज
Question No# :
92
out of 100
Report Bug
Which of the following is part of an HTML tag and provides additional information about the element?
निम्नलिखित में से कौन एक HTML टैग का पार्ट है और एलिमेंट के बारे में अतिरिक्त जानकारी प्रदान करता है?
A.
Attribute
एट्रिब्यूट
B.
Cookie
कुकी
C.
Ordered List
ऑर्डर्ड लिस्ट
D.
Hypertext
हाइपरटेक्स्ट
Question No# :
93
out of 100
Report Bug
Which of the following has no predefined set of tags?
निम्नलिखित में से किसके पास टैग का कोई पूर्वनिर्धारित सेट नहीं है?
A.
Scriptlet
स्क्रिप्टलेट
B.
Applet
एप्लेट
C.
XML
एक्सएमएल
D.
Java Server page
जावा सर्वर पेज
Question No# :
94
out of 100
Report Bug
The script which is designed to receive value from the Web users is:
वेब उपयोगकर्ताओं से मूल्य प्राप्त करने के लिए डिज़ाइन की गई स्क्रिप्ट है:
A.
WebScript
वेबस्क्रिप्ट
B.
JavaScript
जावास्क्रिप्ट
C.
CGIScript
सीजीआईस्क्रिप्ट
D.
All of the above
ऊपर के सभी
Question No# :
95
out of 100
Report Bug
VBScript can perform:
वीबीस्क्रिप्ट परफ़ॉर्म कर सकता है:
A.
Calculations on data
डेटा पर कॅल्क्युलेशन
B.
Create 3-D animation effects
3-डी एनिमेशन इफ़ेक्ट क्रिएट करे
C.
Presentation of fixed information.
फिक्स्ड इनफार्मेशन का प्रेजेंटेशन
D.
All of the above
ऊपर के सभी
Question No# :
96
out of 100
Report Bug
The key difference between JavaScript and Java is
जावास्क्रिप्ट और जावा के बीच महत्वपूर्ण अंतर है
A.
JavaScript can be combined directly with HTML.
जावास्क्रिप्ट को सीधे HTML के साथ जोड़ा जा सकता है।
B.
The JavaScript language structure is simpler than that of Java.
जावा की तुलना में जावास्क्रिप्ट लैंग्वेज स्ट्रक्चर सरल है।
C.
The JavaScript interpreter is built into a Web browser.
जावास्क्रिप्ट दुभाषिया एक वेब ब्राउज़र में बनाया गया है।
D.
All of the above
ऊपर के सभी
Question No# :
97
out of 100
Report Bug
Possible problems with JavaScript can be:
जावास्क्रिप्ट के साथ संभावित समस्याएं हो सकती हैं:
A.
Security
सिक्योरिटी
B.
Limited graphics and multimedia capabilities
लिमिटेड ग्राफिक्स और मल्टीमीडिया कैपबिलिटी
C.
Source code accessible
सोर्स कोड एक्सेसिबल
D.
All of the above
ऊपर के सभी
Question No# :
98
out of 100
Report Bug
What are CGI scripts?
सीजीआई स्क्रिप्ट क्या हैं?
A.
Browser add-in programs
ब्राउज़र ऐड-इन प्रोग्राम
B.
Programs that extend the capabilities of a server
प्रोग्राम जो सर्वर की कैपबिलिटी को एक्सटेंड करते हैं
C.
Both a and b above
ऊपर ए और बी दोनों
D.
None of the above
इनमे से कोई भी नहीं
Question No# :
99
out of 100
Report Bug
Which of the following is the CGI method of invoking a CGI program?
निम्नलिखित में से कौन सी सीजीआई प्रोग्राम को लागू करने की सीजीआई मेथड है?
A.
GET method
GET मेथड
B.
HEAD method
HEAD मेथड
C.
Both a and b above
ऊपर ए और बी दोनों
D.
None of the above
इनमे से कोई भी नहीं
Question No# :
100
out of 100
Report Bug
Find the only statement in the following that is correct:
निम्नलिखित में से केवल वही कथन ज्ञात कीजिए जो सही है:
A.
JavaScript interpreter processes programs written in Java
जावास्क्रिप्ट इंटरप्रेटर जावा में लिखे गए प्रोग्राम को प्रोसेस करता है
B.
JavaScript interpreter processes the commands in a Script written in JavaScript
जावास्क्रिप्ट इंटरप्रेटर जावास्क्रिप्ट में लिखी गई स्क्रिप्ट में कमांड को प्रोसेस करता है
C.
Java and JavaScript are almost similar
जावा और जावास्क्रिप्ट लगभग समान हैं
D.
JavaScript cannot be embedded in HTML
जावास्क्रिप्ट को HTML में एम्बेड नहीं किया जा सकता
Latest Current Affairs 2024
Online Exam Quiz for One day Exam
Online Typing Test
CCC Online Test
Python Programming Tutorials
Best Computer Training Institute in Prayagraj (Allahabad)
O Level NIELIT Study material and Quiz
Bank SSC Railway TET UPTET Question Bank
career counselling in allahabad
Best Website and Software Company in Allahabad