All posts from

cbseacademic.nic.in XII STD Multimedia & Web Technology Sample Question Paper 2017-18

Name of the Board : CBSE Academic
Class : XII STD
Document Type : Sample Question Paper
Subject : Multimedia & Web Technology
Year : 2017-18
Website : http://cbseacademic.nic.in/SQP_CLASSXII_2017_18_final.html
Download Sample Question Paper : https://www.pdfquestion.in/uploads/22403-Multimedia-SQP.pdf
Marking Scheme : https://www.pdfquestion.in/uploads/22403-Multimedia-MS.pdf

Multimedia & Web Technology Question :

General Instructions :
(i) All questions are compulsory.
(ii) Answer the questions after carefully reading the text.

Related : CBSE Academic XII Multimedia & Web Technology Sample Question Paper 2016 – 17 : www.pdfquestion.in/10121.html

Q1. (a) Shreya wants to work on database management software. Suggest her any two examples of common database management system. (1)
(b) What is field in a database? Give an example. (1)
(c) Define and identify the primary key in the following table

(d) Shweta wants to delete the records where the “FirstName” is “Rahul” in the „Emp‟ Table. She has entered the following SQL statement. An error is being displayed. Rewrite the correct statement. (1) DELETE „Rahul‟ FirstName FROM Emp;

(e) Differentiate between JPEG and GIF image. (2)
(f) Explain the term “Publishing a Flash Movie”? Name the extension of the file created when a Flash movie is published using a Macintosh projector. (2)
(g) Mention any one use of Multimedia in healthcare.

Q2. Answer the following question based on Macromedia Flash :
(a) What is Frame rate? (1)
(b) Differentiate between Motion Tweening and Shape Tweening. (2)
(c) Name any two movie file formats. (1)
(d) Define layer. Write one advantage of using layers in Flash

(e) Observe the figure given below and do as directed
** The object on the left hand side shows the position and size of the image for frame 1. The colour of the object is blue.

** The object on the right hand side shows the position and size of the image for frame 20. The colour of the object is green.
** The circle on frame 1 moves and transforms into an ellipse on frame 20. Write the procedure and property settings for animating the above scenario.

Q3. Answer the following questions based on HTML
(a) Write the HTML command to create a button in a form with the caption “Click Me” (1)
(b) Identify the errors in the following HTML code. Also write the correct code. (1) <OL TYPE= “a” START= “f”>

(c) Write the HTML code to generate a Web Page in the format given below : (8)
Consider the following while writing the HTML code :
** Title of the page should be “Handmade Cards”.
** Background colour should be “Pink”.
** Text style of the main heading should be “Arial Bold” and color should be red.

** Image used is “cards.jpg”.
** Table in the center of the webpage and should have a 3 pixel thick border of color green and the spacing between cell content and border is 10 pixels.

** Use the concept of nested lists for creating the specified lists.
** The bottom image (link.jpg) and the text “Personalize The Card” are links to another page “person.html”.

Q4. Answer the following questions based on PHP :
(a) Write any two features of PHP. (1)
(b) Write the output of the given code : (2)
<?php
$sum=0;
for($a=1; $a<=8; $a +=2)
$sum = $sum + $a;
echo($sum);
echo(“<BR>”);
echo($a);
?>

(c) What is a constant? Declare a constant MAX and assign the value 10. (2)
(d) Give output of the following statements : (3)
(i) echo 10/5+2*4%8;
(ii) echo strtolower(“PRODUCT ACTIVATED”);
(iii) echo date(“M-d-Y”, mktime(0,0,0,8,42,2017));

(e) Rewrite the following code using switch case (2)
if($Type==’T’)
echo “DISCOUNT ON TV”;
else if($Type==’M’)
echo “DISCOUNT ON MOBILE PHONE”;
else if($Type==’C’)
echo “DISCOUNT ON CAMERAS”;
else
echo “NO DISCOUNT”;

Q5. Answer the following questions based on PHP :
(a) What is PHP global variable $_REQUEST? (1)
(b) Following is the code to count total number of characters from a text file.

Fill in the blanks so that this code can work : (2)
<? php
$file = _______(“data.txt”, “r”);
$ch = 0;
while(_______($file))
{
$letter= ________________________;
$ch = ________________________;
}
echo “Number of characters:”, $ch;
fclose($file);
?>

(c) Rewrite the following code after removing errors with each correction underlined.
<?
value=5;
while($value!= =0)
{
$r_digit=$value%10;
$value/=10;
}
ECHO $r_digit;
?>

(d) Name the built-in functions to be used in the following situations : (2)
(i) To remove backslash from a string.
(ii) To return number of days in a month for specified year.

(e) What is a cookie? Write the PHP code to set a cookie named “car” and value “BMW”. The cookie should expire after two days. Also Display the value stored in $_COOKIE (3)

Q6. Answer the following questions based on JavaScript :
(a) Write the code using do while loop without effecting the output : (2)
<script language=”javascript”>
var prod,b;
prod=1;
for(b=1;b<=10;b+=3)
{
document.write(b);
prod=prod+b*b;
}
document.write(“the final prod is” & prod);

(b) Explain Conditional operator with the help of an example. (2)
(c) Analyse the given program segment and determine how many times the loop will be executed. What will be the value of A after loop is terminated.
var A , B;
A = 5;
B = 10;
while(A>=1)
{
document.Write(A+B);
A = A – 1;
B = B – 2;
}

(d) Write the code to display a form as shown below along with the javascript code to achieve the specified task. User should be able to enter the number of calls and the total amount payable gets displayed when he presses “calculate” button.

Leave a Reply

How to add comment : 1) Type your comment below. 2) Type your name. 3) Post comment.

www.pdfquestion.in © 2021

Contact Us   Privacy Policy   SiteMap