Trending ▼   ResFinder  

CBSE Class 12 Board Exam 2016 : Computer Science

24 pages, 57 questions, 0 questions with responses, 0 total responses,    0    0
cbse12
  
+Fave Message
 Home > cbse12 >

Instantly get Model Answers to questions on this ResPaper. Try now!
NEW ResPaper Exclusive!

Formatting page ...

SET-4 Series ONS Code No. 91 Candidates must write the Code on the title page of the answer-book. Roll No. Please check that this question paper contains 24 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 minute 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. COMPUTER SCIENCE Time allowed : 3 hours Maximum Marks : 70 General Instructions : (i) Programming Language in SECTION A : C++. (ii) Programming Language in SECTION B : Python. (iii) Answer either SECTION A or B, and SECTION C is compulsory. (iv) It is compulsory to mention on the page 1 in answer book whether you are attempting SECTION A or SECTION B. (v) 91 All questions are compulsory within each section. 1 P.T.O. SECTION - A [Only for candidates, who opted for C++] 1. (a) Out of the following, find those identifiers, which cannot be used for 2 naming Variables, Constants or Functions in a C++ program : Total*Tax, double, Case, My Name, NeW, switch, Column31, _Amount (b) Ronica Jose has started learning C++ and has typed the following program. When she compiled the following code written by her, she discovered that she needs to include some header files to successfully compile and execute it. Write the names of those header files, which are required to be included in the code. 1 void main() { double X,Times,Result; cin>>X>>Times; Result=pow(X,Times); cout<<Result<<end1; } (c) Rewrite the following C++ code after removing any/all syntactical errors with each correction underlined. Note : Assume all required header files are already being included in the program. #define Formula(a,b) = 2*a+b void main() { float X=3.2;Y=4.1; Z=Formula(X,Y); cout<< Result= <<Z<<end1; } 91 2 2 (d) Find and write the output of the following C++ program code : 2 Note: Assume all required header files are already included in the program. typedef char TEXT[80]; void JumbleUp(TEXT T) { int L=strlen(T); for (int C=0;C<L-1;C+=2) { char CT=T[C]; T[C]=T[C+1]; T[C+1]=CT; } for (C=1;C<L;C+=2) if (T[C]>= M && T[C]<= U ) T[C]= @ ; } void main() { TEXT Str= HARMONIOUS ; JumbleUp(Str); cout<<Str<<end1; } 91 3 P.T.O. (e) Find and write the output of the following C++ program code : Note : Assume all required header files are already being included in the program. class Share { long int Code; float Rate; int DD; public: Share(){Code=1000;Rate=100;DD=1;} void GetCode(long int C, float R) { Code=C; Rate=R; } void Update(int Change,int D) { Rate+=Change; DD=D; } void Status() { cout<< Date: <<DD<<end1; cout<<Code<< # <<Rate<<end1; } }; void main() { Share S,T,U; S.GetCode(1324,350); 91 4 3 T.GetCode(1435,250); S.Update(50,28); U.Update(-25,26); S.Status(); T.Status(); U.Status(); } (f) Look at the following C++ code and find the possible output(s) from the options (i) to (iv) following it. Also, write the maximum and the minimum values that can be assigned to the variable PICKER. 2 Note : Assume all the required header files are already being included in the code. The function random(n) generates an integer between 0 and n-1. void main() { randomize(); int PICKER; PICKER=1+random(3); char COLOR[][5]={ BLUE , PINK , GREEN , RED }; for(int I=0;I<=PICKER; I++) { for(int J=0; J<=I;J++) cout<<COLOR[J]; cout<<end1; } } (i) PINK PINKGREEN PINKGREENRED 91 (ii) (iii) BLUE GREEN BLUEPINK GREENRED BLUEPINKGREEN BLUEPINKGREENRED 5 (iv) BLUE BLUEPINK BLUEPINKGREEN P.T.O. 2. (a) Write any four important characteristics of Object Oriented Programming ? Give example of any one of the characteristics using C++. (b) Observe the following C++ code and answer the questions (i) and (ii). Assume all necessary files are included : class BOOK { long Code; char Title[20]; float Price; public: BOOK() //Member Function 1 { cout<< Bought <<end1; Code=10;strcpy(Title, NoTitle );Price=100; } BOOK(int C,char T[],float P) //Member Function 2 { Code=C; strcpy(Title,T); Price=P; } void Update(float p) //Member Function 3 { Price+=P; } void Display() 91 //Member Function 4 6 2 { cout<<Code<< : <<Title<< : <<Price<end1; } ~BOOK() //Member Function 5 { cout<< Book Discarded! <<end1; } }; void main() //Line 1 { //Line 2 BOOK B,C(101, Truth ,350}; //Line 3 for (int I=0;I<4;I++) //Line 4 { //Line 5 B.Update(50);C.Update(20); //Line 6 B.Display();C.Display(); //Line 7 } //Line 8 } (i) (ii) 91 //Line 9 Which specific concept of object oriented programming out of the following is illustrated by Member Function 1 and Member Function 2 combined together ? Data Encapsulation Polymorphism Inheritance Data Hiding How many times the message Book Discarded! will be displayed after executing the above C++ code ? Out of line 1 to Line 9, which line is responsible to display the message Book Discarded! 7 1 1 P.T.O. (c) Write the definition of a class CITY in C++ with following description : 4 Private Members - Ccode //Data member for City Code (an integer) - CName //Data member for City Name (a string) - Pop //Data member for Population (a long int) - KM //Data member for Area Coverage (a float) - Density //Data member (a float) - DenCal() //A member function to calculate --- for Population Density //Density as Pop/KM Public Members - Record() //A function to allow user to enter values of //Acode,Name,Pop,KM function - View() and call DenCal() //A function to display all the data members //also display a message Highly Populated City //if the Density is more than 10000 (d) Answer the questions (i) to (iv) based on the following : class ITEM { int Id; char IName[20]; 91 8 4 protected: float Qty; public: ITEM(); void Enter();void View(); }; class TRADER { int DCode; protected: char Manager[20]; public: TRADER(); void Enter(); void View(); }; class SALEPOINT : public ITEM,private TRADER { char Name[20],Location[20]; public: SALEPOINT(); void EnterAll(); void ViewAll(); }; 91 9 P.T.O. (i) (ii) Which type of Inheritance out of the following is illustrated in the above example ? - Single Level Inheritance - Multi Level Inheritance - Multiple Inheritance Write the names of all the data members, which are directly accessible from the member functions of class SALEPOINT. (iii) Write the names of all the member functions, which are directly accessible by an object of class SALEPOINT. (iv) What will be the order of execution of the constructors, when an object of class SALEPOINT is declared ? 3. (a) Write the definition of a function FixSalary(float Salary[ ], int N) in C++, which should modify each element of the array Salary having N elements, as per the following rules : Existing Salary Values If less than 1,00,000 If > = 1,00,000 and < 20,000 If > = 2,00,000 91 2 Required Modification in Value Add 35% in the existing value Add 30% in the existing value Add 20% in the existing value (b) R[10][50] is a two dimensional array, which is stored in the memory along the row with each of its element occupying 8 bytes, find the address of the element R[5][15], if the element R[8][10] is stored at the memory location 45,000. 3 (c) Write the definition of a member function DELETE( ) for a class QUEUE in C++, to remove a product from a dynamically allocated Queue of products considering the following code is already written as a part of the program. 4 10 struct PRODUCT { int PID; char PNAME[20]; PRODUCT *Next; }; class QUEUE { PRODUCT *R,*F; public: QUEUE(){R=NULL;F=NULL;} void INSERT(); void DELETE(); ~QUEUE(); }; (d) Write definition for a function DISPMID (int A[ ][5], int R, int C) in C++ to display the elements of middle row and middle column from a two dimensional array A having R number of rows and C number of columns. 3 For example, if the content of array is as follows : 215 103 285 912 901 209 516 921 609 401 802 360 515 601 172 The function should display the following as output : 103 901 921 802 601 516 921 609 (e) Convert the following Infix expression to its equivalent Postfix expression, showing the stack contents for each step of conversion. 2 P/(Q-R)*S+T 91 11 P.T.O. 4. (a) Write function definition of DISP3CHAR( ) in C++ to read the content of a text file KIDINME.TXT, and display all those words, which has three characters in it. 2 Example : If the content of the file KIDINME.TXT is as follows : When I was a small child, I used to play in the garden with my grand mom. Those days were amazingly funful and I remember all the moments of that time. The function DISP3CHAR( ) should display the following : was the mom and all the (b) Write a definition for function ONOFFER( ) in C++ to read each object of a binary file TOYS.DAT, find and display details of those toys, which has status as ON OFFER . Assume that the file TOYS.DAT is created with the help of objects of class TOYS, which is defined below : 3 class TOYS { int TID;char Toy[20],Status[20]; float MRP; public: void Getinstock() { cin>>TID;gets(Toy);gets(Status);cin>>MRP; } void View() { cout<<TID<< : <<Toy<< : <<MRP<< : <<Status<<end1; } char *SeeOffer(){return Status;}. }; 91 12 (c) Find the output of the following C++ code considering that the binary file CLIENT. DAT exists on the hard disk with a data of 1000 clients. 1 class CLIENT { int Ccode;char CName[20]; public: void Register();void Display(); }; void main() { fstream CFile; CFile.open( CLIENT.DAT ,ios::binary/ios::in); CLIENT C; CFile.read((char*)&C, sizeof(C)); cout<< Rec: <<CFile.tellg()/sizeof(C)<<end1; CFile.read((char*)&C, sizeof(C)); CFile.read((char*)&C, sizeof(C)); cout<< Rec: <<CFile.tellg()/sizeof(C)<<end1; CFile.close(); } 91 13 P.T.O. SECTION - B [Only for candidates, who opted for Python] 1. (a) Out of the following, find those identifiers, which cannot be used for naming Variables or Functions in a Python program : 2 Total*Tax, While, class, switch, 3rdRow, finally, Column31, _Total (b) (c) Name the Python Library modules which need to be imported to invoke the following functions. (i) sqrt() (ii) dump() Rewrite the following code in Python after removing all syntax error(s). Underline each correction done in the code. 1 2 for Name in [Ramesh, Suraj, Priya] IF Name[0]= S : print(Name) (d) Find and write the output of the following Python code : Values=[10,20,30,40] for Val in Values: for I in range(1, Val%9): print(I, * ,end= ) print() 91 14 2 (e) Find and write the output of the following Python code : 3 class Book def__init__(self,N=100,S= Python ): #constructor self.Bno=N self.BName=S def Assign(self, N,S): self.Bno=self.Bno + N self.BName= S + self.BName def ShowVal(self): print(self.Bno, # ,self.BName) s=Book() t=Book(200) u=Book(300, Made Easy ) s.ShowVal() t.ShowVal() u.ShowVal() s.Assign(5, Made ) t.Assign(15, Easy ) u.Assign(25, Made Easy ) s.ShowVal() t.ShowVal() u.ShowVal() 91 15 P.T.O. (f) What are the possible outcome(s) executed from the following code ? Also specify the maximum and minimum values that can be assigned to variable PICKER. 2 import random PICKER=random.randint(0,3) COLOR=[ BLUE , PINK , GREEN , RED ]; for I in COLOR: for J in range(1, PICKER): print(I,end= ) print() (i) BLUE PINK GREEN RED 2. (ii) BLUE BLUEPINK BLUEPINKGREEN BLUEPINKGREENRED (iii) PINK PINKGREEN GREENRED (iv) BLUEBLUE PINKPINK GREENGREEN REDRED (a) What is the difference between Multilevel and Multiple inheritance ? Give suitable examples to illustrate both. 2 (b) What will be the output of the following Python code considering the following set of inputs ? 2 AMAR THREE A123 1200 Also, explain the try and except used in the code. Start=0 while True: try: Number=int(raw_input( Enter Number )) break except ValueError: Start=Start+2 print( Re-enter an integer ) print(Start) 91 16 (c) Write a class CITY in Python with following specifications. 4 Instance Attributes - Ccode # Numeric value - CName # String value - Pop # Numeric value for Population - KM # Numeric value - Density # Numeric value for Population Density Methods : - DenCal() # Method to calculate Density as Pop/KM - Record() # Method to allow user to enter values Ccode,CName,Pop,KM and call DenCal() method - View() 3. # Method to display all the members also display a message Highly Populated City if the Density is more than 10000. (d) How do we implement abstract method in Python ? Give an example for the same. 2 (e) What is the significance of super( ) method ? Give an example for the same. 2 (a) What will be the status of the following list after the First, Second and Third pass of the selection sort method used for arranging the following elements in descending order ? 3 Note : Show the status of all the elements after each pass very clearly underlining the changes. 12, 14, -54, 64, 90, 24 (b) 91 For a given list of values in descending order, write a method in Python to search for a value with the help of Binary Search method. The method should return position of the value and should return -1 if the value not present in the list. 17 2 P.T.O. (c) Write Insert (City) and Delete (City) methods in Python to add City and Remove City considering them to act as Insert and Delete operations of the data structure Queue. 4 (d) Write a method in Python to find and display the prime numbers between 2 to N. Pass N as argument to the method. 3 (e) Evaluate the following postfix notation of expression. Show status of stack after every operation. 2 12, 2, /, 34, 20, 2, 1, 5, 1 4. (a) Write a statement in Python to perform the following operations : To open a text file MYPET.TXT in write mode To open a text file MYPET.TXT in read mode (b) Write a method in Python to write multiple line of text contents into a text file daynote.txt line. 2 (c) Consider the following definition of class Employee, write a method in Python to search and display the content in a pickled file emp.dat, where Empno is matching with A0005 . 3 class Employee: def__init__(self,E,NM): self.Empno=E self.EName=NM def display(self): print(self.Empno, - ,self.EName) 91 1 18 SECTION - C [For all the candidates] 5. (a) Observe the following PARTICIPANTS and EVENTS tables carefully and write the name of the RDBMS operation which will be used to produce the output as shown in RESULT ? Also, find the Degree and Cardinality of the result. PARTICIPANTS PNO NAME 1 Aruanabha Tariban 2 John Fedricks 3 Kanti Desai PNO 1 1 2 2 3 3 (b) NAME Aruanabha Tariban Aruanabha Tariban John Fedricks John Fedricks Kanti Desai Kanti Desai EVENTS EVENTCODE EVENTNAME 1001 IT Quiz 1002 Group Debate RESULT EVENTCODE 1001 1002 1001 1002 1001 1002 EVENTNAME IT Quiz Group Debate IT Quiz Group Debate IT Quiz Group Debate Write SQL queries for (i) to (iv) and find outputs for SQL queries (v) to (viii), which are based on the tables. VCODE V01 V02 V03 V05 V04 2 6 Table : VEHICLE VEHICLETYPE PERKM VOLVO BUS 150 AC DELUXE BUS 125 ORDINARY BUS 80 SUV 30 CAR 18 Note : PERKM is Freight Charges per kilometer 91 19 P.T.O. CNO 101 103 105 102 107 104 106 Note : CNAME K. Niwal Fredrick Sym Hitesh Jain Ravi Anish John Malina Sahanubhuti Ramesh Jaya Table : TRAVEL TRAVELDATE 2015-12-13 2016-03-21 2016-04-23 2016-01-13 2015-02-10 2016-01-28 2016-04-06 KM 200 120 450 80 65 90 100 VCODE V01 V03 V02 V02 V04 V05 V01 NOP 32 45 42 40 2 4 25 Km is Kilometers travelled NOP is number of passengers travelled in vehicle (i) To display CNO, CNAME, TRAVELDATE from the table TRAVEL in descending order of CNO. (ii) To display the CNAME of all the customers from the table TRAVEL who are traveling by vehicle with code V01 or V02. (iii) To display the CNO and CNAME of those customers from the table TRAVEL who travelled between 2015-12-31 and 2015-05-01 . (iv) To display all the details from table TRAVEL for the customers, who have travel distance more than 120 KM in ascending order of NOP. (v) SELECT COUNT(*),VCODE FROM TRAVEL GROUP BY VCODE HAVING COUNT(*)>1; (vi) SELECT DISTINCT VCODE FROM TRAVEL; (vii) SELECT A.VCODE,CNAME,VEHICLETYPE FROM TRAVEL A,VEHICLE B WHERE A.VCODE=B.VCODE AND KM<90; (viii) SELECT CNAME,KM*PERKM FROM TRAVEL A,VEHICLE B WHERE A.VCODE=B.VCODE AND A.VCODE= VO5 ; 91 20 6. (a) Verify the following using Boolean Laws. 2 X + Y Z = X .Y .Z + X .Y.Z + X Y.Z+ X .Y .Z+ X.Y .Z (b) Write the Boolean Expression for the result of the Logic Circuit as shown below : 2 (c) Derive a Canonical SOP expression for a Boolean function G, represented by the following truth table : 1 A 0 0 0 0 1 1 1 1 (d) B 0 0 1 1 0 0 1 1 C 0 1 0 1 0 1 0 1 G (A, B, C) 1 0 1 0 0 0 1 1 Reduce the following Boolean Expression to its simplest form using K-Map : 3 F(P,Q,R,S)= S(O,4,5,8,9,10,11,12,13,15) 91 21 P.T.O. 7. (a) Differentiate between PAN and LAN types of networks. 1 (b) Which protocol helps us to transfer files to and from a remote computer ? 1 (c) Write two advantages of 3G over 2G Mobile Telecommunication Technologies in terms of speed and services ? 1 (d) Write two characteristics of Web 2.0. 1 (e) What is the basic difference between Computer Worm and Trojan Horse ? 1 (f) Categorise the following under Client side and Server Side script category ? 1 (i) Java Script (ii) ASP (iii) VB Script (iv) JSP (g) Intelligent Hub India is a knowledge community aimed to uplift the standard of skills and knowledge in the society. It is planning to set up its training centers in multiple towns and villages pan India with its head offices in the nearest cities. They have created a model of their network with a city, a town and 3 villages as follows. As a network consultant, you have to suggest the best network related solutions for their issues/problems raised in (i) to (iv), keeping in mind the distances between various locations and other given parameters. 91 22 Shortest distances between various locations : VILLAGE 1 to YTOWN VILLAGE 2 to YTOWN VILLAGE 3 to YTOWN VILLAGE 1 to VILLAGE 2 VILLAGE 1 to VILLAGE 3 VILLAGE 2 to VILLAGE 3 CITY Head Office to YHUB 2 KM 1.5 KM 3 KM 3.5 KM 4.5 KM 3.5 KM 30 Km Number of Computers installed at various locations are as follows : YTOWN VILLAGE 1 VILLAGE 2 VILLAGE 3 CITY OFFICE 100 10 15 15 5 Note : In Villages, there are community centers, in which one room has been given as training center to this organization to install computers. The organization has got financial support from the government and top IT companies. 91 23 P.T.O. 91 (i) Suggest the most appropriate location of the SERVER in the YHUB (out of the 4 locations), to get the best and effective connectivity. Justify your answer. 1 (ii) Suggest the best wired medium and draw the cable layout (location to location) to efficiently connect various locations within the YHUB. 1 (iii) Which hardware device will you suggest to connect all the computers within each location of YHUB ? 1 (iv) Which service/protocol will be most helpful to conduct live interactions of Experts from Head Office and people at YHUB locations ? 1 24

Formatting page ...

Formatting page ...

Formatting page ...

Formatting page ...

Formatting page ...

Formatting page ...

Formatting page ...

Formatting page ...

Formatting page ...

Formatting page ...

Formatting page ...

Formatting page ...

Formatting page ...

Formatting page ...

Formatting page ...

Formatting page ...

Formatting page ...

Formatting page ...

Formatting page ...

Formatting page ...

Formatting page ...

Formatting page ...

Formatting page ...

 

  Print intermediate debugging step

Show debugging info


 


Tags : cbse, cbse papers, cbse sample papers, cbse books, portal for cbse india, cbse question bank, central board of secondary education, cbse question papers with answers, prelims preliminary exams, pre board exam papers, cbse model test papers, solved board question papers of cbse last year, previous years solved question papers, free online cbse solved question paper, cbse syllabus, india cbse board sample questions papers, last 10 years cbse papers, cbse question papers 2017, cbse guess sample questions papers, cbse important questions, specimen / mock papers 2018.  

© 2010 - 2025 ResPaper. Terms of ServiceContact Us Advertise with us

 

cbse12 chat