Page 7 - Web Applications (803) Class 12
P. 7

Assessment Resources

                                                  Objective & Subjective Questions
                                                  This section contains questions            </font>
                                                                                             } while(num<=10);
                                                                                             </script>
                                                                                             </body>
                 Unsolved Exercise  (Objective Type Questions)  to assess the intellectual and   Output of the preceding program is as follows:
                             Section A
                                                                                             </html>
                    1.  From the following, identify the appropriate option to embed file ‘music.wav’ in the webpage with width 100 pixel
                    (a)  <object embed  data=”music.wav”, type=”audio/x-mplayer2” width=”320”  height=”240”>
                  A.   Multiple choice questions.  [CBSE SAMPLE PAPER T1 2021]  comprehensive writing skills.
                    (b)  <object data=”music.wav” type=”audio/x-mplayer2” width=”100” height=”200”>
                   and height 200 pixel using object tag:
                    (d)  <object file=”music.wav” type=”audio/x-mplayer2” width=”100” height=”200”>
                                ii.  (b), (c) and (d) are correct
                     2.  ............................... is a wizard program for Windows and Mac that helps users easily insert video to the website or
                                iv.  (a) and (d) are correct
                                      [CBSE SAMPLE PAPER 2022]
                       (c)  <object src=”music.wav” type=”audio/x-mplayer2” width=”100” height=”200”>
                    i.  (a), (b) and (d) are correct


                      iii.  (b) and (c) correct   ii.  Video LightBox

                      blog, in a few clicks without writing a single line of code.   iv.  Vimeo
                     iii.  Freemake Video Converter
                      i.  Oembed    ii.  PS                                                       Lab Assignment ‘n Activity
                        3.  Identify the file format of an image file.   iv.  tiff  [CBSE SAMPLE PAPER T1 2021]  Complete the following activities and tick on the circle.
                                 ii.  Insert-> Media -> Flash
                     i.  PCX
                        4.  Identify the correct sequence of steps to embed Flash video in a Dreamweaver.     Watch the video for recall of loops - JavaScript Loops Explained | For Loop, While and
                     iii.  mid
                       i.  Insert-> Video-> Flash   iv.  Insert-> Media-> Image            watch?v=rJtN14OPpKc
                                                                                           Do-While Loop | JavaScript Tutorial | Edureka : https://www.youtube.com/
                       iii.  Insert-> Flash-> media    Section B                         Practice Question–1:
                                                                                          <html>
                              (Subjective Type Questions)                                 <body text="blue">
                    A.  Short answer type questions.     Lab Assignment 'N Activity       <script>
                       1.  Define the following terms:
                                                                                          <font color=green>
                                                                                          <h2>Calculate factorial using for loop</h2>
                        i.  Plugin                                                       var num=7;
                      ii.  swfoject
                                                                                         var fact=1;
                          2.  What is the purpose of the following software?  This section contains     for (i=1;i<=num;i++){
                       ii.  Quick Media Converter
                        i.  Video LightBox  ii.  .aac                                    }  fact = fact*i;
                          3.  Identify the following file formats  iv.  .epsi
                                   vi.  .flc
                                                                                         </script>
                        i.  .tiff   viii.  .wmf           an activity to apply the       </font>
                       iii.  .wmv
                         v.  .qt                                                         </body> </html>
                                                                                         document.write("The factorial of "+num+" is "+fact);
                          4.  Briefly explain the two types of graphics found in multimedia content.  concepts learnt.
                       vii. .wpg
                           5.  Name any two types of image file formats and outline their differences.
                      B.  Long answer type questions.   Customising and Embedding Multimedia Components in Web Pages  173
                         1.  Differentiate between animation and video.
                         2.  What is multimedia? List the disadvantages of multimedia.
                                                                                                        Web Scripting — JavaScript
                                                                                                               197
                                                              Practical Work                          Practical Work
                   iv. for (i=1;i<1;i++)
                        document.write(“hello”);              This section has              HTML/CSS/JAVASCRIPT
                        document.write(“ByeBye”);
                                                                                                                Computational Thinking
                    v.  str=”Health is Wealth”);
                          document.write(str.match(“wealth”));  [CBSE HANDBOOK]  sample questions for     Ans.  <html>  Creativity
                                       Computational Thinking
                          document.write(str.match(“Wealth”));
                                                                                            <head>
                     6.  How do we get javascript on a web page explain?
                                                                                             1.  Create a webpage with multiple images. Each image should be a hyperlink to a website.
                                                                                            </head>
                   C.   Competency-based/Application-based questions:  practical examination.    <body>
                                                                                                <title>Image Hyperlinks</title>
                     var fruits = ["Apple", "Mangoes", "Orange", “Banana”];
                      1.  Consider the following code:                                          <h1>Click on the image to open that website</h1>
                     Write command in JavaScript to:                                           <br> <br>
                       add an item “Guava “ to the array fruits in the last.
                                                                                                <a href=”https://www.cbse.nic.in”>
                                                                                               </a>
                       remove first element from the array.
                       add following array to an array “fruits”. var veg=[“Potato”, “Brinjal”, “Gourd”];
                     2.  Declare a function ‘stringsinjava’ in JavaScript to accept two string arguments. The function should       <a href=”https://orangeeducation.in/”>
                       display number of elements in the array.
                                                                                                    <img src=”cbselogo.png” alt=”Image 1” height=25% width=25%>
                        Search for string1 in string2 and display the string if found.
                         Convert both the strings to uppercase.                               </a>
                        Replace all occurrences of letter ‘A’ with ‘*’ in string1.
                                                                                               <br> <br> <br> <br>
                                                                                                   <img src=”orangelogo.png” alt=”Image 2” height=25% width=25%>
                       Revise entire JavaScript by watching the video – JavaScript Programming - Full Course (8 hour
                                                                                              </a>
                      LAB ACTIVITY                   Lab Activity                         </html>
                                                                                               <a href=”https://en.wikipedia.org/wiki/Main_Page”>
                       Write code for OK button to find the length of the string entered in a textbox on the webpage.
                                                                                          </body>
                                                                                                  <img src=”wikilogo.png” alt=”Image 3” height=25% width=25%>
                      1.   duration) - https://www.youtube.com/watch?v=jS4aFq5-91M  [CBSE PAPER 2020]  This section contains activities to   Output:
                        Write a function that displays a prompt box which accepts a name and displays a greeting “Happy New
                      2.   Write a code in JavaScript to accept a number from the user and generate
                      3.   a.  a random number greater than the number entered.
                         b.  next even number after the number entered.   improve practical skills.
                        By Step Web Design Tutorial : https://www.youtube.com/watch?v=91Q6RvKvd7o and create
                          Year! <name>” in a paragraph which has an id “para1”.
                       4.   Watch the video – Starbucks Landing Page Website Design using Html CSS & JavaScript | Step
                       5.   Create a simple game in JavaScript! Watch the video – The Easiest JavaScript Game Ever
                         Create a Quiz by watching the video – How to create a Simple Quiz Using Html JavaScript
                        the same webpage.
                       6.   https://www.youtube.com/watch?v=bG2BmmYr9NQ
                       7.   https://www.youtube.com/watch?v=rCVqQ8NKU2M   229
                                        Web Scripting — JavaScript
                                                                                                           Practical Work
                                                                                                               267
                              Projects                                                          CBSE Sample Question Paper
                                                            Sample Question Paper             1. Please read the instructions carefully.
                                                                                                WEB APPLICATIONS (Subject Code–803)
                                                                                           Max. Time: 3 Hours
                                                                                           General Instructions:
                                                                                                  Class XII [Session 2023-2024]
                    A simple HTML website developed using HTML, CSS and JavaScript. The JavaScript code is used to display current date   This section contains sample      3. Section A has Objective type questions whereas Section B contains Subjective type questions.  Max. Marks: 60
                   PROJECT 1                                question paper.                  5. All questions of a particular section must be attempted in the correct order.
                                                                                           of 3 hours.
                                                                                              2. This Question Paper consists of 24 questions in two sections – Section A & Section B.
                    and time.                                                                       6. SECTION A - OBJECTIVE TYPE QUESTIONS (30 MARKS):
                                                                                           i.  This section has 06 questions.
                                                                                             4.   Out of the given (6 + 18 =) 24 questions, a candidate has to answer (6 + 11 =) 17 questions in the allotted (maximum) time
                                                                                              ii.  There is no negative marking.
                                                                                             iii.  Do as per the instructions given.
                                                   Projects                                       7. SECTION B – SUBJECTIVE TYPE QUESTIONS (30 MARKS):
                                                                                           iv.  Marks allotted are mentioned against each question/part.
                                                                                           i.  This section contains 18 questions.
                                                                                                iii.  Do as per the instructions given.
                                                                                          ii.  A candidate has to do 11 questions.
                                                   This is an assessment to               iv.  Marks allotted are mentioned against each question/part.
                     File1: Index.html             challenge the students to                   Q 1.  Answer any 4 out of the given 6 questions on Employability Skills
                                                                                                 SECTION A: OBJECTIVE TYPE QUESTIONS
                             <link rel=”stylesheet” href=”styles.css”>
                        <html>                                                               (b)  spend a lot of time to enjoy
                                                                                          i.  Which of the following is a way to become result oriented?
                                                                                          (a)  spend holidays with family and friend
                        <head>                     apply the concepts learnt.                 (c)  prepare an action plan  (1 × 4 = 4 marks) 1
                             <title>Home</title>
                                                                                          (d)  relax and do yoga.
                         </head>                                                             ii.  Which one of the following does not help to overcome personality disorder.
                                                                                          (a)  talk to someone
                         <body>                                                            (c)  Positive attitude
                             <header>                                                               (b)  look after one’s physical health
                                 <h1>Home Page</h1>
                                          <li><a href=”index.html”>Home</a></li>
                                                                                                    (d)  Stay alone at home
                                 <nav>                                                       iii.   Ms. Rita is preparing result of her class in a spreadsheet. She wants to arrange data in the decreasing order of total marks  1
                                          <li><a href=”about.html”>About</a></li>
                                     <ul>                                                 iv.  Which communication style focuses on the feelings and emotions of the communicator?   1
                                                                                         (a)  Passive
                                          <li><a href=”contact.html”>Contact</a></li>
                                                                                         (c)  Assertive

                                                                                         obtained by the students. Suggest a suitable tool in Spreadsheet that can help her out.

                                                                                                   (b)  Aggressive
                                      </ul>                                            324         (d)  Reflective  1
                                  </nav>                                                Touchpad Web Applications-XII
                              </header>
                         Touchpad Web Applications-XII
                        292
   2   3   4   5   6   7   8   9   10   11   12