Class - Xi - Multimedia and Web Technology - Ms - Final Term Examination
Class - Xi - Multimedia and Web Technology - Ms - Final Term Examination
(1½ mark for correct use of <OL> and <UL> tags in proper nested order)
(1 mark for correct use of <A> tag for creating links)
(1 mark making table correctly)
(½ mark for correct display of bottom message)
16. <HTML> 6
<head><TITLE>First page</TITLE></head> ½
<BODY>
<H7>WEB PAGE</H7>
<P>This is my first web page.</P>
<HR size=50 color=”red”>
<ul type=”1” starting=3 >
<li>JavaScript
<li>VBScript
<ul>
</HTML>
</BODY>
17. There are three ways of inserting a style sheet: 1
External style sheet:An external style sheet can be written in any text editor. The file should
not contain any html tags. The style sheet file must be saved with a .css extension.
Inte rnal style sheet: An internal style sheet may be used if one single page has a unique 1
style.
Internal styles are defined within the <style> element, inside the <head> section of an
HTML page
Inline style :An inline style may be used to apply a unique style for a single element.To use 1
inline styles, add the style attribute to the relevant element. The style attribute can contain any
CSS property.
18. a) H1{text-decoration:”line through”} 1
b) H1{background-color : yellow }
H1{border-style : dotted }
c) H1{letter-spacing:”3pt”}
19. The getHours() method returns the hour (from 0 to 23) of the specified 1
date and time.
20. The post increment operator (++) increments numbers. 1
The pre- increment operator is placed directly before the variable.The operation begins by
incrementing the variable by 1. 1
var x =10;
Page 2 of 4
x++; // x is 10
++x; //x is 12
21. Variables are named memory locations that can be used for storing data. 1
Var x=10;
Var y=”xyz”; 1
Var flag=true;
22.“apple”, “orange”, “kiwi” 1
5
(“apple”, “orange”, “kiwi” “banana”,“pear” ,“cherry”, “blue b berry”, “Raspberry”)
(“apple”$“orange”$ “kiwi” $“banana”$“pear” $“cherry”$ “blue berry”$ “Raspberry”)
function myFunction(x, y)
{
if (y === undefined)
{
y = 0;
}
}
28. a) Write: Writes HTML expressions or javascript code to a document.Writeln: Sames as 1
Write()nBut adds a newline character after each statement.
b)
i. 6 1/
ii. 500
2
29.Layers provide a powerful method of working on one element of an image without disturbing the 1
others. 1
Masks are used to change one part of an image without affecting the rest of the image.
30.JPEG is a lossy file format, but it is widely used for distribution via the web or email because it gives 1
enough detail while being very efficient. GIF and PNG are both lossless formats, but they can still be k
very efficient for images with large areas that are all one colour.
31.Burn tool 1
32.Aiff, midi/mp3 1
Page 3 of 4
Page 4 of 4