MOCK PRE-BOARD EXAMINATION 2017_18 Class : XII Computer Science ( Answer Key)

Size: px
Start display at page:

Download "MOCK PRE-BOARD EXAMINATION 2017_18 Class : XII Computer Science ( Answer Key)"

Transcription

1 MOCK PRE-BOARD EXAMINATION 2017_18 Class : XII Computer Science ( Answer Key) 1. (a) In the context of inheritance, what is the difference between private and protected members of a class. Explain with suitable example. 2 Private members Protected members Private members of the class cannot be Protected members of the class can be inherited by the child class inherited by the child class Example : class capsules: public medicines private : int id; protected: char capsule_name[30]; char volume_label[20]; float price; capsules(); void entercapsuledetails(); void showcapsuledetails(); ; class antibiotics: public capsule int dosage_units; char side_effects[20]; int use_within_days; antibiotics(); void enterdetails(); void showdetails(); ; Here private members of class capsule are not inherited in class antibiotocs. (b) Answer the questions(i) & (ii) after going through the following class. 2 class interview int month; interview(int y) //constructor 1 month=y; interview( interview &t); // constructor 2 ; (i) create an object, such that it invokes constructor 1; (ii) write complete definition for constructor 2; (i) interview obj(10); (ii) interview( interview &t) month= t.month; XII / Comp. Science Page 1 of 12

2 (c) Answer the questions (i) to (iv) based on the following. 4 class medicines char category[10]; char date_of_manufacture[10]; char company[20]; medicines(); void entermedicinedetails(); void showmedicinedetails(); ; class capsules: public medicines protected: char capsule_name[30]; char volume_label[20]; float price; capsules(); void entercapsuledetails(); void showcapsuledetails(); ; class antibiotics: public capsule int dosage_units; char side_effects[20]; int use_within_days; antibiotics(); void enterdetails(); void showdetails(); ; (i) How many bytes will be required by an object of class medicines and an object of class antibiotics respectively? Medicine: 40, Antibiotics : 118 (ii) Write names of all the member functions accessible from the objects of antibiotics. entermedicinedetails(), showmedicinedetails(), entercapsuledetails(), showcapsuledetails(),enterdetails(), showdetails() (iii) Write names of all members accessible from member functions of class capsules. Member functions: entermedicinedetails(), showmedicinedetails(), entercapsuledetails(), showcapsuledetails() Data Members: capsule_name, volume_label, price (iv) What will be the order of invocation of the constructors, when the object T of class antibiotics is declared (inside main ())? medicines capsules antibiotocs 2. (a) Find the output of the following program segments. (Assume all header files included). 2 void changestring( char text[], int &counter) XII / Comp. Science Page 2 of 12

3 char *ptr=text; int length=strlen(text); for(; counter<length-2; counter+=2,ptr++) *(ptr+counter)=toupper(*(ptr+counter)); void main() int position=0; char message[]= Pointers Fun ; changestring(message,position); <<position; PoiNteRs Fun@10 (b) Find the output of the following program segments. ( assume all header files included). 2 typedef char str80[80]; void main() char *notes; str80 str= VR2GooD ; int n=6; notes=str; while( n>=3) str[n]=(isupper(str[n])?tolower(str[n]):toupper(str[n])); cout<<notes<<endl; n--; notes++; VR2Good VR2GoOd VR2GOOd VR2gOOd 3. (a) Define a function REVERSE(int B[], int M) to replace each element of the array with its reverse. 3 For Example: If array contains The changed array will be int REV(int x) int rem,rev=0; while(x!=0) rem = x%10; rev = rev*10 + rem; x=x/10; return rev; void REVERSE(int a[10], int n) XII / Comp. Science Page 3 of 12

4 for(int i=0 ; i<n ; i++) cout<<endl<<rev(a[i]); (b) Write the definition of function ADDMID( int MAT[][10], int R, int C) in C++, which finds the sum of the middle row elements and sum of middle column elements separately. R denotes number of rows and C denoted number of columns. Assuming both R and C are odd numbers. 3 Ans : void ADDMID(int MAT[][10], int R, int C) int mid,sum=0; mid = R/2; for(int i=0 ; i<c ; i++) sum = sum+mat[mid][i]; cout<<"\n Sum of middle row : "<<sum; mid = C/2; sum=0; for( i=0 ; i<r ; i++) sum = sum+mat[i][mid]; cout<<"\n Sum of middle column : "<<sum; (c) An array T[30][20] is stored in the memory along the row with each of the elements occupying 4 bytes. Find out the base address and address of element T[20][15], if an element T[25][10] is stored at the memory location No. of rows=m=30 No. of columns=n=20 Width=w=4 Let base address = b Memory location of A[25][10] = 9800 Address of A[i][j]= b+ ( (I-0) * n +(j-0)) *w 9800=b + (25 * ) * 4 =b+510*4 =b+2040 B= = 7760 Now address of A[20][15] = ( 20 * ) * 4 = * 4 = =9420 (d) Write a function DISPLAYALTERNATE(int A[][], int m, int n) to display alternate elements starting from A[0][0]. 2 void DISPLAYALTERNATE( int A[][], int m, int n) ` int flag=1; for( int i=0; i<m;i++) for( int j=0; j<n; j++) XII / Comp. Science Page 4 of 12

5 if( flag==1) cout<<a[i][j]; flag= flag * -1; OR Any other logic to solve the program (e) Evaluate the following postfix expression using stack. Show status of stack for each operation 2 False, True, NOT, OR, True, False, AND, OR Scanned element operation Stack status Final output PUSH TRUE PUSH TRUE NOT POP TRUE EVALUATE NOT TRUE PUSH # OR POP POP EVALUATE OR PUSH # TRUE PUSH TRUE PUSH TRUE AND OR POP POP TRUE EVALUATE TRUE AND PUSH POP POP EVALUATE OR PUSH TRUE # ; POP AND PRINT (f) Convert the following infix expression to its equivalent postfix expression. Showing the stack contents for each step of conversion. 3 X Y / ( Z + U) * V elements operation Stack Expression ( Push ( X Print ( X - Push (- X Y Print (- XY / Push (-/ XY ( Push (-/( XY Z Print (-/( XYZ + Push (-/(+ XYZ U Print (-/(+ XYZU XII / Comp. Science Page 5 of 12

6 ) Pop and print (-/ XYZU+ Pop and cancel * Push (-* XYZU+/ V Print (-* XYZU+/V ) Pop and print Pop and print Pop and cancel (- ( # XYZU+/V* XYZU+/V*- XYZU+/V*- (g) Write a complete definition of addition() and deletion() function in C++ in a dynamically allocated Queue containing names of Cities. 4 struct node char name[20]; node * next; ; class queue node *rear, *front, *temp; queue() front=rear=null; void addition() temp= new node; cout<< enter data value ; gets(temp->name); temp->next=top; if( rear==null) rear=temp; front=temp; else rear->next=temp; rear=temp; void deletion() if(front==null) cout<< Queue empty ; exit(0); else cout<< deleted element <<front->name; temp=front; front=front->next; delete temp; if( front==null) rear=null; ; XII / Comp. Science Page 6 of 12

7 4. (a) What is the use of seekg() and tellg() function in file operation. Also write syntax of each 2 seekg() is used to transfer the file pointer to a specific location. Syntax : fl1.seekg(+/-n, ios::beg/end/cur); F1.seekg(10, ios::beg); tellg() gives the placement of pointer i.e the number of bytes passed from beginning. Syntax : long n=fl1.tellg(); (b) Write down any two differences between text mode and binary mode files. 2 Text mode files Binary mode files Text files stores data in the form of ASCII characters. Binary files stores data in the same format as is stored in memory. Text files are slower to process as data translation takes place. It takes more time than binary files. Binary files are faster to process as no translation takes place. (c) Assuming that a text file named DAIRY.TXT contains some text written into it, write a function named countdo(), that reads the file and count and display all 3 letter words from the file. 2 void countdo() ifstream if1( dairy.txt ); char word[10]; int ctr=0; if1>>word; while(!if1.eof()) // while(if1) if( strlen(word) ==3 ) ctr++; cout<<endl<<word; if1>>word; if1.close(); cout<< The number of 3 letter words are <<ctr; OR Any other correct function definition performing the desired operation (d) Assuming a text file words.txt contains some text. Write a function which replaces all I present in a file by E. 2 Ans : void REPLACE() ifstream f1("words.txt"); ofstream f2("temp.txt"); char ch; f1>>ch; while(!f1.eof()) if(ch=='i') ch='e'; f2<<ch; f1>>ch; XII / Comp. Science Page 7 of 12

8 f1.close(); f2.close(); remove("words.txt"); rename("temp.txt","words.txt"); (e) Write a function in c++ to read and display the detail of all the users whose status is A from a binary file USER.DAT. Assuming the binary file USER.DAT is containing objects of class USER, which is defined as follows: 2 class user int uid; // user id char uname[20]; //user name char status; //user type a/i void register(); //function to enter the content void show(); //function to display all data member char getstatus() return status; ; void display() ifstream if1; if1.open( USER.DAT, ios::binary); user U; while( if1.read((char *)&U, sizeof(u))) if( U.getstatus()== A ) U.show(); if1.close(); 5. (a) How Alternate key is different from candidate key. Give suitable example of each through a table with sample data. 2 The table may have multiple candidate keys. Out of that user has to decide one to the primary key and others are automatically called alternate kay. If STUDENT table contains the fields admno class sec roll fname address percentage then candidate key may be (i) admno (ii) class + sec+ roll (iii) fname + address Suppose user selects admno as primary key then other groups are called alternate keys. (b) Consider the following tables EMPLOYEE and INCHARGE and answer (b1) and (b2) parts of the question: Table: EMPLOYEE EMPNAME BASIC DEPARTMENT DATEOFAPP AGE SEX KARAN 8000 PERSONNEL 27/03/97 35 M DIVAKAR 9500 COMPUTER 20/01/98 34 M DIVYA 7300 ACCOUNTS 19/02/97 34 F XII / Comp. Science Page 8 of 12

9 ARUN 8350 PERSONNEL 01/01/95 33 M SABINA 9500 ACCOUNTS 12/01/96 36 F JOHN 7400 ACCOUNTS 24/02/97 36 M ROBERT 8250 PERSONNEL 20/02/97 39 M RUBINA 9450 MAINTENANCE 22/02/98 37 F VIKAS 7500 COMPUTER 13/01/94 41 M MOHAN 9300 MAINTENANCE 19/02/98 37 M Table : INCHARGE DEPT HEAD PERSONNEL RAHUL COMPUTER SATYAM ACCOUNTS NATH FINANCE GANESH MAINTENANCE JACOB (b1) Write SQL commands for the following statements: 4 x1=4 (i) To display name of all employees who are more than 34 years of age in ascending order of their name. SELECT EMPNAME FROM EMPLOYEE WHERE AGE>34 ORDER BY EMPNAME; (ii) To display name, department and annual basic salary ( assume monthly basic given in the table). SELECT EMPNAME, DEPARTMENT, BASIC *12 FROM EMPLOYEE; (iii) To display number of employees who are either in PERSONNEL or COMPUTER department. SELECT COUNT(*) FROM EMPLOYEE WHERE DEPARTMENT= PERSONNEL OR DEPARTMENT= COMPUTER ; (iv) To display name, department, sex and head for all employees. SELECT EMPNAME,DEPARTMENT, SEX, HEAD FROM EMPLOYEE, INCHARGE WHERE EMPLOYEE.DEPARTMENT=INCHARGE.DEPT; (b2) Give the output of the following SQL queries: 4x ½ =2 (i) SELECT COUNT(DISTINCT DEPARTMENT) FROM EMPLOYEE; 4 (ii) SELECT EMPNAME, DEPARTMENT FROM EMPLOYEE WHERE EMPNAME like %A ; DIVYA ACCOUNTS SABINA ACCOUNTS RUBINA MAINTENANCE (iii) SELECT MAX(BASIC), MIN(BASIC) FROM EMPLOYEE where DATEOFAPP> 22/02/97 ; (iv) SELECT EMPNAME, HEAD FROM EMPLOYEE, INCHARGE WHERE BASIC=9500 AND DEPARTMENT=DEPT; DIVAKAR SATYAM SABINA NATH 6. (a) Verify the following Boolean expression algebraically. 2 X.Y + Y.Z = X.Y.Z + X.Y.Z + X.Y.Z XY + Y Z = XY (Z+Z ) + (X+X )Y Z ( complementary law) = XY Z + XY Z + XY Z +X Y Z ( distributive) = XY Z + XY Z + X Y Z ( Idempotent law) XII / Comp. Science Page 9 of 12

10 (b) Write CANNONICAL SOP form of a Boolean function X + X Y + X Z. 2 X + X Y + X Z = X( Y+Y ) + X Y + X Z = XY + XY +X Y + X Z =XY(Z+Z ) +XY (Z+Z ) + X Y(Z+Z ) + X Z(Y+Y ) =XYZ+XYZ +XY Z+XY Z +X YZ+X YZ +X YZ+X Y Z =XYZ+XYZ +XY Z+XY Z +X YZ+X YZ +X Y Z (c) Reduce the Boolean expression using K-map. F(a,b,c,d) = (0,1,2,4,5,6,8,10) 3 c d c d cd cd ab cd a b 1 01 a b 1 11 ab ab F= a c + b d + a d (d) Draw the logic circuit for the Boolean expression using NAND gates only. X.Y + X. Y 2 X Y (e) Write the dual of expression X + X. Y = X + Y 1 Ans : X. (X + Y ) = X.Y 7.(a) Write an advantage and disadvantage of using Optical fibre cable. 1 adv: it is guarantee secure transmission and has a very high transmission capacity. Dis adv: expensive, connection losses are common problem. (b) Expand the following terms 1 (i) HTTP (ii) GSM HTTP : Hyper Text Transfer Protocol GSM : Global Service for mobile communication ( mobilisation) XII / Comp. Science Page 10 of 12

11 (c) What is cyber crime? 1 Crimes committed with the use of computers or relating to computers through internet. Tampering with computer source documents, Hacking, publishing of information, child pornography, accessing protected system are under cyber crime. (d) What is the significance of cookies stored on a computer. 1 Cookies is small text file that web servers send to a web browser so that the web server can keep track of the user s activity on a particular website. (e) Bias Methodologies is planning to expand their network in India, starting with three cities in India to build infrastructure for research and development of their chemical products. The company has planned to setup their main office in Pondicherry- at three different locations and have named their offices as Back Office, Research Lab and Development Unit. The company has one more Research office namely Corporate Office in Mumbai. A rough layout of the same is as follows. 4 Approximate distances between these offices are as follows: Research lab to Back Office 110Mts Research lab to Development Unit 16Kms Research lab to Corporate Unit 1800Kms Back Office to Development Unit 13Kms INDIA Corporate Unit [Mumbai] Pondicherry Development Unit Research Lab Back Office In continuation of above, the company experts have planned to install the following number of computers in each of their offices. Research lab 158 Back Office 79 Development Unit 90 Corporate Unit 51 (i) Suggest network type ( out of LAN/MAN/WAN) for connecting each of the following offices. Research lab and Back office Research lab and Development Unit Research lab and Back office LAN Research lab and Development Unit MAN (ii) Which device you will suggest to be procured by the company for connecting all the computers within each of their offices out of the following devices? i. Switch/Hub ii. Modem iii. Telephone (I) Switch/Hub XII / Comp. Science Page 11 of 12

12 (iii) Which of the following communication medium, you will suggest to be procured by the company for connecting their local offices in Pondicherry for very effective and fast communication? Telephone cable Optical fibre Ethernet Cable Ethernet cable (iv) Suggest a cable/wiring layout for connecting the company s local offices located in Pondicherry. Also, Suggest an effective method /technology for connecting the company s regional offices with offices located in Mumbai. INDIA Pondicherry Corporate Unit [Mumbai] Development Unit Research Lab Back Office Satellite communication is required for connecting the company s regional offices located in Mumbai. (f) Kabir wants to purchase a Book online and he has placed the order for that book using an e- commerce website. Now, he is going to pay the amount for that book online using his Mobile, then he needs which of the following to complete the online transaction: A bank account, 2. Mobile phone which is attached to above bank account, 3. The mobile banking app of the above bank installed on that mobile, 4. Login credentials (UID & Pwd) provided by the bank, 5. Or all of above. Option No.5 (g) What do you mean by data encryption? For what purpose it is used for? 1 Ans : Data encryption is a technique used for data security in which original message is converted or encoded using an algorithm into a form not understood by anyone except the person who has the key to decode it. XII / Comp. Science Page 12 of 12

KENDRIYA VIDYALAYA SANGATHAN, CHENNAI REGION COMPUTER SCIENCE (083)

KENDRIYA VIDYALAYA SANGATHAN, CHENNAI REGION COMPUTER SCIENCE (083) KENDRIYA VIDYALAYA SANGATHAN, CHENNAI REGION CLASS XII COMMON PREBOARD EXAMINATION 05-06 COMPUTER SCIENCE (08) Time: hours Max. Marks: 70 Instructions: (i) All questions are compulsory. (ii) Programming

More information

SPLIT-UP SYLLABUS ----CHENNAI REGION COMPUTER SCIENCE (Code: 083) Class-XII Academic Session

SPLIT-UP SYLLABUS ----CHENNAI REGION COMPUTER SCIENCE (Code: 083) Class-XII Academic Session SPLIT-UP SYLLABUS ----CHENNAI REGION COMPUTER SCIENCE (Code: 083) Class-XII Academic Session 2008-09 Sr.No. Duration Number of Working Days From To Topic to be Covered Nos. of Periods required CAL/TAL

More information

PRINCE PUBLIC SCHOOL PRE-BOARD EXAMINATION ( ) SAMPLE PAPER-1 COMPUTER SCIENCE XII TIME ALLOWED: 3 HOURS

PRINCE PUBLIC SCHOOL PRE-BOARD EXAMINATION ( ) SAMPLE PAPER-1 COMPUTER SCIENCE XII TIME ALLOWED: 3 HOURS PRINCE PUBLIC SCHOOL PRE-BOARD EXAMINATION (2018-19) SAMPLE PAPER-1 COMPUTER SCIENCE XII TIME ALLOWED: 3 HOURS MAXIMUM MARKS: 70 General Instructions 1. This question paper contains 7 questions. 2. SECTION

More information

SAMPLE PAPER. Class: XII SUBJECT COMPUTER SCIENCE. Time: 3 Hours MM: 70

SAMPLE PAPER. Class: XII SUBJECT COMPUTER SCIENCE. Time: 3 Hours MM: 70 SAMPLE PAPER Class - XII SUBJECT COMPUTER SCIENCE Subject: Computer Sc. Class: XII Time: 3 Hours MM: 70 1. (a) Differentiate between a global variable and a local variable. (b) Name the Header file(s)

More information

KUWAIT SAHODAYA EXAMINATION FIRST TERM SUBJECT : COMPUTER SCIENCE (083) : CLASS - XII SET - 3 Time : 3 Hours

KUWAIT SAHODAYA EXAMINATION FIRST TERM SUBJECT : COMPUTER SCIENCE (083) : CLASS - XII SET - 3 Time : 3 Hours KUWAIT SAHODAYA EXAMINATION FIRST TERM 08-09 SUBJECT : COMPUTER SCIENCE (08) : CLASS - XII SET - Time : Hours MM=70 Instructions- (Based on the model of CBSE Exams). a) Find and write the output of the

More information

KENDRIYA VIDYALAYA SANGATHAN, COMPUTER SCIENCE (THEORY) I PRE-BOARD TIME 3 HRS CLASS XII M. Marks 70

KENDRIYA VIDYALAYA SANGATHAN, COMPUTER SCIENCE (THEORY) I PRE-BOARD TIME 3 HRS CLASS XII M. Marks 70 KENDRIYA VIDYALAYA SANGATHAN, COMPUTER SCIENCE (THEORY) I PRE-BOARD TIME 3 HRS CLASS XII M. Marks 70 GENERAL INSTRUCTIONS : 1. ALL QUESTIONS ARE COMPULSORY. 2. PROGRAMMING LANGUAGE : C++ Q1. (a) Out of

More information

2 SEMESTER EXAM CLASS : 12 DECEMBER 2016 TIME : 3 Hrs MAX MARKS : 70

2 SEMESTER EXAM CLASS : 12 DECEMBER 2016 TIME : 3 Hrs MAX MARKS : 70 SEMESTER EXAM CLASS : DECEMBER 06 TIME : Hrs MAX MARKS : 70. a) A D array MAT[40][0] is stored in memory as row wise. If the address of MAT[4][8] is 9 and width (W) is bytes find the address of MAT[0][9].

More information

CLASS XII GUESS PAPER COMPUTER SCENCE (083)

CLASS XII GUESS PAPER COMPUTER SCENCE (083) CLASS XII GUESS PAPER COMPUTER SCENCE (083) TIME: 3 hours MARKS: 70 Q1. Please check that this question paper contains 11 printed pages. Code-snippets in questions may be printed wrong rectify the errors

More information

void Add() { cin >> trainnumber; gets(trainname); } void display() { cout<<trainnumber <<":"<<TrainName<<end;

void Add() { cin >> trainnumber; gets(trainname); } void display() { cout<<trainnumber <<:<<TrainName<<end; . T SHREE MAHAPRABHU PUBLIC SCHOOL & COLLEGE QUESTION BANK FOR BOARD EXAMINATION 016-17 SUBJECT COMPUTER SCIENCE (Code: 083) Q1. Answer the following questions: a) Name the header file(s) that shall be

More information

Index for C++ Programming

Index for C++ Programming Computer Science (083) Practical File for Class XII Session 2018-19 Index for C++ Programming Name: Section: Roll No.: SN. Program Description Date Sign. 1. Write a C++ program to calculate the multiplication

More information

KENDRIYA VIDYALAYA SANGATHAN, VARANASI REGION

KENDRIYA VIDYALAYA SANGATHAN, VARANASI REGION KENDRIYA VIDYALAYA SANGATHAN, VARANASI REGION FIRST PRE-BOARD EXAMINATION 016-17 CLASS XII COMPUTER SCIENCE (083) Time: 3 hours Max. Marks: 70 Instructions: (i) All questions are compulsory. (ii) Programming

More information

KENDRIYA VIDYALAYA SANGATHAN MODEL QUESTION PAPER 8 CLASS XII COMPUTER SCIENCE (083)

KENDRIYA VIDYALAYA SANGATHAN MODEL QUESTION PAPER 8 CLASS XII COMPUTER SCIENCE (083) KENDRIYA VIDYALAYA SANGATHAN MODEL QUESTION PAPER 8 CLASS XII COMPUTER SCIENCE (083) Time: 3 hours Max. Marks: 70 BLUE PRINT OF QUESTION PAPER S.No. UNIT VSA SA I SA-II LA Total (1 Mark) ( Marks) (3 Marks)

More information

Question Bank Class XII Subject : Computer Science

Question Bank Class XII Subject : Computer Science Question Bank Class XII Subject : Computer Science Q1. What is the difference between call by reference & call by value method in a user defined function in C++? Explain it with suitable example. Q.2.Write

More information

DELHI PUBLIC SCHOOL BOKARO STEEL CITY

DELHI PUBLIC SCHOOL BOKARO STEEL CITY DELHI PUBLIC SCHOOL BOKARO STEEL CITY ASSIGNMENT FOR THE SESSION 2015-2016 Class: XII Subject : Computer Science Assignment No. 3 Question 1: (a) What is the difference between Call by Value and Call by

More information

COMPUTER SCIENCE 1998 (Delhi Board)

COMPUTER SCIENCE 1998 (Delhi Board) COMPUTER SCIENCE 1998 (Delhi Board) Time allowed: 3 hours Max. Marks: 70 Instructions: (i) All the questions are compulsory. (ii) Programming Language: C++ QUESTION l. (a) Define the following terms: (i)

More information

1. a) Find the correct identifiers out of the following, which can be 2 used for naming Variable, Constants or Functions in a C++ program:

1. a) Find the correct identifiers out of the following, which can be 2 used for naming Variable, Constants or Functions in a C++ program: SECOND PREBOARD EXAMINATION (2017 18) CLASS: XII Subject: COMPUTER SCIENCE Date: 24.1.2018 Time Allowed: 3 Hours Maximum Marks: 70 General instructions: (1) All questions are compulsory. (2) Marks are

More information

DELHI PUBLIC SCHOOL BOKARO STEEL CITY ASSIGNMENT FOR THE SESSION

DELHI PUBLIC SCHOOL BOKARO STEEL CITY ASSIGNMENT FOR THE SESSION DELHI PUBLIC SCHOOL BOKARO STEEL CITY ASSIGNMENT FOR THE SESSION 2017 2018 Class: XII Subject : Computer Science Assignment No. 3 1. a) What is this pointer? Explain with example. b) Name the header file

More information

KENDRIYA VIDYALAYA SANGATHAN

KENDRIYA VIDYALAYA SANGATHAN KENDRIYA VIDYALAYA SANGATHAN JAMMU REGION Winter Stations CLASS: XII SESSION: 2016-17 SPLIT-UP SYLLABUS Computer Science MONTH PORTION TO BE COVERED THEORY PRACTICAL April May-June 2016 UNIT-1 REVIEW:

More information

KE DRIYA VIDYALAYA SA GATHA CHE AI REGIO COMMO PREBOARD EXAMI ATIO COMPUTER SCIE CE

KE DRIYA VIDYALAYA SA GATHA CHE AI REGIO COMMO PREBOARD EXAMI ATIO COMPUTER SCIE CE KE DRIYA VIDYALAYA SA GATHA CHE AI REGIO COMMO PREBOARD EXAMI ATIO 2008-09 COMPUTER SCIE CE CLASS: XII Time : 3 Hrs. Max. Marks : 70 Instructions : (i) All questions are compulsory. (ii) Programming Language

More information

KENDRIYA VIDYALAYA SANGATHAN. Regional Office Delhi Split-up Syllabus Session Subject:-Computer Science Subject Code:-083

KENDRIYA VIDYALAYA SANGATHAN. Regional Office Delhi Split-up Syllabus Session Subject:-Computer Science Subject Code:-083 KENDRIYA VIDYALAYA SANGATHAN Regional Office Delhi Split-up Syllabus Session-2017-18 Subject:-Computer Science Subject Code:-083 COMPUTER SCIENCE (083)-Theory CLASS XII Unit wise Weightage of Marks Duration:3

More information

4. BOOLEAN ALGEBRA 8 5. NETWORKING AND OPEN SOURCE SOFTWARE 10

4. BOOLEAN ALGEBRA 8 5. NETWORKING AND OPEN SOURCE SOFTWARE 10 SPLIT UP SYLLABUS SUBJECT : COMPUTER SCIENCE (083) SESSION:2014-15 Class XII (Theory) - C++ Duration: 3 hours Total Marks: 70 Unit No. Unit Name MARKS 1 OBJECT ORIENTED PROGRAMMING IN C++. 2. DATA STRUCTURE

More information

COMPUTER SCIENCE 2002 (Delhi Board)

COMPUTER SCIENCE 2002 (Delhi Board) COMPUTER SCIENCE 2002 (Delhi Board) Time allowed: 3 hours Max. Marks: 70 Instructions: (i) All the questions are compulsory. (ii) Programming Language: C++ QUESTION l. (a) What the purpose of a header

More information

KENDRIYA VIDYALAYA SANGATHAN

KENDRIYA VIDYALAYA SANGATHAN KENDRIYA VIDYALAYA SANGATHAN JAMMU REGION CLASS: XII SESSION: - 17 SPLIT-UP SYLLABUS COMPUTER SCIENCE MONTH PORTION TO BE COVERED THEORY PRACTICAL April-May UNIT-1 REVIEW: C++ covered In Class - XI, Object

More information

COMMON PRE-BOARD EXAMINATION COMPUTER SCIENCE

COMMON PRE-BOARD EXAMINATION COMPUTER SCIENCE COMMON PRE-BOARD EXAMINATION 2017-2018 Subject Code: 083 CLASS: XII COMPUTER SCIENCE Time Allowed: 3 hours Maximum Marks: 70 Instructions- (i) Please check that this question paper contains 11 printed

More information

COMMON PRE-BOARD EXAMINATION COMPUTER SCIENCE

COMMON PRE-BOARD EXAMINATION COMPUTER SCIENCE SET Subject Code: 08 COMMON PRE-BOARD EXAMINATION 07-08 COMPUTER SCIENCE CLASS XII Time Allowed: hours Maximum Marks: 70 General Instructions: Please check that this question paper contains 9 printed pages.

More information

COMPUTER SCIENCE Paper 1

COMPUTER SCIENCE Paper 1 COMPUTER SCIENCE Paper 1 (THEORY) (Three hours) Maximum Marks: 70 (Candidates are allowed additional 15 minutes for only reading the paper. They must NOT start writing during this time) -----------------------------------------------------------------------------------------------------------------------

More information

CBSE GUESS PAPER. Roll No. Computer Sc. XII(083)/

CBSE GUESS PAPER. Roll No. Computer Sc. XII(083)/ Roll No. CBSE GUESS PAPER Computer Sc. XII(083)/2011-12 Time Allowed 3 Hours Maximum Marks- 70 General Instructions: (i) All questions are compulsory. (ii) The paper contains 7 questions. (iii) Programming

More information

COMPUTER SCIENCE. Time allowed : 3 hours Maximum Marks : 70

COMPUTER SCIENCE. Time allowed : 3 hours Maximum Marks : 70 Series OSR Code No. 91 Roll No. Candidates must write the Code on the title page of the answer-book. Please check that this question paper contains 16 printed pages. Code number given on the right hand

More information

COMPUTER SCIENCE (Theory) - Class XII Marking Scheme

COMPUTER SCIENCE (Theory) - Class XII Marking Scheme COMPUTER SCIENCE (Theory) - Class XII Marking Scheme 1 a) Call by value l It is a used to create a temporary copy of data coming from actual parameter.the changes done in the function in the formal parameter

More information

If the function modify( ) is supposed to change the mark of a student having student_no y in the file student.dat, write the missing statements to modify the student record. 10. Observe the program segment

More information

(i) case (ii) _delete (iii) WHILE (iv) 21stName

(i) case (ii) _delete (iii) WHILE (iv) 21stName KENDRIYA VIDAYALAYA SANGATHAN ERNAKULAM REGION PREBOARD EXAMINATION 208-9 CLASS :XII MAX. MARKS : 70 SUBJECT : COMPUTER SCIENCE Instructions: TIME :3 HRS (i) Please check that this question paper contains

More information

KENDRIYA VIDYALAYA SANGATHAN, KOLKATA REGION SPLIT-UP SYLLABUS ( ) CLASS XII : COMPUTER SCIENCE (THEORY)

KENDRIYA VIDYALAYA SANGATHAN, KOLKATA REGION SPLIT-UP SYLLABUS ( ) CLASS XII : COMPUTER SCIENCE (THEORY) KENDRIYA VIDYALAYA SANGATHAN, KOLKATA REGION SPLIT-UP SYLLABUS (2017-) CLASS XII : COMPUTER SCIENCE (THEORY) MONTH PORTION TO BE COVERED THEORY PRACTICAL APRIL- MAY Unit 1 Object Oriented Programming in

More information

ISC 2008 COMPUTER SCIENCE PAPER 1 THEORY PART I Answer all questions in this part Question 1. a) State the two complement properties of Boolean Algebra. Verify any one of them using the truth table. b)

More information

KENDRIYA VIDYALAYA SANGATHAN TINSUKIA REGION PRE BOARD EXAMINATION SUBJECT COMPUTER SCIENCE

KENDRIYA VIDYALAYA SANGATHAN TINSUKIA REGION PRE BOARD EXAMINATION SUBJECT COMPUTER SCIENCE CLASS- XII MAX MARKS-70 KENDRIYA VIDYALAYA SANGATHAN TINSUKIA REGION PRE BOARD EXAMINATION 01-15 SUBJECT COMPUTER SCIENCE TIME- HOURS Q1 a) What is the Difference between Global Variable and Local Variable?

More information

KE DRIYA VIDYALAYA SA GATHA, CHE AI REGIO. COMMO PRE-BOARD EXAMI ATIO COMPUTER SCIE CE (CLASS-XII) MARKI G SCHEME

KE DRIYA VIDYALAYA SA GATHA, CHE AI REGIO. COMMO PRE-BOARD EXAMI ATIO COMPUTER SCIE CE (CLASS-XII) MARKI G SCHEME KE DRIYA VIDYALAYA SA GATHA, CHE AI REGIO. COMMO PRE-BOARD EXAMI ATIO 2008-09. COMPUTER SCIE CE (CLASS-XII) MARKI G SCHEME 1 1. (a) (i) Arrays bring together a group of items of the same data type whereas

More information

(d) Rewrite the following program after removing all the syntax error(s), if any. [2] include <iostream.h> void main ( )

(d) Rewrite the following program after removing all the syntax error(s), if any. [2] include <iostream.h> void main ( ) Sample Paper 2012 Class XII Subject Computer Science Time: 3 Hrs. M.M. 70 General instructions: 1) All questions are compulsory. 2) Read all the questions carefully. 3) Programming language C++. Q.1(a)

More information

ISC 2006 COMPUTER SCIENCE PAPER 1 THEORY PART I Answer all questions in this part

ISC 2006 COMPUTER SCIENCE PAPER 1 THEORY PART I Answer all questions in this part ISC 2006 COMPUTER SCIENCE PAPER 1 THEORY PART I Answer all questions in this part Question 1. a) State the two Absorption Laws of Boolean Algebra. Verify any one of them using the truth table. b) Find

More information

ISC 2011 COMPUTER SCIENCE PAPER 1 THEORY

ISC 2011 COMPUTER SCIENCE PAPER 1 THEORY ISC 2011 COMPUTER SCIENCE PAPER 1 THEORY Question 1. a) State the two absorption laws. Verify any one of them using truth table. b) Reduce the following expression : F(A,B,C)= (0,1,2,3,4,5,6,7) Also find

More information

Mock Test Paper-3. Computer Science. Duration : 3hrs Max Marks : 70

Mock Test Paper-3. Computer Science. Duration : 3hrs Max Marks : 70 Mock Test Paper-3 Computer Science Mock Test Paper-3 11 Duration : 3hrs Max Marks : 70 1. (a) How does a class inforce data hiding? 2 (b) Name the header files to which the following belong- 1 (c) Rewrite

More information

Computer Science 2006 (Delhi)

Computer Science 2006 (Delhi) Computer Science 6 (Delhi) General Instructions: Q... All questions are compulsory.. Programming Language: C++ a. Name the header file to which the following belong () i. abs( ) ii. isupper( ) b. Illustrate

More information

SCIENCE ENTRANCE ACADEMY III PREPARATORY EXAMINATION SCHEME OF VALUATION

SCIENCE ENTRANCE ACADEMY III PREPARATORY EXAMINATION SCHEME OF VALUATION Computer Science (4) Q.NO Expand SCSI Small computer system interface PART-A Name the gate which produces output 0, if there are even numbers of s in the input XOR What is complete tree? Tree in which

More information

ISC 2007 COMPUTER SCIENCE PAPER 1 THEORY PART I Answer all questions in this part

ISC 2007 COMPUTER SCIENCE PAPER 1 THEORY PART I Answer all questions in this part ISC 2007 COMPUTER SCIENCE PAPER 1 THEORY PART I Answer all questions in this part Question 1. a) Simplify the following Boolean expression using laws of Boolean Algebra. At each step state clearly the

More information

Sample Paper, 2015 Subject: Computer Science Class 12 th

Sample Paper, 2015 Subject: Computer Science Class 12 th Sample Paper, 2015 Subject: Computer Science Class 12 th Time: 3 Hours Max. Marks: 70 Instructions: i) All questions are compulsory and so attempt all. ii) Programming language: C++. iii) Please check

More information

KENDRIYA VIDYALAYA SANGATHAN BHUBANESWAR REGION SPLITUP SYLLABUS FOR COMPUTER SCIENCE CLASS XII

KENDRIYA VIDYALAYA SANGATHAN BHUBANESWAR REGION SPLITUP SYLLABUS FOR COMPUTER SCIENCE CLASS XII KENDRIYA VIDYALAYA SANGATHAN BHUBANESWAR REGION SPLITUP SYLLABUS FOR COMPUTER SCIENCE 2015-16 CLASS XII MONTH PORTION TO BE COVERED THEORY PRACTICAL April-May 2015 June-July 2015 Aug-2015 REVIEW: C++ covered

More information

(d) Observe the following C++ code very carefully and rewrite it after removing any/all syntactical errors: [2] Include < iostream.

(d) Observe the following C++ code very carefully and rewrite it after removing any/all syntactical errors: [2] Include < iostream. DELHI PUBLIC SCHOOL, RANCHI Pre Board-II Examination 2018 Computer Science (083) Time: 3 Hours Class: XII Maximum Marks: 70 General Instructions: There are 08 Number of Questions, all in total. All Questions

More information

SAMPLE QUESTION PAPER Subject: Computer Science Class: XII ( )

SAMPLE QUESTION PAPER Subject: Computer Science Class: XII ( ) Time: Hrs. Instructions: Q. No. (a) All questions are compulsory, (b) Answer either Section A or Section B: SAMPLE QUESTION PAPER Subject: Computer Science Class: XII (07-8) (i) Section A - Programming

More information

CLASS XII COMPUTER SCIENCE(083) TimeAllowed : 3 HrsMax Marks : 70

CLASS XII COMPUTER SCIENCE(083) TimeAllowed : 3 HrsMax Marks : 70 1 CLASS XII COMPUTER SCIENCE(083) TimeAllowed : 3 HrsMax Marks : 70 General Instructions- (i) All questions are compulsory (ii) Programming Language: C++ 1. (a) Differentiate between call-by-value and

More information

BHARATIYA VIDYA BHAVAN S V.M.PUBLIC SCHOOL, VADODARA. Class : XII SAMPLE PAPER Max Marks : 70

BHARATIYA VIDYA BHAVAN S V.M.PUBLIC SCHOOL, VADODARA. Class : XII SAMPLE PAPER Max Marks : 70 BHARATIYA VIDYA BHAVAN S V.M.PUBLIC SCHOOL, VADODARA Class : XII SAMPLE PAPER Max Marks : 70 Subject : Computer Science Time Allotted : 3 hrs General Instructions : Programming Language : C++. All questions

More information

SAMPLE PAPER 2015 SUB - COMPUTER SCIENCE - (Theory) CLASS XII Time allowed: 3 hours Maximum marks: 70

SAMPLE PAPER 2015 SUB - COMPUTER SCIENCE - (Theory) CLASS XII Time allowed: 3 hours Maximum marks: 70 SAMPLE PAPER 215 SUB - COMPUTER SCIENCE - (Theory) CLASS XII Time allowed: 3 hours Maximum marks: 7 Instructions : i) All the questions are compulsory. ii) Programming Language (for Q. 1-4): C++ iii) Write

More information

Code No: R Set No. 1

Code No: R Set No. 1 Code No: R05010106 Set No. 1 1. (a) Draw a Flowchart for the following The average score for 3 tests has to be greater than 80 for a candidate to qualify for the interview. Representing the conditional

More information

SAMPLE PAPER-2015 CLASS-XII COMPUTER SCIENCE. Sample paper-i. Time allowed: 3 hours Maximum Marks: 70 Name : Roll No.:

SAMPLE PAPER-2015 CLASS-XII COMPUTER SCIENCE. Sample paper-i. Time allowed: 3 hours Maximum Marks: 70 Name : Roll No.: SAMPLE PAPER-2015 CLASS-XII COMPUTER SCIENCE Sample paper-i Time allowed: 3 hours Maximum Marks: 70 Name : Roll No.: General Instruction 1. Please check that this question paper contains 7 questions. 2.

More information

PART I. Answer all questions in this Part. While answering questions in this Part, indicate briefly your working and reasoning, wherever required.

PART I. Answer all questions in this Part. While answering questions in this Part, indicate briefly your working and reasoning, wherever required. COMPUTER SCIENCE 2008 Paper-1 (THEORY) Three hours (Candidates are allowed additional 15 minutes for only reading the paper. They must NOT start writing during this time) Answer all question in Part I

More information

Sample Paper COMPUTER SCIENCE (Theory) Class-XII Time Allowed: 3hours Maximum Marks: 70

Sample Paper COMPUTER SCIENCE (Theory) Class-XII Time Allowed: 3hours Maximum Marks: 70 Sample Paper- 2015 COMPUTER SCIENCE (Theory) Class-XII Time Allowed: 3hours Maximum Marks: 70 Note. (i) All questions are compulsory. (ii) Programming Language: C+ + Ques. 1 a) What is the use of inline

More information

KendriyaVidyalayaSangathan Kolkata Region

KendriyaVidyalayaSangathan Kolkata Region KendriyaVidyalayaSangathan Kolkata Region Third Pre-Board Examination : 204-5 Please check that this question paper contains 7 questions. Please write down the Serial Number of the question before attempting

More information

COMPUTER SCIENCE SAM PLE PAPER 2-HALF YEARLY EXAMINATION

COMPUTER SCIENCE SAM PLE PAPER 2-HALF YEARLY EXAMINATION COMPUTER SCIENCE SAM PLE PAPER 2-HALF YEARLY EXAMINATION Q.1. (i) Name the header file to which the following belong: (a) gets( ) (b) open( ) (ii) (iv) (v) What is copy constructor? What do you understand

More information

2016 COMPUTER SCIENCE

2016 COMPUTER SCIENCE Total number of printed pages: 5 Total marks : 70 2016 COMPUTER SCIENCE Time : 3 hours General instructions: i) Approximately 15 minutes is allotted to read the question paper and revise the answers. ii)

More information

COMPUTER SCIENCE

COMPUTER SCIENCE Final 2012-13 COMPUTER SCIENCE - 083 (Theory) CLASS XII Time allowed : 3 hours Maximum marks: 70 Instructions : i) All the questions are compulsory. ii) Programming Language : C++. 1. a) What is the difference

More information

COMPUTER SCIENCE (THEORY) 2016-17 Class XII (Theory) Python Duration : 3 Hours Total Marks : 70 Unit No. Unit Name Marks 1. OBJECT ORIENTED PROGRAMMING WITH PYTHON 24 2. ADVANCE PROGRAMMING WITH PYTHON

More information

Series SHC COMPUTER SCIENCE. Code No. 91. Roll No.

Series SHC COMPUTER SCIENCE. Code No. 91. Roll No. Roll No. Series SHC Code No. Please check that this question paper contains 11 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

More information

Computer Science 330 Assignment

Computer Science 330 Assignment Computer Science 330 Assignment Note: All questions are compulsory. The marks for each question are given at the same place. Max. Marks: 20 (ii) Write your name, enrolment number, AI name and subject etc.

More information

KENDRIYA VIDYALAYA IIT CAMPUS CHENNAI 36 COMPUTER SCIENCE. Half Yearly

KENDRIYA VIDYALAYA IIT CAMPUS CHENNAI 36 COMPUTER SCIENCE. Half Yearly KENDRIYA VIDYALAYA IIT CAMPUS CHENNAI 6 COMPUTER SCIENCE Half Yearly Time: Hrs M.M:70 1. a. Explain the difference between entry controlled loop and exit controlled loop with the help of an example. b.

More information

Guru Harkrishan Public School, Karol Bagh Pre Mock Class XII Sub: COMPUTER SCIENCE Allowed :3 hrs

Guru Harkrishan Public School, Karol Bagh Pre Mock Class XII Sub: COMPUTER SCIENCE Allowed :3 hrs Guru Harkrishan Public School, Karol Bagh Pre Mock 2014-15 Class XII Sub: COMPUTER SCIENCE Time Allowed :3 hrs M.M. 70 Please check that this question paper contains 9 printed pages. Please check that

More information

KENDRIYA VIDYALAYA SANGATHAN (KOLKATA REGION) Second Pre Board Examination ( ) COMPUTER SCIENCE (Theory) Class-XII Marking Scheme

KENDRIYA VIDYALAYA SANGATHAN (KOLKATA REGION) Second Pre Board Examination ( ) COMPUTER SCIENCE (Theory) Class-XII Marking Scheme KENDRIYA VIDYALAYA SANGATHAN (KOLKATA REGION) Second Pre Board Examination (2014-15) COMPUTER SCIENCE (Theory) Class-XII Marking Scheme Ques. 1 a) [1] Automatic Type Conversion Type casting It is also

More information

KENDRIYA VIDYALAYA SANGATHAN BHUBANESWAR REGION SECOND PREBOARD EXAMINATION FOR CLASS XII SUBJECT: COMPUTER SCIENCE

KENDRIYA VIDYALAYA SANGATHAN BHUBANESWAR REGION SECOND PREBOARD EXAMINATION FOR CLASS XII SUBJECT: COMPUTER SCIENCE KENDRIYA VIDYALAYA SANGATHAN BHUBANESWAR REGION SECOND PREBOARD EXAMINATION 2014-15 FOR CLASS XII SUBJECT: COMPUTER SCIENCE SET-I F.M. 70 General Instructions: Programming Language C++ All Questions are

More information

Previous Year Questions

Previous Year Questions Previous Year Questions KVS PGT Computer Science 2017 1. Which of the following most accurately describes "multiple inheritances? A. When two classes inherit from each other. B. When a child class has

More information

Answer key SUBJECT : COMPUTER SCIENCE Time : 3 hour 15 min Max. marks : 70

Answer key SUBJECT : COMPUTER SCIENCE Time : 3 hour 15 min Max. marks : 70 Answer key SUBJECT : COMPUTER SCIENCE Time : 3 hour 5 min Max. marks : 7 I. Answer ALL the questions x =. Expand the term DDRRAM. Double Data Rate Random Access Memory 2. Write the standard symbol for

More information

Sample Paper Class XII SUBJECT : COMPUTER SCIENCE

Sample Paper Class XII SUBJECT : COMPUTER SCIENCE Sample Paper - 2013 Class XII SUBJECT : COMPUTER SCIENCE FIRST SEMESTER EXAMINATION Instructions: (i) All questions are compulsory. (ii) (ii) Programming Language : C++ 1. (a) Name the header files that

More information

Model Sample Paper 2015

Model Sample Paper 2015 Time: 3 Hours MM: 70 Model Sample Paper 2015 Class XII Computer Science (083) Instructions: (i) (ii) All questions are compulsory. Programming Language C++. 1. (a) What is the difference between Actual

More information

KENDRIYA VIDYALAYA SANGATHAN, CHENNAI REGION. REVISION Examination 2013 COMPUTER SCIENCE (083) CLASS XII

KENDRIYA VIDYALAYA SANGATHAN, CHENNAI REGION. REVISION Examination 2013 COMPUTER SCIENCE (083) CLASS XII KENDRIYA VIDYALAYA SANGATHAN, CHENNAI REGION REVISION Examination 01 COMPUTER SCIENCE (08) CLASS XII Time Allowed: Hours Maximum Marks: 70 Instructions: (i) All questions are compulsory. (ii) Programming

More information

Answer key SUBJECT : COMPUTER SCIENCE Time : 3 hour 15 min Max. marks : 70

Answer key SUBJECT : COMPUTER SCIENCE Time : 3 hour 15 min Max. marks : 70 Answer key SUBJECT : COMPUTER SCIENCE Time : 3 hour 15 min Max. marks : 70 I. Answer ALL the questions 10 x 1= 10 1. What is DHTML? Dynamic HTML is a term used to describe the combination of HTML, style

More information

Sample Paper 2012 Class XII Subject Computer Science

Sample Paper 2012 Class XII Subject Computer Science Sample Paper 2012 Class XII Subject Computer Science General Instruction CODE (083) 1. Please check this question paper contains 7 printed pages. 2. Code number given on the right side of question paper

More information

COMPUTER SCIENCE. Paper 1

COMPUTER SCIENCE. Paper 1 COMPUTER SCIENCE Paper 1 (THEORY) Three hours (Candidates are allowed additional 15 minutes for only reading the paper. They must NOT start writing during this time) ----------------------------------------------------------------------------------------------------------------------------------

More information

ISC 2009 COMPUTER SCIENCE PAPER 1 THEORY PART I Answer all questions in this part

ISC 2009 COMPUTER SCIENCE PAPER 1 THEORY PART I Answer all questions in this part ISC 2009 COMPUTER SCIENCE PAPER 1 THEORY PART I Answer all questions in this part Question 1. a) Obtain the truth table to verify the following expression: X(Y+Z) = XY + XZ. Also name the law stated above.

More information

KENDRIYA VIDYALAYA SANGATHAN,MUMBAI REGION 1 ST PRE-BOARD EXAMINATION TIME- 3 HRS. CLASS-XII SUBJECT-COMPUTER SCIENCE MARKS-70 MARKING SCHEME

KENDRIYA VIDYALAYA SANGATHAN,MUMBAI REGION 1 ST PRE-BOARD EXAMINATION TIME- 3 HRS. CLASS-XII SUBJECT-COMPUTER SCIENCE MARKS-70 MARKING SCHEME KENDRIYA VIDYALAYA SANGATHAN,MUMBAI REGION ST PRE-BOARD EXAMINATION-8-9 TIME- 3 HRS. CLASS-XII SUBJECT-COMPUTER SCIENCE MARKS-7 MARKING SCHEME QUE- [A] Write the type of C++ tokens (keywords and user defined

More information

Types of Data Structures

Types of Data Structures DATA STRUCTURES material prepared by: MUKESH BOHRA Follow me on FB : http://www.facebook.com/mukesh.sirji4u The logical or mathematical model of data is called a data structure. In other words, a data

More information

Government of Karnataka SYLLABUS FOR SECOND PUC - COMPUTER SCIENCE (41) SUB-UNITS

Government of Karnataka SYLLABUS FOR SECOND PUC - COMPUTER SCIENCE (41) SUB-UNITS SL No NAME OF THE UNIT/CHAPTER 1 Typical configuration of Computer system Organisation 5 Hrs/ 4 Marks BOOLEAN ALGEBRA 15 Hrs/ 13 Marks Government of Karnataka SYLLABUS FOR 014-015 SECOND PUC - COMPUTER

More information

KENDRIYA VIDYALAYA SANGATHAN DEHRADUN REGION 1 st Pre-Board Examination, Class XII Computer Science(083) Time: 3 Hours Max.

KENDRIYA VIDYALAYA SANGATHAN DEHRADUN REGION 1 st Pre-Board Examination, Class XII Computer Science(083) Time: 3 Hours Max. KENDRIYA VIDYALAYA SANGATHAN DEHRADUN REGION st Pre-Board Examination, 05-6 Class XII Computer Science(08) Time: Hours Max. Marks: 70 (Marking Scheme) Q.No Answer Marks ) a. Post increment operator is

More information

Guide for The C Programming Language Chapter 5

Guide for The C Programming Language Chapter 5 1. Differentiate between primitive data type and non-primitive data type. Primitive data types are the basic data types. These data types are used to represent single values. For example: Character, Integer,

More information

COMPUTER SCIENCE PAPER 1

COMPUTER SCIENCE PAPER 1 COMPUTER SCIENCE PAPER 1 (THEORY) (Maximum Marks: 70) (Time allowed: Three hours) (Candidates are allowed additional 15 minutes for only reading the paper. They must NOT start writing during this time.)

More information

CBSE Sample Paper 2015 Computer Science C++ Class XII Time 3hrs M.M 70

CBSE Sample Paper 2015 Computer Science C++ Class XII Time 3hrs M.M 70 CBSE Sample Paper 2015 Computer Science C++ Class XII Time 3hrs M.M 70 Q1. A) Write short notes on typedef and #define. 2 Q1B) Give the Header files to run the following code. 1 void main() cout

More information

Sample Paper 2015 Class XII Subject Computer Science

Sample Paper 2015 Class XII Subject Computer Science Sample Paper 2015 Class XII Subject Computer Science MAX. MARKS: 70 Note (i) (ii) All questions are compulsory. (ii) Programming Language : C++ TIMES: 3 HOURS Q1. (a) Write a macro using #define directive

More information

Code No. 083 Time allowed: 3 hours Maximum Marks: 70 Instructions: (i) All questions are compulsory. (ii) Programming language: C++

Code No. 083 Time allowed: 3 hours Maximum Marks: 70 Instructions: (i) All questions are compulsory. (ii) Programming language: C++ Sample Paper Class XII Subject Computer Science Please check that this question paper contains 7 printed pages. Code number given on the right hand side of the question paper should be written on the title

More information

Where does the insert method place the new entry in the array? Assume array indexing starts from 0(zero).

Where does the insert method place the new entry in the array? Assume array indexing starts from 0(zero). Suppose we have a circular array implementation of the queue,with ten items in the queue stored at data[2] through data[11]. The current capacity of an array is 12. Where does the insert method place the

More information

THE EMIRATES NATIONAL SCHOOL SHARJAH THIRD MODEL EXAMINATION COMPUTER SCIENCE ( Code : 083) ANSWER KEY

THE EMIRATES NATIONAL SCHOOL SHARJAH THIRD MODEL EXAMINATION COMPUTER SCIENCE ( Code : 083) ANSWER KEY THE EMIRATES NATIONAL SCHOOL SHARJAH THIRD MODEL EXAMINATION 05 ---- COMPUTER SCIENCE ( Code : 08) ANSWER KEY. MARK a) Function overloading is implemented in C++ programs when multiple functions are defined

More information

Sample Paper, Subject: Computer Science Class 12 th Time Allowed : 3 Hr. M.M.: 70

Sample Paper, Subject: Computer Science Class 12 th Time Allowed : 3 Hr. M.M.: 70 Sample Paper, 2012-13 Subject: Computer Science Class 12 th Time Allowed : 3 Hr. M.M.: 70 General Instruction 1. Please check this question paper contains 10 printed pages. 2. Code number given on the

More information

Computer Science 2006 (Outside Delhi)

Computer Science 2006 (Outside Delhi) Computer Science 6 (Outside Delhi) General Instructions: Q... All questions are compulsory.. Programming Language: C++ a. Name the header file to which the following belong: () i. pow( ) ii. random( )

More information

Mock Test Paper-2. CBSE XII : Computer Science. Duration : 3hrs Max Marks : 70

Mock Test Paper-2. CBSE XII : Computer Science. Duration : 3hrs Max Marks : 70 Mock Test Paper-2 CBSE XII : Computer Science Mock Test Paper-2 1 Duration : 3hrs Max Marks : 70 1. (a) What is the difference between Object Oriented Programming and Procedural programming? 2 (b) Write

More information

CS201 Latest Solved MCQs

CS201 Latest Solved MCQs Quiz Start Time: 09:34 PM Time Left 82 sec(s) Question # 1 of 10 ( Start time: 09:34:54 PM ) Total Marks: 1 While developing a program; should we think about the user interface? //handouts main reusability

More information

(a) Differentiate between a call by value and call by reference method.

(a) Differentiate between a call by value and call by reference method. ATOMIC ENERGY CENTRAL SCHOOL NO- RAWATBHATA Half Yearly Examination 05 Model Paper Class XII Subject Computer Science Time Allowed: hours Maximum Marks: 70 Note. (i) All questions are compulsory. (ii)

More information

COMMON PRE-BOARD EXAMINATION COMPUTER SCIENCE

COMMON PRE-BOARD EXAMINATION COMPUTER SCIENCE COMMON PRE-BOARD EXAMINATION 2017-2018 COMPUTER SCIENCE SET 1 Subject Code: 083 CLASS XII MARKING SCHEME Time Allowed: 3 hours Maximum Marks: 70 Q.No. Answer Marks 1. a Macro User defined function 2 Macros

More information

COMPUTER SCIENCE (THEORY) Class XII (Theory) - Python

COMPUTER SCIENCE (THEORY) Class XII (Theory) - Python StudyCBSENotes.com 1 COMPUTER SCIENCE (THEORY) Class XII (Theory) - Python Duration: 3 Hours Total Marks: 70 Unit No. Unit Name Marks 1 Object Oriented Programming with Python 24 2 Advances Programming

More information

KE DRIYA VIDYALAYA SA GATHA CHE AI REGIO COMMO PREBOARD EXAMI ATIO COMPUTER SCIE CE- CLASS- XII. Marking scheme

KE DRIYA VIDYALAYA SA GATHA CHE AI REGIO COMMO PREBOARD EXAMI ATIO COMPUTER SCIE CE- CLASS- XII. Marking scheme KE DRIYA VIDYALAYA SA GATHA CHE AI REGIO COMMO PREBOARD EXAMI ATIO 2008-09 COMPUTER SCIE CE- CLASS- XII Marking scheme 1(a) On program execution, the compiler starts execution from the function main().this

More information

X Y Z F=X+Y+Z

X Y Z F=X+Y+Z This circuit is used to obtain the compliment of a value. If X = 0, then X = 1. The truth table for NOT gate is : X X 0 1 1 0 2. OR gate : The OR gate has two or more input signals but only one output

More information

Sample Paper 2013 SUB: COMPUTER SCIENCE GRADE XII TIME: 3 Hrs Marks: 70

Sample Paper 2013 SUB: COMPUTER SCIENCE GRADE XII TIME: 3 Hrs Marks: 70 Sample Paper 2013 SUB: COMPUTER SCIENCE GRADE XII TIME: 3 Hrs Marks: 70 INSTRUCTIONS: All the questions are compulsory. i. Presentation of answers should be neat and to the point. iii. Write down the serial

More information

KENDRIYA VIDYALAYA SANGATHAN (CHANDIGARH REGION) MARKING SCHEME (Ist Pre Board )

KENDRIYA VIDYALAYA SANGATHAN (CHANDIGARH REGION) MARKING SCHEME (Ist Pre Board ) KENDRIYA VIDYALAYA SANGATHAN (CHANDIGARH REGION) MARKING SCHEME (Ist Pre Board 018-19) 1 Ans: (i) Relational (ii) Relational (iii)logical (iv) Arithmetic (a) ½ Marks for each correct (b) Ans:Following

More information

Largest Online Community of VU Students

Largest Online Community of VU Students WWW.VUPages.com http://forum.vupages.com WWW.VUTUBE.EDU.PK Largest Online Community of VU Students MIDTERM EXAMINATION SEMESTER FALL 2003 CS301-DATA STRUCTURE Total Marks:86 Duration: 60min Instructions

More information

Sample Paper 2015 Class XII Subject COMPUTER SCIENCE. Some Important Questions Networking

Sample Paper 2015 Class XII Subject COMPUTER SCIENCE. Some Important Questions Networking Sample Paper 2015 Class XII Subject COMPUTER SCIENCE Some Important Questions Networking 1. What is circuit switching? What is packet switching? Message switching? (Hint Point Wise) Circuit Switching:

More information

Assignment 3 Class XII (Computer Science 083) Topic Array

Assignment 3 Class XII (Computer Science 083) Topic Array Assignment 3 Class XII (Computer Science 083) Topic Array 1. What is meant by base address of an array? 2. What are the preconditions for Binary Search to be performed on a single dimension array? 3. Calculate

More information

ITL Public School Pre-Board( ) Computer Science (083) Time:3 hrs M. M: 70

ITL Public School Pre-Board( ) Computer Science (083) Time:3 hrs M. M: 70 ITL Public School Pre-Board(04-5) Date:..04 Class:XII Computer Science (08) Time: hrs M. M: 70 General Instructions:. Programming Language C++. Try to give Examples a) What is the difference between Actual

More information

Please check that this question paper contains 11 printed pages. Please write down the serial number of the question before attempting it.

Please check that this question paper contains 11 printed pages. Please write down the serial number of the question before attempting it. Code No. 91 Please check that this question paper contains 11 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

More information