803 Web Application MS
803 Web Application MS
1
Source Material Unit/ Page no.
Q. No. QUESTION (NCERT/PSSCIVE/ Chap. of source Marks
CBSE Study Material) No. material
Q. 4 Answer any 5 out of the given 6 questions (1 x 5 = 5 marks)
i. It is a program that plays a variety of sound CBSE Study Material 1 42 1
files.
ii. b sound CBSE Study Material 2 35 1
iii. b. Brendan Eich CBSE Study Material 3 54 1
iv. "text/ javascript" CBSE Study Material 3 57 1
v. var percent = 74.75 CBSE Study Material 3 57 1
vi. console.log("Good Morning "); CBSE Study Material 3 58 1
Q. 5 Answer any 5 out of the given 6 questions (1 x 5 = 5 marks)
i. c. ["Pen", "Eraser", "Ruler", “Sharpener”, CBSE Study Material 3 71 1
“Pencil”]
ii. 4 times CBSE Study Material 3 112 1
iii. c. script tags CBSE Study Material 3 60 1
iv. 23 CBSE Study Material 3 85 1
v. 3 3` CBSE Study Material 3 63 1
vi. a. FrontPage Server Extensions CBSE Study Material 4 117 1
b. Internet Information Services
Q. 6 Answer any 5 out of the given 6 questions (1 x 5 = 5 marks)
i. Search Engine Optimization CBSE Study Material 4 125 1
ii. a. Update from Source CBSE Study Material 4 118 1
iii. b. visual design and code CBSE Study Material 4 116 1
iv. b. Dynamic Web Template CBSE Study Material 4 120 1
v. c. Submit CBSE Study Material 4 128 1
vi. META CBSE Study Material 4 126 1
2
Source Material Unit/ Page no.
Q.
QUESTION (NCERT/PSSCIVE/ Chap. of source Marks
No.
CBSE Study Material) No. material
3
Source Material Unit/ Page no.
Q.
QUESTION (NCERT/PSSCIVE/ Chap. of source Marks
No.
CBSE Study Material) No. material
Q. 15 function rval(num1, num2) CBSE Study Material 4 91-92 2
{ var m = num1 + num2 ;
document.write(Math.round(m));
document.write(Math.sqrt(m));
}
Q. 16 While static web pages are good enough for CBSE Study Material 3 127 2
creating basic web sites, you need to learn and use
technologies such as ASP, PHP, etc. for creating
dynamic websites. Dynamic Websites allow visitors
to search and locate information (such as a search
feature of search engines or database listing),
submit information (such as feedback, rating,
voting) etc.
Answer any 2 out of the given 3 questions in 30– 50 words each (3 x 2 = 6 marks)
Q. 17 Advantages of Splitting video clips are : CBSE Study Material 1 12-13 3
-it can be used to separate unwanted part from
the middle of the clip.
- One can rearrange different parts of a video clip
using splitting.
Yes, two video clips can be combined even after
splitting but the contiguous files only can be
combined. non- contiguous clips cannot be
combined.
Q. 18 Ans : Three applications are : CBSE Study Material 3 55 3
i. Developing Multimedia Applications The users
can use JavaScript to add multimedia elements.
With JavaScript you can show, hide, change, resize
images and create images rollovers.
ii. Create Pages Dynamically : JavaScript can
produce pages that are customized to the user.
iii. Interact with the User : JavaScript can do some
processing of forms and can validate user input.
Q. 19 a. Add-ins : Add-ins extends the capability of the CBSE Study Material 4 115 3
main program by adding enhanced custom
commands and specialized features.
b. Snippets : Snippets are pieces of programs re-
used by most developers. Snippets are useful as
you can keep reusing the code created many times 120
across multiple web pages or web sites saving
enormous amount of time and effort.
C. IntelliSense is a feature that automatically 114
provides you a list of codes and attributes as a
popup when you work in the code view mode.
Answer any 3 out of the given 5 questions in 50– 80 words each (4 x 3 = 12 marks)
Q. 20 a) Trimming a part of a movie means to hide a part CBSE Study Material 1 19 4
of a video clip. . When we trim a clip, the trimmed
part of the clip is not actually removed from the
source file; it's just hidden so the trimmed part
doesn't appear in our project or published movie
4
Source Material Unit/ Page no.
Q.
QUESTION (NCERT/PSSCIVE/ Chap. of source Marks
No.
CBSE Study Material) No. material
b) The preview monitor enables us to view
individual clips or an entire project. By using the
preview monitor, we can preview our project 14
before publishing it as a movie. We can use the
buttons underneath the preview monitor to play
or pause a clip, or to advance or rewind a clip
frame-by-frame.
Q. 22 a. The "event handler" is a command that is used CBSE Study Material 3 107 4
to specify actions in response to an event. for
example:
onMouseOut - occurs when you point away from
an object onSubmit - occurs when you submit a
form
b.
<html> <body> <script> 93
var r1= Math.random();
r1=Math.round(r1*100);
if (r1%2== 0)
document.write(r1+" is Even");
else
document.write(r1+" is Odd") ;
</script> </body> </html>