NEW
Font size
WorksheetsWeb Designing
Total questions: 41
Worksheet time: 21mins
GIF does not support background transparency.
True
False
Which organization defines the web standard?
Microsoft Corporation
IBM Corporation
Apple Inc.
World Wide Web Consortium
File Transfer Protocol (FTP) is a standard Internet protocol for exchanging files between computers on the Internet.
True
false
If R=255, G=0, B=0, the color will be black.
True
False
In order to provide web service to browsers of client computers, ___________ should be installed on server machine.
HTTP Server / Web Server
Windows Server
Linux Server
WAMP Server
A 6 digit Hex color (#FF9966) defines values of Red, Blue and Green in which order?
#RRGGBB
#BBGGRR
#BBRRGG
#RGBRGB
What is/are correct regards to e-mail addresses?
can never contain spaces
must contain "@" symbol
are case insensitive
All of the above
'How to define the link should open in new page in HTML?
<a href = “http://www.mcqsets.com/” target = “blank”>Click Here</a>
<a href = “http://www.mcqsets.com/” target = “_blank”> Click Here </a>
<a href = “http://www.mcqsets.com/” target = “#blank”> Click Here </a>
<a href = “http://www.mcqsets.com/” target = “@blank”> Click Here </a>
'CSS is an acronym for
Cascading Style Sheet
Costume Style Sheet
Cascading System Style
None of the Above
'Which tag is used to display Preformatted texts?
<pre> … </ pre>
<prefor> … </ prefor>
<pre text> … </ pre text>
<pre format> … </ pre format>
________ keyword is used to declare variables in JavaScript.
Var
Dim
String
Integer
Valid mouse event is
onMouseLeaveMe
onMousewithinMe
onmousemove
onmousepress
'"1" + 2 + "3" + 4;
What does the above statement evaluate to?
10
1234
37
None
document. write("hello “) displays the message box with the word “hello”.
TRUE
FALSE
How to specify the color of the hypertext links with JavaScript?
document.linkColor="#00FF00";
document.LColor="#00FF00";
document.LinkC="#00FF00";
document.hyperTextLink="#00FF00";
Which of the following best describes JavaScript?
a low-level programming language
a scripting language precompiled in the browser
a compiled scripting language
an object-oriented scripting language
Which input type defines a Date control (no time zone)?
week
year
Date
week, year, Date
Which of the following is not form controls elements in HTML5?
url
search
money
<colgroup> is a new element of HTML5?
TRUE
FALSE
To play video we must have to use some plug-in in HTML 5
True
FALSE
HTML is governed by
The Google Corporation
The Microsoft Corporation
The United Nations committee on Telecommunications
The World Wide Web Consortium
Choose the correct answer about HTML5: a. Reduce the need for external plug-in (like Flash). b. Uses more markups to replace scripting language
a-True, b-False
a-True, b-True
a-False, b-False
a-False, b-True
'figure>
<img src="myimage.jpg" alt="My image">
<figcaption>
<p>This is my self portrait.</p>
</figcaption>
</figure>
Is the above HTML valid?
Yes
No
CSS comments are inserted inside which of following?
//...................//
<!..................>
/*..................*/
/......................../
Multiple Column Layout is an CSS3 modules
TRUE
FALSE
CSS3 adds an important new capability that allows you to set styles based on common interface properties such as width, height, aspect ratio, and number of available colors.
True
FALSE
div
{box-shadow: 10px 10px 5px #888888;
}
------- this css will add a rounded corners to a div element
TRUE
FALSE
box-shadow: 5px 5px 5px #888; What does the third value in the declaration specify?
X off set
Y offset
Blur radius
Margin
'ul {
MaRGin: 10px;
}
Are CSS property names case-sensitive?
True
False
What does 'a' stand for in RGBa?
Alt-transparency
Alpha
Alphabetic
Alphanumberic
A ____ is a device used to convert an image into a digital form for storage, retrieval, or other electronic purposes.
digital camera
fax machine
scanner
Photoshop
'<head>
<link href="main1.css" rel="stylesheet">
<script>
alert('Hello World');
</script>
</head>
Does main1.css have to be downloaded and parsed before Hello World is alerted?
Yes
No
'Which of the following property is used to control the scrolling of an image in the background?
background-attachment
background
background-repeat
background-position
'Which of the following property is used to align the text of a document?
text-indent
text-align
text-decoration
text-transform
'Which ways is correct to write a CSS?
p {color:red; text-align:center};
p {color:red; text-align:center}
p {color:red; text-align:center;}
p (color:red;text-align:center;)
Which HTML element is used to define the structure of a navigation menu?
<nav>
<menu>
<ul>
<header>
What is the purpose of the 'alt' attribute in an <img> tag?
To set the image height
To define the image width
To provide alternative text for the image
To specify the image source
Which CSS property is used to change the font of an element?
font-style
font-size
font-family
font-weight
Which of the following is a valid way to include an external JavaScript file in an HTML document?
<script src="script.js"></script>
<import src="script.js">
<link href="script.js" rel="script">
<js src="script.js"></js>
What does the 'z-index' property in CSS control?
The stacking order of elements
The opacity of an element
The size of an element
The visibility of an element
Which HTML element is used to define a footer for a document or section?
<footer>
<bottom>
<section>
<aside>
