K.V. NO 1 ARMAPUR Computer Science- XII Summer Vacation Home Assignment

Size: px
Start display at page:

Download "K.V. NO 1 ARMAPUR Computer Science- XII Summer Vacation Home Assignment"

Transcription

1 K.V. NO 1 ARMAPUR Computer Science- XII Summer Vacation Home Assignment By- Computer Science Home Assignment Created By-S.K.Verma, PGT CS

2 HOME ASSIGNMENT FOR SUMMER VACATION FIRST WEEK C++ Revision Tour MLP (MINIMUM LEARNING PACKAGE) 1. What is the difference between Actual Parameter and Formal Parameter? Also, give a suitable C++ code to illustrate both. 2. Write the name of the header files which is/are essentially required to run/execute the following C++ code: 1 void main( ) char ch, word[ ] = Magic Box ; For(int i= 0; word[i]! = \0 ; i++) If (word[i] == ) cout<<endl ; else ch = tolower(word[i]); cout<<ch; 3. Observe the following program very carefully and write the names of those header file(s), which are essentially needed to compile and execute the following program successfully : typedef char TEXT[80]; TEXT Str[] = Peace is supreme ; int Index=0; while (Str[Index]!= \0 ) if (isupper(str[index])) Str[Index++]= # ; else Str[Index++]= * ; puts(str); 4. Find the correct identifiers out of the following, which can be used for naming variable, constants or functions in a C++ program : While, for, Float, new, 2ndName, A%B, Amount2, _Counter 5. Find the output of the following program: #include <iostream.h> void modify(int arr[ ], int N) for (int I=1;I<N;I++) arr[ I-1]+=arr[ I ]; int P[]=1,2,3,4,Q[]=5,10,15,20,30; modify(p,4); modify(q,5); for (int L=0;L<4;L++) cout<<p[l]<< $ ; cout<<endl; for (L=0;L<5;L++) cout<<q[l] << $ ; cout<<endl; HOT(HIGH ORDER THINKING) 1. Rewrite the following program code after removing all syntax error (if any). Underline each correction: CLASS User long UserId; char Gender; public void Authorize( ) cin>>userid; cin>>gender; void Show( ) Cout<<UserId << : << Gender << endl; ; void main( ) User U ; Authorize. U( ); Show( ); 2- In the following program, find the correct possible output(s) from the options. Justify your answer. #include<stdlib.h> void main( ) randomize( ); int p=99,q=999; int x=random(3)+4; int y=random(2)+2; for(int i=0;i<x;i++) cout<< # ; cout<<p<< - ; for(i=0;i<y;i++) ; cout<<q<<endl; i. ##99-@999 ii. ##99-@@999 iii. ######99-@@999 iv. ####99-@@@ 3. What do you mean by Recursive Function? 1

3 6. How member functions and non-member functions differ? Write the output of the following C++ program code : Note: Assume all required header files are already being included in the program. class Calc char Grade; int Bonus; public: Calc() Grade= E ;Bonus=0; void Down(int G) Grade =G; Void Up(int G) Grade+=G; Bonus++; void Show() cout<<grade<< # <<Bonus<<end1; ; Calc c; C.Down(2); C.Show(); C.Up(7); C.Show(); C.Down(2); C.Show(); 3. Study the following program and select 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 NUM. 2 Note : Assume all required header files are already being included in the program. random(n) function generates an integer between 0 and n 1. randomize(); int NUM; NUM=random(3)+2; char TEXT[]= ABCDEFGHIJK ; for (int I=1;I<=NUM; I++) for(int J=NUM; J<=7;J++) cout<<text[j]; cout<<end1; (i) FGHI (ii) BCDEFGH (iii) EFGH (iv)cdefgh FGHI BCDEFGH EFGH CDEFGH FGHI EFGH FGHI EFGH 2

4 8. Write the header files to which the following functions belong: (i) getc ( ) (ii) isalnum ( ) (iii) scanf ( ) (iv) getxy ( ) 9. Name the header files that shall be required for successful compilation of the following C++ program : main( ) char str[20]; cout<<fabs( ); cout<< \n Enter a string : ; cin.getline(str,20); return 0; 10. Choose the correct alternative from the options (i)- (iv). Justify your answer. #include<stdlib.h> #define Getval (N) ((N%2 = =0)? N+1:N+2) void main( ) randomize( ); int num= random(3)+3; for( int I= num ; I<=num+2 ;I++) ; Options: a) 3@5@7@ b) 7@7@9@ c) 7@9@9@ d) 7@9@11@ 11. Write the related library function name based upon the given information in C++. (i) Get single character using keyboard. This function is available in stdio.h file. (ii) To check whether given character is alpha numeric character or not. This function is available in ctype.h file. 12. Define the term data hiding in the context of object oriented programming Give a suitable example using a C++ code to illustrate the same. While implementing encapsulation, abstraction is also implemented. Comment. 13. What will be the output of the following program: #include <iostream.h> void Secret(char Str[ ]) for (int L=0;Str[L]!='\0';L++); for (int C=0;C<L/2;C++) if (Str[C]=='A' Str[C]=='E') Str[C]=Str[L-C-1]; else char Temp=Str[C]; Str[C]=Str[L-C-1]; Str[L-C-1]=Temp; char Message[ ]="PreboardExam"; Secret(Message); cout<<message<<endl; 4. What is the difference between #define & const? Explain through example. 5. Differentiate between ordinary function and member functions in C++. Explain with an example. 6. Find the output of the following program: #include <iostream.h> void Secret(char Str[ ]) for (int L=0;Str[L]!='\0';L++); for (int C=0;C<L/2;C++) if (Str[C]=='A' Str[C]=='E') Str[C]='#'; else char Temp=Str[C]; Str[C]=Str[L-C-1]; Str[L-C-1]=Temp; char Message[ ]="ArabSagar"; Secret(Message); cout<<message<<endl; 7. Find the output of the following program: # include <iostream.h> # include <conio.h> # include <stdlib.h> void main () char serial[] = 'A', 'B', 'C', 'D'; int number[] = 2, 6, 7, 3; clrscr(); randomize(); cout << " The winner is : "; cout << serial [random(3)]; for (int i = 0; i < 4; i++) cout << number[sizeof(int) + random(2) - 1 ]; getch(); Outputs: (i) The winner is : A2776 (ii) The winner is : D6766 (iii) The winner is : B6767 (iv) The winner is : C3672 3

5 14. In the following program, if the value of Guess entered by the 65, what will be the expected output from the following optlons (iii) & (iv)? #includeciostream.h> #includecstdlib.h> void main 0 int Guess; sundomize 0; (cin>>guess; for (int i = 1; i<=4; l++) New = Guess + random (i); cout<<(char) New; ) (i) ABBC (ii) ACBA (iii) BCDA (iv) CABD 15. Find the output of the following program: #include <iostream.h> int a=5; void sample( int &x, int y, int *z) a+=x; y*=a; *z=a+y; cout<<a<< <<x<< << y<< <<*z<< \n ; clrscr(); int a =7,int b = 5 ; sample(::a, a, &b); cout<< ::a << << a << <<b << \n ; sample(::a, a, &b); cout<< ::a << << a << <<b << \n ; 8. Study the following program and select the possible output from it: #include<stdlib.h> const int BIG = 3 ; void main( ) randomize( ); int Digit ; Digit = 90 + random (BIG ); for (int K = DIGIT ; K >= 90 ; K ) cout<< K << $ ; (i) 93$93$92$91$90$ (ii) 91$90$ (iii) 90$91$92$ (iv) 90$92$ 9. What will be the output of the following program? #include <iostream.h> void RIDDLE(int *N,int c) for(int i=1;i<c;i++) *(N+i-1)=*(N+i)+1; int p[ ] = 6,9,8,q[ ]=4,3,1,r[]=50,80; RIDDLE(p,3); RIDDLE(q,3); RIDDLE(r,2); for(inti=0;i<3;i++) cout<<p[i]<< - ; cout<<endl; for(i=0;i<3;i++) cout<<q[i]<< % ; cout<<endl; for(i=0;i<2;i++) cout<<r[i]<< - ; cout<<endl; SECOND WEEK Object Oriented Programming MLP (MINIMUM LEARNING PACKAGE) HOT(HIGH ORDER THINKING) 1. What do you understand by Polymorphism? Give an example in C++ to show its implementation in C Encapsulation is one of the major properties of OOP. How is it implemented in C++? II. What is Inheritance? Give an example in C++ to show its implementation in C++. 1I. Reusability of classes is one of the major properties of OOP. How is it implemented in C++? 1II. What is procedural programming paradigm and what are its limitations? 1II. Write any two advantages and two disadvantages of Object Oriented Programming. 1V. What two features of an object are linked together by encapsulation? IV. In overloaded function how matching is done? V. Advantages and Disadvantages of Object oriented programming.. V. What is the information being hidden by information hiding? 4

6 THIRD WEEK Classes and Objects MLP (MINIMUM LEARNING PACKAGE) 1.Write the output of the following program: class Test int a, b; public: void set( int I, int j) a = I; b = j; void show() cout << a << << b << endl; ; Test t1, t2; T1.set(10,4); t2 = t1; t1.show() t2.show() 2. What do you mean by getters and setters functions? 3. What do you mean by nesting of member function? 4. What do you mean by Enclosing class? 4. Defne a class WEAR in C++ with following description : Private members : code string Type string Size integer material string Price real number A function calprice( ) that calculates and assign the value of price as follows : For the value of material as WOOLEN Type Price(Rs.) Coat 2400 Sweater 1600 For material other than WOOLEN the above mentioned price gets reduced by 30%. Public members : A constructor to get initial values for code, Type & material as EMPTY & size and price with 0. A function INWEAR ( ) to input the values for all the data members except price which will be initialized by function calprice( ). Function DISPWEAR ( ) that shows all the contents of data members. 5. Find the output of the following program: CBSE 2012 class METRO int Mno, TripNo, PassengerCount; public: METRO(int Tmno=1) Mno =Tmno; PassengerCount=0; HOT(HIGH ORDER THINKING) 1. A class called A is declared and all its data member and member functions are private. Is it possible to declare an object of type A and use it in any function? Justify your answer. 2. A class is defined without any data member. What is the size of the class? 3. How does the visibility mode control the access of members in the derived class? Explain with example. 4. Time is a class with the following data members and member functions-: Data members- Hours (int) Minutes (int) Seconds(int) Member functions- Constructor to initialize the data members. To find the difference two time. To display time. Complete the program with the declarations and definitions. Read a time in the main () and pass it to the function to find the difference. 5. Define a class Employee in C++ with the following specification: Private Members: ename an array of char of size[50] ( represent employee name) deptname an array of char of size[20] ( represent department name) salary integer ( represent total salary of an employee) bonus float CalBonus() This function calculate the total bonus given to an employee according to following conditions- Deptname Bonus Accounts 4 % of salary HR 5% of salary IT 2% of salary Sales 3% of salary Marketing 4% of salary Public Members: Constructor to initialise ename and deptname to NULL and salary and bonus to 0. A function read_info to allow user to enter values for ename, deptname,salary & Call function CalBonus() to calculate the bonus of an employee. A Function disp_info() to allow user to view the content of all the data members. 6. Define a class Taxpayer, whose class description is given below:- Private Members:- int pan - to store the personal account no. char name[20] - to store the name float taxableinc - to store the total annual taxable income. float tax - to store the tax that is calculated. 5

7 void Trip(int PC=20) TripNo++, PassengerCount+=PC; void StatusShow() cout<<mno<< : <<TripNo<< : <<PassengerCount<<endl; ; METRO M(5), T; M.Trip(); M.StatusShow(); T.StatusShow(); M.StatusShow(); computetax ( )- A function to compute tax from the following rule:- Total Annual Taxable Income Rate of Taxation Up to % Greater than 60000, less than = % Above , upto % Above % Public Members :- inputdata ( ) - A function to enter the data and call the compute tax( ) function. Display ( ) - To display the data. FORTH WEEK Constructors & Destructors MLP (MINIMUM LEARNING PACKAGE) 1. A common place to buy candy is from a machine. The machine sells candies, chips, gum, and cookies. You have been asked to write a program for this candy machine. The program should do the following: 1.Show the customer the different products sold by the candy machine. 2.Let the customer make the selection. 3.Show the customer the cost of the item selected. 4.Accept money from the customer. 5.Release the item. The machine has two main components: a built-in cash register and several dispensers to hold and release the products. 2. What is a copy constructor? Give a suitable example in C++ to illustrate with its definition within a class and a declaration of an object with the help of it. 3. What do you mean by Regular Constructor? 4. Define class dispensertype in C++ with the following descriptions : Private Members: numberofitems of type integer cost of type integer Public Members: A default constructor dispensertype () sets the cost and number of items in the dispenser to 50 and 50. A constructor dispensertype (int,int) sets the cost and number of items in the dispenser to the values specified by the user. A function getnoofitems() to return the value of numberofitems. A function getcost() to return the value of cost. A function makesale() to reduce the number of items by 1 4. Explain with suitable examples how to create the object by calling the constructor implicitly and explicitly. HOT(HIGH ORDER THINKING) 1. Define class cashregister in C++ with the following descriptions : Private Members: cashonhand of type integer Public Members: A default constructor cashregister() sets the cash in the register to 500. A constructor cashregister(int) sets the cash in the register to a specific amount. A function getcurrentbalance() which returns value of cashonhand A function acceptamount(int) to receive the amount deposited by the customer and update the amount in the register 3. Consider the definition of the following class: class Sample private: int x; double y; public : Sample(); //Constructor 1 Sample(int); //Constructor 2 Sample(int, int); //Constructor 3 Sample(int, double); //Constructor 4 ; i. Write the definition of the constructor 1 so that the private member variables are initialized to 0. ii. Write the definition of the constructor 2 so that the private member variable x is initialized according to the value of the parameter, and the private member variable y is initialized to 0. iii. Write the definition of the constructors 3 and 4 so that the private member variables are initialized according to the values of the parameters. 6

8 5. What do you mean by Shadowing / Overriding Base Class Functions in Derived Class? 2. Answer the questions (i) and (ii) after going through the following class: 2 class player int health; int age; public: player() health=6; age=18 //Constructor1 player(int s, int a) health =s; age = a ; //Constructor2 player( player &p) //Constructor3 ~player() cout<< Memory Deallocate ; //Destructor ; player p1(7,24); //Statement1 player p3 = p1; //Statement3 (i) When p3 object created specify which constructor invoked and why? (ii) Write complete definition for Constructor3? 4. Given the program Main() cout<< Happy Summer Vacations Modify it to produce the following output without changing main() in anyway. Starting. Happy Summer Vacations Reading,Writing and Enjoying. Best of Luck 4. Consider the following declaration : class welcome public: welcome (int x, char ch); // constructor with parameter welcome(); // constructor without parameter void compute(); private: int x; char ch; ; which of the following are valid statements welcome obj (33, a9 ); welcome obj1(50, 9 ); welcome obj3(); obj1= welcome (45, T ); obj3= welcome; 3. Define a class SalesCounter with folloeing specifications: Data members: Net_amt, Amount Real values ClothType - string( 30), Pay_mode string (30) Member functions O Constructor to initialize the Amount as 0, ClothType as Cotton, Pay_mode as Cash, Net_amt as 0 O Calc_net () to calculate discount and net_amt. The Company offers discount scheme on each purchase to the customer. The scheme is as follows Purchase above 5000 and avail discount of 10% Purchase above 7500 and avail discount of 15% Purchase above 5000 and avail discount of 5% Purchase above 7500 and avail discount of 10% Purchase above 5000 and avail discount of 15% Purchase above 7500 and avail discount of 25% Now if the customer is paying by Cash an additional 2% discount will be given to them. If by Cheque no discount will be given, if payment mode is credit card 2.5% tax has to be paid by the customer on the total purchase. Purchase () The Salesman will enter the detail of the purchasing made by the customer and will also enter the payment mode(cash/cheque/credit CARD ), and will invoke the Calc_net() to calculate the net amount Show() The function will generate the bill to the customer along with the purchase details and the amount to be paid 7

9 FIFTH WEEK Database Concepts, SQL Concepts and Communication & Open Source Concepts And prepare short notes on the following Points. DATABASE AND SQL NETWORKING CONCEPTS What is DBMS? What is Network? What is relational database model? Need for Networking? Relation Netwok Goals Tuples Application of Networks SQL Evolution of Networking DDL (ARPANET,INTERNET,Inters DML pace) Elementary Terminology of network Relational Algebra Switching Techniques Selection (Message,Packet,Circuit) Projection Transmission Media, Guided and Unguided Media, About Cables Union Data Communication Cartesian Product Terminologies Types of Networks (LAN,MAN,WAN,PAN) Domain Network Topologies Degree Networking Devices Cardinality Communication Protocols Keys Wireless/Mobile Computing Candidate Key: Primary Key: Alternate Key: Networking terms and concepts Super Key Structured Query Language (SQL) Introduction to open source based software Advantages of using SQL: Concept of Network Security Types of SQL Statements Viruses Data Definition Language (DDL) statement Create table Drop table Alter table Data Manipulation Language (DML) statement Select Update Delete Insert Transaction Control Statement What do you understand by the term Freeware and Shareware? Write a note on Apache server. Write the components of Mozila/Apache software suite. Write down any two applications of PHP. Explain W3C. Security Threats Cyber Crime and Cyber Law Give full forms of the following: A) CDMA B) GSM C) FTP D) SLIP E) TCP/IP F) WLL 8

10 G) EDGE H) FLOSS I) GNU J) FSF K) POP Illustrate the layout for connecting 5 computers in a Bus and a Star topology of Networks. (b) What is a spam mail? (c) Differentiate between ftp and http. 1 (d) Out of the following, which is the fastest (i) wired and (ii) wireless medium of communication? Infrared, Coaxial Cable, Ethernet Cable, Microwave, Optical Fiber (e) What is Worm? How is it removed? (f) Out of the following, which all comes under cyber crime? (i) Stealing away a brand new computer from a showroom. (ii) Getting in someone s social networking account without his consent and posting pictures on his behalf to harass him. (iii) Secretly copying files from server of a call center and selling it to the other Organization. (iv) Viewing sites on a internet browser. L) SMTP M) NTP N) IMAP O) PPP P) NFS PREPARE YOURSELF FOR THE SCHOOL Happy Vacations!!! GOD Bless!!! 9 Created By- Sunil Kumar Verma, PGT Computer Science-083

K.V. NO 1 ARMAPUR Computer Science- XII Summer Vacation Home Assignment

K.V. NO 1 ARMAPUR Computer Science- XII Summer Vacation Home Assignment K.V. NO 1 ARMAPUR Computer Science- XII Summer Vacation Home Assignment-2017-18 By- Computer Science Home Assignment 2017-18 HOME ASSIGNMENT FOR SUMMER VACATION 2017-18 FIRST WEEK C++ Revision Tour MLP

More information

KENDRIYA VIDYALAYA NO-1 ARMAPUR

KENDRIYA VIDYALAYA NO-1 ARMAPUR HOME ASSIGNMENT FOR SUMMER VACATION DAYS LESSONS MLL (MINIMUM LEVEL LEARNING) HOT(HIGH ORDER THINKING) 1 2 3 4 1. Differentiate between call by value & call by reference with suitable examples in reference

More information

Write the names of the header files to which the following belong :

Write the names of the header files to which the following belong : Write the names of the header files to which the following belong : (i) puts( ) (ii) sin( ). What is the difference between call by value and call by reference? Give an example in C++ illustrate both.

More information

KENDRIYA VIDYALAYA PANGODE MONTHLY TEST I JUNE 2015 CLASS XII COMPUTER SCIENCE Time allowed: 1 1/2 Hours Max. Marks: 50

KENDRIYA VIDYALAYA PANGODE MONTHLY TEST I JUNE 2015 CLASS XII COMPUTER SCIENCE Time allowed: 1 1/2 Hours Max. Marks: 50 KENDRIYA VIDYALAYA PANGODE MONTHLY TEST I JUNE 2015 CLASS XII COMPUTER SCIENCE Time allowed: 1 1/2 Hours Max. Marks: 50 General Instructions: 1. All questions are compulsory. 2. Marks for each question

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

Q2) Define a class candidate in C++ with following Description: Private Members 4 Number) of type long

Q2) Define a class candidate in C++ with following Description: Private Members 4 Number) of type long KVITBP DEHRADUN SUMMER BREAK HOMEWORK, XII COMP SC, LEVEL A Q1) Define a class TEST in C++ with following description: Private Members: TestCode of type integer Description of type string NoCandidate of

More information

KENDRIYA VIDYALAYA SANGATHAN ERNAKULAM REGION FIRST COMMON PRE BOARD EXAMINATION

KENDRIYA VIDYALAYA SANGATHAN ERNAKULAM REGION FIRST COMMON PRE BOARD EXAMINATION KENDRIYA VIDYALAYA SANGATHAN ERNAKULAM REGION FIRST COMMON PRE BOARD EXAMINATION CLASS:XII SUB:COMPUTER SCIENCE Code No. 083 Instructions: (i) All questions are compulsory. (ii) Programming language: C++

More information

HOLIDAYS HOMEWORK CLASS : XII. Subject : Computer Science

HOLIDAYS HOMEWORK CLASS : XII. Subject : Computer Science HOLIDAYS HOMEWORK 2017-18 CLASS : XII Subject : Computer Science Note : Attempt the following questions in a separate register and make yourself prepared to conquer the world. Chapter- 1 : C++ Revision

More information

Autumn Break 2017 Exam Oriented Assignment Class-XII B, Computer Science

Autumn Break 2017 Exam Oriented Assignment Class-XII B, Computer Science Autumn Break 2017 Exam Oriented Assignment Class-XII B, Computer Science S.No. 1 Name of Chapter/Topic CLASSES AND OBJECTS HOT Questions 1. What do you understand by member function? 2. Differentiate between

More information

CBSE Sample Paper for Computer Science Class XII.

CBSE Sample Paper for Computer Science Class XII. CBSE Sample Paper for Computer Science Class XII. Time allowed : 3 hours Maximum marks : 70 Question-1 1. (a) Define Multilevel and Multiple Inheritance with example. [ 2 Mark] (b) Define a class ELECTION

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

ITL Public School First Term( )

ITL Public School First Term( ) ITL Public School First Term(06-7) Date:9.09.6 Class: XI Computer Science(08) Time: hrs. M. M: 70 General Instructions: There are 7 questions in total. Marks are given against all the questions Try to

More information

KENDRIYA VIDYALAYA TIRUMALAGIRI,SECUNDERABAD UNIT TEST II

KENDRIYA VIDYALAYA TIRUMALAGIRI,SECUNDERABAD UNIT TEST II KENDRIYA VIDYALAYA TIRUMALAGIRI,SECUNDERABAD UNIT TEST II SUB : COMPUTER SCIENCE CLASS : XII TIME : 90 MINS M.M: 40 1.a. Differentiate between default & parameterized constructor with suitable example.

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

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

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

KENDRIYA VIDYALAYA NO.1 SAGAR XII-COMPUTER SCIENCE ( ) HOMEWORK SUMMER VACATION

KENDRIYA VIDYALAYA NO.1 SAGAR XII-COMPUTER SCIENCE ( ) HOMEWORK SUMMER VACATION KENDRIYA VIDYALAYA NO.1 SAGAR XII-COMPUTER SCIENCE (2018-19) HOMEWORK SUMMER VACATION 1.(a) Differentiate between Actual and Formal parameters. Also give suitable C++ code to illustrate both. (b) What

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

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

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

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

(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

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

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, 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

Sample Paper 2012 Class XII Subject COMPUTER SCIENCE (Theory)

Sample Paper 2012 Class XII Subject COMPUTER SCIENCE (Theory) Sample Paper 2012 Class XII Subject COMPUTER SCIENCE (Theory) Time Allowed: 3hours Maximum Marks: 70 Note. (i) All questions are compulsory. (ii) Programming Language: C+ + Ques 1. (a)what is the difference

More information

Computer Science, Class XII ( ) (Summer Vacation-2015) (Holiday H.W) Chapter No.1 to 3

Computer Science, Class XII ( ) (Summer Vacation-2015) (Holiday H.W) Chapter No.1 to 3 (Summer Vacation-2015) (Holiday H.W) Chapter No.1 to 3 1. Why main function is so special in C++? Give at least two reasons. /* CBSE 1999 */ 2. Differentiate between call by value & call by reference with

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

include<iostream.h> #define PI=3.14 void main( ) { float r;a; cout<< enter any radius ; cin>>r; a=pi*pow(r,2); cout<< Area= <<a }

include<iostream.h> #define PI=3.14 void main( ) { float r;a; cout<< enter any radius ; cin>>r; a=pi*pow(r,2); cout<< Area= <<a } 1. Explain Gloabal and local variable with suitable example. 2. Difference between a runtime error and a syntax error. Give one example of each. 3. Difference between formal parameters and actual parameters.

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

Computer Science XII Important Concepts for CBSE Examination Questions

Computer Science XII Important Concepts for CBSE Examination Questions Computer Science XII Important Concepts for CBSE Examination Questions LEARN FOLLOWIING GIVEN CONCEPS 1. Encapsulation: Wraps up data and functions under single unit through class. Create a class as example.

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

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

DATA FILE HANDLING. The function should create another file OUT.TXT with the text

DATA FILE HANDLING. The function should create another file OUT.TXT with the text DATA FILE HANDLING (a) What is the purpose of seekp() and seekg( )1) (b) Write a function in C++ to read a text file SPACE.TXT. Using this file create another file OUT.TXT by replacing more than one space

More information

INTERNATIONAL INDIAN SCHOOL, RIYADH. Ch 1 C++ Revision tour

INTERNATIONAL INDIAN SCHOOL, RIYADH. Ch 1 C++ Revision tour Grade- XII Computer Science Worksheet Ch 1 C++ Revision tour 1) Explain in brief the purpose of function prototype with the help of a suitable example. 2) What is the benefit of using default parameter/argument

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

SAMPLE PAPER-2015 CLASS-XII COMPUTER SCIENCE Time allowed: 3 hr. MM: 70

SAMPLE PAPER-2015 CLASS-XII COMPUTER SCIENCE Time allowed: 3 hr. MM: 70 SAMPLE PAPER-2015 CLASS-XII COMPUTER SCIENCE Time allowed: 3 hr. MM: 70 1. (a) While implementing encapsulation, abstraction is also implemented. Comment 2 (b) Name the header file to which the following

More information

Constructor & Classes Questions

Constructor & Classes Questions (1)Answer the questions (i) and (ii) after going through the following program: class Match int Time; Match() //Function 1 Time=0; cout

More information

#include<iostream.h> #include<conio.h> #include<ctype.h>

#include<iostream.h> #include<conio.h> #include<ctype.h> Sample Paper -205 Sub:Computer Science Class XII Time: 3Hours Maximum Marks: 70 Note. (i) All questions are compulsory. (ii) Programming Language: C++.(a)Give the difference between the type casting and

More information

KENDRIYA VIDYALAYA NO.02 AFS HINDAN G.BAD Holiday Homework Class XII Computer Science

KENDRIYA VIDYALAYA NO.02 AFS HINDAN G.BAD Holiday Homework Class XII Computer Science KENDRIYA VIDYALAYA NO.02 AFS HINDAN G.BAD Holiday Homework 2018-19 Class XII Computer Science Topics covered 1) Classes and objects 2) Constructors and destructors 3) Inheritance 4) Review of class XI

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

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

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

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

Downloaded from

Downloaded from Unit I Chapter -1 PROGRAMMING IN C++ Review: C++ covered in C++ Q1. What are the limitations of Procedural Programming? Ans. Limitation of Procedural Programming Paradigm 1. Emphasis on algorithm rather

More information

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

COMPUTER SCIENCE. Time allowed : 3 hours Maximum Marks : 70 SET-4 Series SSO 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 20 printed pages. Code number given on the right

More information

OBJECT ORIENTED PROGRAMMING. Ms. Ajeta Nandal C.R.Polytechnic,Rohtak

OBJECT ORIENTED PROGRAMMING. Ms. Ajeta Nandal C.R.Polytechnic,Rohtak OBJECT ORIENTED PROGRAMMING Ms. Ajeta Nandal C.R.Polytechnic,Rohtak OBJECT ORIENTED PARADIGM Object 2 Object 1 Data Data Function Function Object 3 Data Function 2 WHAT IS A MODEL? A model is an abstraction

More information

CHAPTER 4 FUNCTIONS. 4.1 Introduction

CHAPTER 4 FUNCTIONS. 4.1 Introduction CHAPTER 4 FUNCTIONS 4.1 Introduction Functions are the building blocks of C++ programs. Functions are also the executable segments in a program. The starting point for the execution of a program is main

More information

BRAIN INTERNATIONAL SCHOOL Term-II Class-XI Sub:- Computer Science Revision Sheet

BRAIN INTERNATIONAL SCHOOL Term-II Class-XI Sub:- Computer Science Revision Sheet BRAIN INTERNATIONAL SCHOOL Term-II Class-XI 2018-19 Computer Organisation Sub:- Computer Science Revision Sheet 1. Which electronic device invention brought revolution in earlier computers? 2. Which memory

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

I BCS-031 BACHELOR OF COMPUTER APPLICATIONS (BCA) (Revised) Term-End Examination. June, 2015 BCS-031 : PROGRAMMING IN C ++

I BCS-031 BACHELOR OF COMPUTER APPLICATIONS (BCA) (Revised) Term-End Examination. June, 2015 BCS-031 : PROGRAMMING IN C ++ No. of Printed Pages : 3 I BCS-031 BACHELOR OF COMPUTER APPLICATIONS (BCA) (Revised) Term-End Examination 05723. June, 2015 BCS-031 : PROGRAMMING IN C ++ Time : 3 hours Maximum Marks : 100 (Weightage 75%)

More information

I Mid Semester May 2012 : Class XII : Computer Science Max Mark 50 : Time 2 Hrs. 1. a) What is macro in C++? Give example 2

I Mid Semester May 2012 : Class XII : Computer Science Max Mark 50 : Time 2 Hrs. 1. a) What is macro in C++? Give example 2 I Mid Semester May 01 : Class XII : Computer Science Max Mark 50 : Time Hrs 1. a) What is macro in C++? Give example b) Give the Header file for the following functions:- i) gets ( ) ii) tolower( ) 1 c)

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

Summer Holiday Home Work Informatics Practices Class 12 th

Summer Holiday Home Work Informatics Practices Class 12 th Summer Holiday Home Work Informatics Practices Class 12 th COMUTER NETWORKING Very Short Answer Questions 1. Define a network. 2. Write two advantages of networks. 3. Write two disadvantages of networks.

More information

SRI SARASWATHI MATRIC HR SEC SCHOOL PANAPAKKAM +2 IMPORTANT 2 MARK AND 5 MARK QUESTIONS COMPUTER SCIENCE VOLUME I 2 MARKS

SRI SARASWATHI MATRIC HR SEC SCHOOL PANAPAKKAM +2 IMPORTANT 2 MARK AND 5 MARK QUESTIONS COMPUTER SCIENCE VOLUME I 2 MARKS SRI SARASWATHI MATRIC HR SEC SCHOOL PANAPAKKAM +2 IMPORTANT 2 MARK AND 5 MARK QUESTIONS COMPUTER SCIENCE VOLUME I 2 MARKS 1. How to work with multiple documents in StarOffice Writer? 2. What is meant by

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

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

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

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

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

KE DRIYA VIDYALAYA SA GATHA,CHE AI REGIO. COMMO PRE-BOARD EXAMI ATIO COMPUTER SCIE CE CLASS- XII Time allowed : 3 hours Maximum Marks : 70

KE DRIYA VIDYALAYA SA GATHA,CHE AI REGIO. COMMO PRE-BOARD EXAMI ATIO COMPUTER SCIE CE CLASS- XII Time allowed : 3 hours Maximum Marks : 70 KE DRIYA VIDYALAYA SA GATHA,CHE AI REGIO. COMMO PRE-BOARD EXAMI ATIO 2008-09. COMPUTER SCIE CE CLASS- XII Time allowed : 3 hours Maximum Marks : 70 1. (a) Explain the difference between an actual parameter

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

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

Downloaded S. from Kiran, PGT (CS) KV, Malleswaram STRUCTURES. Downloaded from

Downloaded S. from Kiran,  PGT (CS) KV, Malleswaram STRUCTURES. Downloaded from Downloaded S. from Kiran, www.studiestoday.com PGT (CS) KV, STRUCTURES WHAT IS A STRUCTURE? Structure is a collection of logically related data. It is also a collection of dissimilar datatype. Downloaded

More information

Assignment-I. Date of Submission: (Computer Science)

Assignment-I. Date of Submission: (Computer Science) Assignment-I Date of Submission: 23-04-3013 (Computer Science) FIND THE OUTPUT OF FOLLOWING LINE OF CODE FROM QUESTION 1 TO 13 GENERAL /CALL BY VALUE AND CALL BY REFERENCE/SCOPE RESOLUTION Q 1 int f =

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

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

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

BRAIN INTERNATIONAL SCHOOL. Term-I Class XI Sub: Computer Science Revision Worksheet

BRAIN INTERNATIONAL SCHOOL. Term-I Class XI Sub: Computer Science Revision Worksheet BRAIN INTERNATIONAL SCHOOL Term-I Class XI 2018-19 Sub: Computer Science Revision Worksheet Chapter-1. Computer Overview 1. Which electronic device invention brought revolution in earlier computers? 2.

More information

THE INDIAN COMMUNITY SCHOOL, KUWAIT

THE INDIAN COMMUNITY SCHOOL, KUWAIT THE INDIAN COMMUNITY SCHOOL, KUWAIT SERIES : I SE / 2016-2017 CODE : N 083 MAX. MARKS : 70 TIME ALLOWED : 3 HOURS NO. OF PAGES : 9 COMPUTER SCIENCE ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

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

Kapil Sehgal PGT Computer. Science Ankleshwar Gujarat

Kapil Sehgal PGT Computer. Science Ankleshwar Gujarat Classes Chapter 4 Classes and Objects Data Hiding and Encapsulation Function in a Class Using Objects Static Class members Classes Class represents a group of Similar objects A class is a way to bind the

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

Object Oriented Pragramming (22316)

Object Oriented Pragramming (22316) Chapter 1 Principles of Object Oriented Programming (14 Marks) Q1. Give Characteristics of object oriented programming? Or Give features of object oriented programming? Ans: 1. Emphasis (focus) is on data

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

KENDRIYA VIDYALAYA ALIGANJ SHIFT-II HOLIDAY HOME WORK XII COMPUTER SCIENCE ARRAY AND STRUCTURES

KENDRIYA VIDYALAYA ALIGANJ SHIFT-II HOLIDAY HOME WORK XII COMPUTER SCIENCE ARRAY AND STRUCTURES KENDRIYA VIDYALAYA ALIGANJ SHIFT-II HOLIDAY HOME WORK- 2018-19 XII COMPUTER SCIENCE ARRAY AND STRUCTURES 1. Write a function which will take a string and returns the word count. Each word is separated

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

Padasalai.Net s Model Question Paper

Padasalai.Net s Model Question Paper Padasalai.Net s Model Question Paper STD: XII VOLUME - 2 MARKS: 150 SUB: COMPUTER SCIENCE TIME: 3 HRS PART I Choose the correct answer: 75 X 1 = 75 1. Which of the following is an object oriented programming

More information

Object-Oriented Programming (OOP) Fundamental Principles of OOP

Object-Oriented Programming (OOP) Fundamental Principles of OOP Object-Oriented Programming (OOP) O b j e c t O r i e n t e d P r o g r a m m i n g 1 Object-oriented programming is the successor of procedural programming. The problem with procedural programming is

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

Short Notes of CS201

Short Notes of CS201 #includes: Short Notes of CS201 The #include directive instructs the preprocessor to read and include a file into a source code file. The file name is typically enclosed with < and > if the file is a system

More information

OBJECT ORIENTED PROGRAMMING USING C++ CSCI Object Oriented Analysis and Design By Manali Torpe

OBJECT ORIENTED PROGRAMMING USING C++ CSCI Object Oriented Analysis and Design By Manali Torpe OBJECT ORIENTED PROGRAMMING USING C++ CSCI 5448- Object Oriented Analysis and Design By Manali Torpe Fundamentals of OOP Class Object Encapsulation Abstraction Inheritance Polymorphism Reusability C++

More information

INTERNATIONAL INDIAN SCHOOL, RIYADH XI XII BOYS SECTION INFORMATICS PRACTICES WORKSHEET 15 TH CHAPTER DATABASE TRANSACTION IMPORTANT QUESTION

INTERNATIONAL INDIAN SCHOOL, RIYADH XI XII BOYS SECTION INFORMATICS PRACTICES WORKSHEET 15 TH CHAPTER DATABASE TRANSACTION IMPORTANT QUESTION INTERNATIONAL INDIAN SCHOOL, RIYADH XI XII BOYS SECTION INFORMATICS PRACTICES WORKSHEET 15 TH CHAPTER DATABASE TRANSACTION Grade- XII IMPORTANT QUESTION 1. What is the benefit of Transaction? 2. What are

More information

COMPUTER SCIENCE(083) SAMPLE QUESTION PAPER CLASS XII

COMPUTER SCIENCE(083) SAMPLE QUESTION PAPER CLASS XII COMPUTER SCIENCE(083) SAMPLE QUESTION PAPER CLASS XII TIME: 3 HOURS MAX.MARK: 70 General Instructions- (i) All questions are compulsory (ii) Programming Language: C++ 1 (a) When a function is overloaded,

More information

Department of Computer science and Engineering Sub. Name: Object oriented programming and data structures Sub. Code: EC6301 Sem/Class: III/II-ECE Staff name: M.Kavipriya Two Mark Questions UNIT-1 1. List

More information

CS201 - Introduction to Programming Glossary By

CS201 - Introduction to Programming Glossary By CS201 - Introduction to Programming Glossary By #include : The #include directive instructs the preprocessor to read and include a file into a source code file. The file name is typically enclosed with

More information

SECTION A [Only for candidates, who opted for C++]

SECTION A [Only for candidates, who opted for C++] PRINCE PUBLIC SCHOOL HALF YEARLY EXAMINATION (2018-19) SAMPLE PAPER-1 COMPUTER SCIENCE XII TIME ALLOWED: 3 HOURS MAXIMUM MARKS: 70 General Instructions 1. This question paper conations 4 questions. 2.

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

CS304 Object Oriented Programming Final Term

CS304 Object Oriented Programming Final Term 1. Which of the following is the way to extract common behaviour and attributes from the given classes and make a separate class of those common behaviours and attributes? Generalization (pg 29) Sub-typing

More information

Come and join us at WebLyceum

Come and join us at WebLyceum Come and join us at WebLyceum For Past Papers, Quiz, Assignments, GDBs, Video Lectures etc Go to http://www.weblyceum.com and click Register In Case of any Problem Contact Administrators Rana Muhammad

More information

INDIAN SCHOOL MUSCAT FIRST TERM EXAMINATION

INDIAN SCHOOL MUSCAT FIRST TERM EXAMINATION Roll Number SET 1 INDIAN SCHOOL MUSCAT FIRST TERM EXAMINATION COMPUTER SCIENCE CLASS: XII Sub. Code: 08 Time Allotted: Hr 09.05.018 Max. Marks: 70 GENERAL INSTRUCTIONS: 1. All questions are compulsory..

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

Fast Introduction to Object Oriented Programming and C++

Fast Introduction to Object Oriented Programming and C++ Fast Introduction to Object Oriented Programming and C++ Daniel G. Aliaga Note: a compilation of slides from Jacques de Wet, Ohio State University, Chad Willwerth, and Daniel Aliaga. Outline Programming

More information

STRUCTURING OF PROGRAM

STRUCTURING OF PROGRAM Unit III MULTIPLE CHOICE QUESTIONS 1. Which of the following is the functionality of Data Abstraction? (a) Reduce Complexity (c) Parallelism Unit III 3.1 (b) Binds together code and data (d) None of the

More information

Darshan Institute of Engineering & Technology for Diploma Studies

Darshan Institute of Engineering & Technology for Diploma Studies 1. Explain Call by Value vs. Call by Reference Or Write a program to interchange (swap) value of two variables. Call By Value In call by value pass value, when we call the function. And copy this value

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

VIDYA BHARATI SCHOOL

VIDYA BHARATI SCHOOL VIDYA BHARATI SCHOOL SAMPLE PAPER-2016 CLASS-XII COMPUTER SCIENCE (C++) Time allowed: 3 hours Maximum Marks: 70 General Instruction 1. Please check that this question paper contains 7 questions. 2. Please

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

WT I (SET-I) Date: Class XI Sec. Time: 1 Hr. 10 min. Computer Science M.M.: 30

WT I (SET-I) Date: Class XI Sec. Time: 1 Hr. 10 min. Computer Science M.M.: 30 WT I (SET-I) Date: Class XI Sec. Time: 1 Hr. 10 min. Computer Science M.M.: 30 Name Roll No. Instructions: a) All questions are compulsory. b) There are 15 questions in this paper and each question carries

More information

CLASS XII INFORMATICS PRACTICES ACADEMIC SESSION FORTNIGHTLY BREAKUP OF SYLLABUS. Main Topic Sub Topics Pds Total Pds

CLASS XII INFORMATICS PRACTICES ACADEMIC SESSION FORTNIGHTLY BREAKUP OF SYLLABUS. Main Topic Sub Topics Pds Total Pds S. No Fortnight 1 19 th March 28 March (Block Teaching) Total no of days CLASS XII INFORMATICS PRACTICES ACADEMIC SESSION 2018-2019 FORTNIGHTLY BREAKUP OF SYLLABUS Main Topic Sub Topics Pds Total Pds 8

More information