327 Web Applications
327 Web Applications
Roll No.
WEB APPLICATIONS
Time allowed : 3 hours Maximum Marks : 60
General Instructions :
(i) Please read the instructions carefully.
(ii) This question paper consists of 24 questions, in two Sections : Section A
and Section B.
(iii) Section A has Objective type questions, whereas Section B contains
Subjective type questions.
(iv) Out of the given (6 + 18 =) 24 questions, a candidate has to answer
(6 + 11 =) 17 questions in the allotted (maximum) time of 3 hours.
(v) All questions of a particular section must be attempted in the correct
order.
327 Page 2 of 7
(ii) _______ is a free movie editing tool by Atomic Learning which is
designed to give teachers, and students the ability to enter short titles
and descriptions, complete with planned length and edited order.
(iii) A file with an extension .jpeg indicates that it is a/an _______ file.
(iv) _______ is a type of image format that does not consist of pixels, but
objects such as curves, shades and characters.
(v) Identify the type of operator in the following statement :
a! = b
(a) Arithmetic (b) Comparison
(c) Logical (d) Assignment
(vi) Consider the following code :
<param name = "controller" value = "False"/>
On execution of the above code, is the object controller displayed in
the browser ?
(vii) During web designing, in _________ mode, the Intellisense feature
provides you a list of codes and attributes as a pop up.
(a) Code view
(b) Design view
(b) GUI view
3. Answer any 6 out of the given 7 questions. 6 1=6
(i) The name of actors is ideally displayed at the end. While making a
video, are these added as copyright or credit ?
(ii) ______ is the extension of a standard Macintosh image file.
(a) pict (b) .docx
(c) .xls (d) .wav
(iii) __________ tag can be used only in Internet Explorer to include an
audio file.
(a) <BACKGROUND> (b) <BACKGROUND SOUND>
(c) <BGSOUND> (d) <SOUND>
(iv) __________ feature is used to transfer contents of your entire website
to a remote computer.
(v) If a variable is declared without assigning any value, what is its type
(datatype) ?
(a) Float (b) Undefined
(c) Integer (d) String
(vi) Write any one advantage of DWT.
(vii) Fill in the blank :
__________ is the process that affects the website visibility or ranking
while displaying search results.
327 Page 3 of 7 P.T.O.
4. Answer any 5 out of the given 6 questions. 5 1=5
(i) ________ is the area of Windows Movie Maker which enables to view
individual clips or entire project before publishing it as movie ?
(a) Timeline (b) Preview Monitor
(c) Storyboard (d) Control Buttons
(ii) ________ is a popular search engine.
(a) Safari (b) Linux
(c) Android (d) JavaScript
(iii) GIF is a ________ image format. (lossless/lossy)
(iv) What is the output of the following code snippet ?
document.write (Math.round (5.319))
(v) What is the use of isFinite() in JavaScript ?
(vi) Name any one desktop publishing program.
5. Answer any 5 out of the given 6 questions. 5 1=5
(i) Which pane in Windows Movie Maker displays the folders containing
clips ?
(a) Tasks (b) Collections
(c) Contents (d) Menu Bar
(ii) The te _______ multimedia.
(iii) If A=10, B=2 C=4, then what will be the output of the following
JavaScript statements ?
if ((A>B)&&(B>C))
{ document.write("Hi")
}
else
{
document.write("Bye")
}
(iii) Name any one video streaming application that allows video
embedment option.
(v) Which method in JavaScript allows to join all elements of an array
into a string ?
(vi) Name any one Page Transition effect that can be used to apply on
web pages.
327 Page 4 of 7
6. Answer any 5 out of the given 6 questions. 5 1=5
(i) How can you select non-consecutive clips in Windows Movie
Maker/Video Editor ?
(a) Press and hold Ctrl key while selecting clips
(b) Press and hold Shift key while selecting clips
(c) Press and hold Alt key while selecting clips
(d) Press and hold Ctrl+Shift key while selecting clips
Fill in the blank.
(ii) A _______ image format is composed of a field of pixels, each
characterised by a colour.
(a) Vector (b) Raster
(c) Coloured (d) Black and White
(iii) Consider the following declaration in JavaScript :
varTxt= "Life is Beautiful"
Write a statement that will display the string in uppercase.
(iv) Is .avi an image file format ?
(v) Jared wants to generate a combined list of fruits and vegetables. She
has two arrays :
var fruits = ["Guava", "Apple", "Mango"]
var vegetables = ["Spinach", "French beans"].
Which inbuilt JavaScript function can be used to join the two arrays ?
(vi) To know the size occupied by files in a website, open the website and
select View Site _______ option.
Section B
(Subjective Type Questions) (30 Marks)
Answer any 3 questions out of the given 5 questions on employability skills.
Answer each question in 20 30 words. 3 2=6
7. Why should goals be specific and measurable ?
8. How is personality different from personality traits ?
9. How is a formula bar different from a name box in a spreadsheet ?
10. List any two environmental barriers that are common to all the types of
entrepreneurs.
11. How is an industrial entrepreneur different from a technical entrepreneur ?
14. Write f
17. Name and explain any two views of Windows Movie Maker in which a
project can be created.
18. How does a search engine work ? Name any two components of a web page
that the search engines uses to create an index.
20. Partho Das wants to create a movie using Windows Movie Maker.
He has saved some audio, video, and image files on his computer.
(a) Write the steps to import these files into Windows Movie Maker.
(b) Can he combine two contiguous clips on storyboard ?
21. Look at the following HTML code and answer the questions that follow :
<EMBED SRC="Mymusic.mid" AUTOSTART=FALSE LOOP=FALSE
WIDTH=145 HEIGHT=55 ALIGN="CENTER">
</EMBED>
(a) What does <EMBED> do ?
(b) What does SRC signify ?
(c) How many times will the audio be played ? Why ?
(d) Will the sound play automatically? Why/Why not ?
327 Page 6 of 7
22. Write a JavaScript function, checkEvenOdd() that accepts a number,
checks whether it is even or odd and displays the appropriate message.
23. Venkateshwari is creating a program using JavaScript. Help her to write
commands to perform the following tasks :
(a) She wants to display the current date and time on the web page.
Write an internal script to complete the task.
(b) To display even numbers between 10 and 50, Venkateshwari has
written the following code :
for (var i=10; i > = 50, i++)
{
document.write(i)
}
She is not getting the correct output. Rewrite the correct code and
underline the changes made.