myCBSEguide App
Download the app to get CBSE Sample Papers 2024-25, NCERT Solutions (Revised), Most Important Questions, Previous Year Question Bank, Mock Tests, and Detailed Notes.
Install NowCBSE Question Paper 2014 Class 12 Multimedia and Web Technology conducted by Central Board of Secondary Education, New Delhi in the month of March 2014. CBSE previous year question papers with the solution are available in myCBSEguide mobile app and website. The Best CBSE App for students and teachers is myCBSEguide which provides complete study material and practice papers to CBSE schools in India and abroad.
Question Paper 2014 Class 12 Multimedia and Web Technology
CBSE Question Paper 2014 Class 12 Multimedia and Web Technology
General Instructions:
- All questions are compulsory.
- Answer the questions after carefully reading the text
- Observe the table CompFest of a Database named Events given below carefully and answer the questions that follow: [3]
Filed Name Data Type EventID Number EventName Memo EventDate Date/Time EventVenue Text EventTime Date/Time EventExpenditure Currency - Name the view in which the table is shown- Design or Datasheet.
- What does the key symbol next to the EventlD field name designate?
- The EventName field has to be maximum 30 characters long but has been wrongly given the Memo data type. Suggest the correct data type for this field.
- What will be the impact of changing the data type of the EventId field to AutoNumber?
- Can this view be used to add a new field to the above table?
- What is the degree of the above table?
- The table FreeApp is used to maintain data related to the free mobile applications designed by a Company. Study the table and answer the following questions:
App ID App Name App Utility App Version App IntroDate FA100 Lock Lock Messages 1.0.2 01-01-2013 FA101 Chat-O Chat Messenger Beta 01-01 —2013 FAI03 FreeChat Chat Messenger 1.0.3 04-1 I -2013 FA104 Pixel Image Editor Beta 11-12—2013 - Name the two fields that can act as candidate keys in the table FreeApp. [2]
- If a new field named ApplntroTime is added to the above table that will store the introduction Time, then name the appropriate data type that should be used for this new field. [1]
- Fatima is preparing for her Medical entrance exams and wants to be able to conduct the live conference with two of her classmates located in different areas o1 the city. Which of the following modern technology will help tier avail this service?
- Video Telephony
- Video Conferencing
- Video on Demand
- Which image file format out of GIF, JPEG, and BMP is the most suitable for storing compressed aphids with lots of colors?
- What is the use of exporting a flash movie? [2]
- Observe the table CompFest of a Database named Events given below carefully and answer the questions that follow: [3]
- Questions below are based on Macromedia Flash
- Study the figure given below and answer the questions that follow
- What is the usage of the area labeled as A in the above figure?[1]
- What do the arrows in the timeline area indicate?[1]
- Given the above settings, which layer cannot be edited?[1]
- (iv) what is the default frame rate of any movie created in Flash?[1]
- What is the difference between morphing and simple animation?[2]
- 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.
- Study the figure given below and answer the questions that follow
- Answer the following questions based on HTML
- Name the attribute of the <EMBED> tag to be used in the following situations : [2]
- to hide the sound control box
- to play the soundtrack repeatedly four times
- Write the HTML code to generate the web page in the format shown :[8]
Consider the following points while writing the HTML code:- The title of the web page is Google Apps.
- Text st of the page is Arial.
- The image used in the table is goog1el.png.
- The table has a red colored border that is 5 pixels thick and space between cells is 3 pixels.
- Create the given list with the appropriate bullet type.
- The text Drive, Calendar and Docs in the list are linked to pages drive.html, calendar.html, and docs.html.
- Use the concept CIF spanning for placing the image in the table across columns.
- Name the attribute of the <EMBED> tag to be used in the following situations : [2]
- Answer the following questions based on ASP:
- which of the following situation(s) is it essential to use a server side script such as ASP? Justify. [2]
- Display a welcome message when a page loads
- Display banner advertisements
- Display an error message when a user leaves a mandatory field in a form empty
- Authenticate a password entered by a user
- What is the use of the querystring and cookies collection of the response object?
- Name the object or component used for the following :
- To send a redirect message to the browser to connect to a different URL
- To show the number of visitors visiting a webpage
- To manage information related to a user session
- Give the output of the following statements:
- Response.write (12-5+3) \ 4)
- Response.write(MONTH(DATE0)*5)
- Response.write(STRREVERSE(MONTHNAME(4)
- which of the following situation(s) is it essential to use a server side script such as ASP? Justify. [2]
- Answer the following questions based on ASP:
- What is the use of the connection string ? [1]
- Name the method of RecordSet Object used for: [2]
- Moving the cursor to the record immediately after the current record
- To update the database with the modifications made in the recordset
- Study the code given below and answer the questions that follow : BannerAd.asp
- The script in the file BannerAd.asp is used to display the content from the ads.txt file. Remove the errors in the code given above so as to get the desired result.
- Which of the ads would be displayed most often and why?
- If a new advertisement is to be displayed using the Ad Rotator to display an image named “Movies.jpg” for an advertisement for the website www.moviereviews.com with description “Most reliable movie reviews”, then give the lines that need to be added to the file content.txt
- Study the code given below:
<% Set FileObj=________________ (“Scripting.FileSystemObject”)
Set mfile= FileObj. ___________(”d:\content\myths.txt”)
Do UNTIL newsfile. ______________
ch= newsfile.Read(1)
If ch=”.” Then
ch=”;”
end if
Response.Write(ch)
Loop newsfile.______________
%>- 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 after converting all full stops (.) to semi-colons (;). [2]
- Rewrite the code for the loop using DO WHILE instead of DO UNTIL.[1]
- How would the output of the above script change if we used the Readline method instead of Read(I) ?[1]
- Answer the following questions based on VBSCRIPT:
- Explain the concept of local and global variable with the help of a suitable
- Study the code given below and answer the questions that follow:[2] <HTML>
<HEAD><TITLE> Board Question </TITLE>
<SCRIPT LANGUAGE – “VBScript”>
Sub Display (Message) ‘Beginning of Subroutine Document.Write (Message)
End Sub
</SCRIPT>
</HEAD>
<BODY>
<SCRIPT LANGUAGE = “VBScript”>
Display “Hello! Welcome to VBScript.”
Call Display (“Have a nice day.”)
</SCRIPT>
</BODY>
</HTML>- Identify and name the argument used in the above code segment.[1]
- What is the usage of the ‘(single quote), character in the above code segment? What is the alternate way of achieving the same effect in VBScript? [1]
- How many times will the subroutine Display be executed ? [1]
- What will be the output of the above code ?[1]
- Write the HTML code to generate the following form:[1]
Write the VBScript code to display the message “Number is even” if the number is even or “Number is odd” otherwise on the click of the CHECK button. The message should be displayed in the message box.
- Name the free and open source office suite.
- Dhirendra wants to transfer a document stored on his mobile to his sister’s mobile. They both are sitting in different rooms of their house. Choose the kind of network being formed in this case from the following :
- PAN
- MAN
- WAN
- 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]
- Differentiate between E-mail and chat. [2]
- FreeApp Company is in the process of renovation of their complex situated at Cyber City, Gurgaon. The 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 60m Wing B Wing C 50m Wing C Wing A 40 in The company plans to install the following number of computers in each of the wings:
Wing No. of Computers Wing A 100 Wing B 20 Wing C 40\ - Suggest the suitable cable layout for connecting the buildings and name the topology formed. [2]
- Suggest the most suitable place (Wing) to house the server of this organization with a suitable reason.[1]
- The head office is situated in Bangalore. Suggest the most suitable method of linking the head office and this complex that can provide fast communication provided cost is not a factor.[1]
These are questions only. To view and download complete question paper with solution install myCBSEguide App from google play store or log in to our student dashboard.
Last Year Question Paper Class 12 Multimedia and Web Technology
Download class 12 Multimedia and Web Technology question paper with the solution from best CBSE App the myCBSEguide. CBSE class 12 Multimedia and Web Technology question paper 2014 in PDF format with the solution will help you to understand the latest question paper pattern and marking scheme of the CBSE board examination. You will get to know the difficulty level of the question paper.
Previous Year Question Paper for class 12 in PDF
CBSE question papers 2018, 2017, 2016, 2015, 2014, 2013, 2012, 2011, 2010, 2009, 2008, 2007, 2006, 2005 and so on for all the subjects are available under this download link. Practicing real question paper certainly helps students to get confidence and improve performance in weak areas.
- Physics
- Chemistry
- Mathematics
- Biology
- Accountancy
- Business Studies
- Economics
- Geography
- Physical Education
- Computer Science
- Informatics Practices
- English Core
- Hindi Core
- Hindi Elective
- Other Subjects
To download CBSE Question Paper class 12 Accountancy, Chemistry, Physics, 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.
Test Generator
Create question paper PDF and online tests with your own name & logo in minutes.
Create NowmyCBSEguide
Question Bank, Mock Tests, Exam Papers, NCERT Solutions, Sample Papers, Notes
Install Now