You are on page 1of 11

Series OSR Code No.

89
Candidates must write the Code on the
Roll No.
title page of the answer-book.

Please check that this question paper contains 11 printed pages.


Code number given on the right hand side of the question paper should be
written on the title page of the answer-book by the candidate.
Please check that this question paper contains 7 questions.
Please write down the Serial Number of the question before
attempting it.
15 minutes time has been allotted to read this question paper. The question
paper will be distributed at 10.15 a.m. From 10.15 a.m. to 10.30 a.m., the
students will read the question paper only and will not write any answer on the
answer-book during this period.

MULTIMEDIA AND WEB TECHNOLOGY


Time allowed : 3 hours Maximum Marks : 70

Note : (i) All questions are compulsory.


(ii) Answer the questions after carefully reading the text.

1. (a) Observe the table TableApp of a Database named Application


given below and answer the questions that follow : 3

(i) Name the view in which the table is shown Design or


Datasheet.
(ii) Can this view be used to add a new record to the above table ?

89 1 P.T.O.
(iii) Write one special feature of the AutoNumber Datatype used
above.
(iv) What does the key symbol next to the AppID field name
designate ?
(v) What is the degree of the above table ?
(vi) A new field named AppDescription is added to the above table
that will contain a detailed description about the Application
in about 2000 characters. Name the appropriate data type
that should be used for this field.

(b) The table CompFest is used to maintain data related to the


inter-school events organized by a school. Study the table and
answer the following questions :

Event_ID Event_Name Event_Date Event_Venue Event_Time

CF100 Inauguration 04-04-2014 Auditorium 09:00:00


CF101 Digital Masters 04-04-2014 Computer Lab 10:00:00
CF103 Comp-O-Quiz 04-04-2014 Auditorium 10:00:00
CF104 SketchIt 04-04-2014 Computer Lab 12:30:00

(i) Name the two fields that can act as candidate keys in the
table CompFest. 2
(ii) Suggest the data type that should be used for the field
Event_Time in the table EVENTS. 1

(c) Ashmit is preparing for his IIT exams and wants to be able to
watch his favourite TV serials during his free time. He also
wishes to be able to use interactive features like pause and
rewind. Which of the following modern technologies will help him
avail this service ? 1
(i) Video Telephony
(ii) Video on Demand
(iii) Video Conferencing

89 2
(d) Which image file format out of GIF, JPEG and BMP is the most
suitable for storing animations with transparent backgrounds ? 1

(e) What is the use of publishing a flash movie ? 2

2. Questions below are based on Macromedia Flash :

(a) Study the figure given below and answer the questions that
follow :

Timeline

55 12.0 fps 4.5s

(i) What is the usage of the area labelled as A in the above


figure ? 1
(ii) What do the arrows in the timeline area indicate ? 1
(iii) Given the above settings, which layer contents will not be
displayed on the stage ? 1
(iv) What is the frame rate of the above movie ? 1

(b) Explain the term morphing with the help of a suitable example. 2

(c) Observe the image given below and do as directed : 4

The graphic on the left hand side shows the position and size
for frame 1.
The graphic on the right hand side shows the position and
size for frame 20.

Write the procedure and property settings for animating the above
scenario.

89 3 P.T.O.
3. Answer the following questions based on HTML :
(a) Explain the difference between the HTML commands
<A HREF=#TOP> and <A NAME= TOP> 2
(b) Write the HTML code to generate the web page in the format
shown : 8

Consider the following points while writing the HTML code :


(i) The title of the web page is Google Apps.
(ii) Text style of the page is Trebuchet MS.
(iii) The image used in the heading is google.png and that used in
the table is google1.png.
(iv) The table has a red coloured border that is 5 pixels thick.
(v) Create the given list with appropriate bullet type.

89 4
(vi) Use the concept of spanning for placing the image in the table
across rows.
(vii) The link at the bottom is an e-mail link to the address
google@gmail.com.

4. Answer the following based on ASP :

(a) In which of the following situation(s) is it essential to use a


server side script such as ASP ? Justify. 2
(i) Validation of data entered by the user in a form
(ii) Showing data stored in a database on the server
(iii) Showing the number of visitors to a website
(iv) Increasing the size of an image when the cursor is brought
over it

(b) Explain the use of the Flush and Redirect methods of the
response object. 2

(c) Name the object or component used for the following : 3


(i) To access the value stored in a cookie
(ii) To show banner advertisements on a web page
(iii) To obtain information about an error condition that has
occurred in the script

(d) Give the output of the following statements : 3


(i) Response.write((12+5-3)\4)
(ii) Response.write(LEN("Hello") * 4)
(iii) Response.write(STRREVERSE(MONTHNAME(5)))

5. Answer the following based on ASP :

(a) What is a recordSet ? 1

(b) Name the method used for : 2


(i) Moving the cursor to the last record in the recordset
(ii) Adding a new record to the database

89 5 P.T.O.
(c) Study the code given below and answer the questions that
follow :
Content.txt

%% #5 // Primary Section
<B> Primary Section</B> is celebrating Grandparents day on 16th
August 2014. All grandparents are welcome.
%% #3//Middle Section
<I> Workshops on First Aid to be in the first period every Friday. All
students from class VI to VIII must attend.
%% #2//Senior Section
<h2>CBSE Registration of students for class XI has been completed.

ContentRot.asp

<HTML>
<HEAD><TITLE> Parents Corner</TITLE></HEAD>
<H1 align = center>Important Notices</H1>
<%
Set myContRot= CreateObject("MSWC.Contentrotator")
Response.write(myContRot.Choose("Content.txt") %>
</BODY>

(i) The script in the file ContentRot.asp is used to display the


content from the content.txt file. Remove the errors in the
code given above so as to get the desired result. 1
(ii) Which of the contents would be displayed most often and
why ? 1
(iii) If a new entry is to be displayed using the Content Rotator to
display an image named "Earthday.jpg" then give the lines
that need to be added to the file content.txt. 1

89 6
(d) Study the code given below :

<%

Set FileObj=Server.CreateObject(____________________)

Set newsfile= FileObj._______("d:\news\Headlines.txt")

Do WHILE NOT newsfile._________________

Response.Write(newsfile.Readline)

Response.Write("<BR>")

LOOP

newsfile.________________

%>

(i) Fill in the blanks to complete the above code fragment that
reads the text in the file Headlines.txt and displays the same
on the web page. 2

(ii) Rewrite the code for the loop using DO UNTIL instead of
DO WHILE. 1

(iii) How would the output of the above script change if we used
the Read(1) method instead of Readline. 1

6. Answer the following questions based on VBSCRIPT :

(a) Explain the concept of Implicit and Explicit variable declaration


with the help of suitable examples. 2

89 7 P.T.O.
(b) Study the code given below and answer the questions that
follow :

<HTML>
<HEAD>
<SCRIPT LANGUAGE="VBScript">
Sub Display(Tag,Message) REM Beginning of Subroutine
Document.Write("<" & Tag & ">")
Document.Write(Message)
Document.Write("</" & Tag &">")
End Sub
</SCRIPT>
</HEAD>
<BODY>
<SCRIPT LANGUAGE="VBScript">
Display "H1", "Hello!"
Call Display("H3", "Have a nice day.")
</SCRIPT>
</BODY></HTML>

(i) Identify and name the two arguments used in the above code
segment. 1

(ii) What is the usage of the REM command in the above code
segment ? What is the alternate way of achieving the same
effect in VBScript ? 1

(iii) How many times will the subroutine Display be executed ? 1

(iv) What will be the output of the above code ? 1

89 8
(c) Write the HTML code to generate the following form : 4

Write the VBscript code to display the message Number is odd if


the number is odd or Number is even otherwise on the click of the
CHECK button. The message should be displayed on the webpage.

7. (a) Name any one open source operating system. 1

(b) Dhirena wants to transfer a document stored on her mobile to


her sisters mobile. They both are sitting in different rooms of
their house. Choose the kind of wireless communication media
that can be used for this purpose : 1

(i) Infrared

(ii) Bluetooth

(iii) Satellite

(c) Soma has entered a computer network without having


authorized access to check the security of her office. On the other
hand, Promila has entered a computer network without having
authorized access with the intent of stealing documents. Who
among them will be called a hacker and who will be known as a
cracker ? Also mention who among them is doing an ethical job ? 2

89 9 P.T.O.
(d) Differentiate between E-mail and SMS. 2

(e) FreeApp Company is in the process of restructuring of their


complex situated at Cyber City, Gurgaon. The new complex
premises has 3 wings as shown in the diagram below :

Approximate distances between these offices are as follows :

Place From Place To Distance

Wing A Wing B 60 m

Wing B Wing C 50 m

Wing C Wing A 40 m

The company plans to install the following number of computers in


each of the wings :

Wing No. of Computers

Wing A 30

Wing B 100

Wing C 40

89 10
(i) Suggest a suitable cable layout of connections between
buildings. 1

(ii) Name the wing that is most suitable to house the server for
this complex with a suitable reason. 1

(iii) Where should the hub be placed and why ? 1

(iv) The head office is situated around 10 km from this complex.


What type of network out of MAN, LAN, PAN or WAN will be
formed when this complex is linked to the head office. 1

89 11 P.T.O.
5,900

You might also like