1. Home
  2. /
  3. CBSE
  4. /
  5. Class 12
  6. /
  7. Other Subjects
  8. /
  9. CBSE Sample Papers Class...

CBSE Sample Papers Class 12 Multimedia and Webtech 2019

myCBSEguide App

myCBSEguide App

Download the app to get CBSE Sample Papers 2023-24, NCERT Solutions (Revised), Most Important Questions, Previous Year Question Bank, Mock Tests, and Detailed Notes.

Install Now

Sample paper of Multimedia and Webtech Class 12 – in PDF

CBSE Sample Papers Class 12 Multimedia and Webtech 2019 The new marking scheme and blueprint for class 12 have been released by CBSE. We are providing Multimedia and Webtech sample papers for class 12 CBSE board exams. Sample Papers are available for free download in myCBSEguide app and website in PDF format. CBSE Sample Papers Class 12 Multimedia and Webtech With Solutions of 10+2 Multimedia and Webtech are made available by CBSE board exams are over. CBSE marking scheme and blue print is provided along with the Sample Papers. This helps students find answer the most frequently asked question, How to prepare for CBSE board exams. CBSE Sample Papers of class 12 Multimedia and Webtech for 2018 Download the app today to get the latest and up-to-date study material. CBSE sample paper for class 12 Multimedia and Webtech with questions and answers (solution).

Class 12 Multimedia and Webtech Sample paper 2019 

Download as PDF

CBSE Sample Papers Class 12 Multimedia and Webtech 2019

CBSE Sample Papers Class 12 Multimedia and Webtech myCBSEguide provides CBSE class 12 Board Sample Papers of Multimedia and Webtech for the year 2018, 2019,2020 with solutions in PDF format for free download. The CBSE Sample Papers for all – NCERT books and based on CBSE latest syllabus must be downloaded and practiced by students. Class 12 Multimedia and Webtech New Sample Papers follow the blueprint of that year only. Student must check the latest syllabus and marking scheme. Sample paper for class 12 Multimedia and Webtech and other subjects are available for download as PDF in-app too. myCBSEguide provides sample paper with solutions for the year 2018, 2019, 2020.

Sample Papers Class 12 Multimedia and Webtech 2018-19

Time : 3 hours
Maximum Marks: 70

General Instructions :

  • All questions are compulsory.
  • Answer the questions after carefully reading the text

    1. Shreya wants to work on database management software. Suggest her any two examples of common database management system.
    2. What is field in a database? Give an example.
    3. Define and identify the primary key in the following table:
      Table: Stationary
S_NoS_NameS_QtyPurchaseDate
101Pen1022011-12-12
102Pencil2012013-02-21
103Eraser902011-09-09
109Sharpener902012-08-31
113Clips9002011-09-09
  • 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.
    DELETE „Rahul‟ FirstName FROM Emp;
  • Differentiate between JPEG and GIF image.
  • Explain the term “Publishing a Flash Movie”? Name the extension of the file created when a Flash movie is published using a Macintosh projector.
  • Mention any one use of Multimedia in healthcare.
  • Answer the following question based on Macromedia Flash:
    1. What is Frame rate?
    2. Differentiate between Motion Tweening and Shape Tweening.
    3. Name any two movie file formats.
    4. Define layer. Write one advantage of using layers in Flash.
    5. Observe the figure given below and do as directed:
      CBSE Sample Papers Class 12 Multimedia and Webtech 2019

      1. The object on the left-hand side shows the position and size of the image for frame. The colour of the object is blue.
      2. 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.
      3. 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.
    1. Write the HTML command to create a button in a form with the caption “Click Me”
    2. Identify the errors in the following HTML code. Also, write the correct code.
    3. Write the HTML code to generate a Web Page in the format given below:
      Consider the following while writing the HTML code:

      1. Title of the page should be “Handmade Cards”.
      2.  Background colour should be “Pink”.
      3. Text style of the main heading should be “Arial Bold” and color should be red.
      4. Image used is “cards.jpg”.
      5. 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.
      6. Use the concept of nested lists for creating the specified lists.
      7. The bottom image (link.jpg) and the text “Personalize The Card” are links to another page “person.html”.
        CBSE Sample Papers Class 12 Multimedia and Webtech 2019
  •  Answer the following questions based on PHP:
    1. Write any two features of PHP.
    2. Write the output of the given code:
      <?php
      $sum=0;
      for($a=1; $a<=8; $a +=2)
      $sum = $sum + $a;
      echo($sum);
      echo(“<BR>”);
      echo($a);
      ?>
    3. What is a constant? Declare a constant MAX and assign the value 10.
    4. Give output of the following statements:
      1. echo 10/5+2*4%8;
      2. echo strtolower(“PRODUCT ACTIVATED”);
      3. echo date(“M-d-Y”, mktime(0,0,0,8,42,2017));
    5. Rewrite the following code using switch case
      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”;
    1. What is PHP global variable $_REQUEST?
    2. Following is the code to count total number of characters from a text file.
      Fill in the blanks so that this code can work:
      <? php
      $file = _______(“data.txt”, “r”);
      $ch = 0;
      while(_______($file))
      {
      $letter= ________________________;
      $ch = ________________________;
      }
      echo “Number of characters:”, $ch;
      fclose($file);
      ?>
    3. 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;
      ?>
    4. Name the built-in functions to be used in the following situations:
      1. To remove backslash from a string.
      2. To return number of days in a month for specified year
    5. 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
  •  Answer the following questions based on JavaScript:
    1. Write the code using do while loop without effecting the output:
      <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);
    2. Explain Conditional operator with the help of an example.
    3. 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;
      }
    4. 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.
      CBSE Sample Papers Class 12 Multimedia and Webtech 2019
      The total amount payable will be calculated based on the following rate list:

      1. Rs. 1.00 per call for the 1st 100 calls
      2. Rs. 1.20 per call for the next 100 calls
      3. Rs. 1.50 per call for the next 50 calls
      4. Rs. 2.00 per call for more than 250 calls
  • Answer the following questions based on Communication and network concepts:
    1. How firewall protect our network?
    2. Write one advantage of Bus Topology of network. Also, illustrate how 4 computers can be connected with each other using bus topology of network.
    3. Explain the following terms:
      1. GSM
      2. CDMA
    4. Write two advantages of using open source software over proprietary software.
    5. What is the significance of UNICODE?
    6. The Cyber Skill Development Organisation has set up its new Branch at Nagaland for its offices and web-based activities. It has 4 Wings of buildings as shown in the diagram
      CBSE Sample Papers Class 12 Multimedia and Webtech 2019
      Center to center distance between various blocks

      Wing X to Wing Z30m
      Wing Z to Wing Y50m
      Wing Y to Wing X125m
      Wing Y to Wing U60m
      Wing X to Wing U155m
      Wing Z to Wing U110m

      Number of computers

      Wing X40
      Wing Z120
      Wing Y30
      Wing U10
      1. Suggest a most suitable cable layout of connections between the Wings and topology.
      2. Suggest the most suitable place (i.e. Wing) to house the server of this organization with a suitable reason with justification.
      3. Suggest the placement of the following devices with justification: o Repeater o Hub/Switch
      4. The organization is planning to link its head office situated in Delhi with offices at Nagaland. Suggest an economic way to connect it; company is ready to compromise on the speed of connectivity. Justify your answer.

These are questions only. To view and download complete question paper with solution install myCBSEguide App from google play store or login to our student dashboard.

Download myCBSEguide App

CBSE Sample Papers for Class 12

To download sample paper for class 12 Physics, Chemistry, Biology, History, Political Science, Economics, Geography, Computer Science, Home Science, Accountancy, Business Studies and Home Science; do check myCBSEguide app or website. myCBSEguide provides sample papers with solution, test papers for chapter-wise practice, NCERT solutions, NCERT Exemplar solutions, quick revision notes for ready reference, CBSE guess papers and CBSE important question papers. Sample Paper all are made available through the best app for CBSE students and myCBSEguide website.

myCBSEguide App

Test Generator

Create question paper PDF and online tests with your own name & logo in minutes.

Create Now
myCBSEguide App

myCBSEguide

Question Bank, Mock Tests, Exam Papers, NCERT Solutions, Sample Papers, Notes

Install Now

Leave a Comment