GREENFIELDS PUBLIC SCHOOL HOLIDAY HOMEWORK- COMPUTER SCIENCE SESSION CLASS - XII STRUCTURED QUERY LANGUAGE

Size: px
Start display at page:

Download "GREENFIELDS PUBLIC SCHOOL HOLIDAY HOMEWORK- COMPUTER SCIENCE SESSION CLASS - XII STRUCTURED QUERY LANGUAGE"

Transcription

1 GREENFIELDS PUBLIC SCHOOL HOLIDAY HOMEWORK- COMPUTER SCIENCE SESSION CLASS - XII STRUCTURED QUERY LANGUAGE 1. Write SQL Command for (a) to (d) and output of (g) TABLE : GRADUATE SNO NAME STIPEND SUBJECT AVERAGE DIV 1 KARAN 400 PHYSICS 68 I 2 DIWAKAR 450 COMP. Sc. 68 I 3 DIVYA 300 CHEMISTRY 62 I 4 REKHA 350 PHYSICS 63 I 5 ARJUN 500 MATHS 70 I 6 SABINA 400 CEHMISTRY 55 II 7 JOHN 250 PHYSICS 64 I 8 ROBERT 450 MATHS 68 I 9 RUBINA 500 COMP. Sc. 62 I 10 VIKAS 400 MATHS 57 II (I) Write SQL commands for the following statements: i. List the names of those students who have obtained DIV I sorted by NAME. ii. Display a report, listing NAME, STIPEND, SUBJECT and amount of stipend received in a year assuming that the STIPEND is paid every iii. month. To count the number of students who are either PHYSICS or COMPUTER SC graduates. iv. To insert a new row in the GRADUATE table: 11, KAJOL, 300, computer sc, 75, 1 (II) Give the output of the following SQL queries: v. Select MIN(AVERAGE) from GRADUATE where SUBJECT= PHYSICS ; vi. Select SUM(STIPEND) from GRADUATE WHERE div=2; vii. Select AVG(STIPEND) from GRADUATE where AVERAGE>=65; viii. Select COUNT(distinct SUBJECT) from GRADUATE; 2. Write SQL queries for (i) to (iv) and find outputs for SQL queries (v) to (viii), which are based on the tables. Table: VEHICLE CODE VTYPE PERKM 101 VOLVO BUS AC DELUXE BUS ORDINARY BUS SUV CAR 20 Note: PERKM is Freight Charges per kilometer VTYPE is Vehicle Type -1-

2 Table: TRAVEL NO NAME TDATE KM CODE NOP 101 Janish Kin Vedika Sahai Tarun Ram John Fen Ahmed Khan Raveena Kripal Anya Note: NO is Traveler Number KM is Kilometer travelled NOP is number of travelers travelled in vehicle TDATE is Travel Date (I) Write SQL commands for the following statements: (i) To display NO, NAME, TDATE from the table TRAVEL in descending order of NO. (ii) To display the NAME of all the travelers from the table TRAVEL who are travelling by vehicle with code 101 or 102. (iii) To display the NO and NAME of those travelers from the table TRAVEL who travelled between and (iv) To display all the details from table TRAVEL for the travelers, who have travelled distance more than 100 KM in ascending order of NOP. (II) Give the output of the following SQL queries: (v) SELECT COUNT (*), CODE FROM TRAVEL GROUP BY CODE HAVING COUNT(*)>1; (vi) SELECT DISTINCT CODE FROM TRAVEL; (i) SELECT A.CODE,NAME,VTYPE FROM TRAVEL A,VEHICLE B WHERE A.CODE=B.CODE AND KM<90; (ii) SELECT NAME,KM*PERKM FROM TRAVEL A, VEHICLE B WHERE A.CODE=B.CODE AND A.CODE= 105 ; 3. Consider the following WORKERS and DESIG. Write SQL commands for the statements (i) to (iv) and give outputs for SQL queries (v) to (vi): WORKERS W_ID FIRSTNAME LASTNAME ADDRESS CITY 102 Sam Tones 33 Elm St. Paris 105 Sarah Ackerman 440 U.S. 110 New York 144 Manila Sengupta 24 Friends Street New Delhi 210 George Smith 83 First Street Howard 255 Mary Jones 842 Vine Ave. Losantiville 300 Robert Samuel 9 Fifth Cross Washington 335 Henry Williams 12 Moore Street Boston 403 Ronny Lee 121 Harrison St New York 451 Pat Thompson 11 Red Road Paris -2-

3 DESIG W_ID SALARY BENEFITS DESIGNATION Manager Director Manager Manager Clerk Clerk Clerk Salesman Salesman (I) Write SQL commands for the following statements: (i) To display the content of workers table in ascending order of first name. (ii) To display the FIRSTNAME, CITY and TOTAL SALARY of all Clerks from the tables workers and design, where TOTAL SALARY = SALARY + BENEFITS. (iii) To display the minimum SALARY among Managers and Clerks from the table DESIG. (iv) Increase the BENEFITS of all Salesmen by 10% in table DESIG. (II) Give the output of the following SQL queries: (v) SELECT FIRSTNAME, SALARY FROM WORKERS, DESIG WHERE DESIGNATION = Manager AND WORKERS.W_ID = DESIG.W_ID; (vi) SELECT DESIGNATION, SUM(SALARY) FROM DESIG GROUP BY DESIGNATION HAVING COUNT(*)>=2 ; 4. Consider the following DEPT and WORKER tables. Write SQL queries for (i) to (iv) and find outputs for SQL queries (v) to (viii): Table: DEPT DCODE DEPARTMENT CITY D01 MEDIA DELHI D02 MARKETING DELHI D03 INFRASTRUCTURE MUMBAI D05 FINANCE KOLKATA D04 HUMAN RESOURCE MUMBAI Table : WORKER WNO NAME DOJ DOB GENDER DCODE 1001 George K MALE D Ryma Sen FEMALE D Mohitesh MALE D Anil Jha MALE D Manila Sahai FEMALE D R SAHAY MALE D Jaya Priya FEMALE D05 Note: DOJ refers to date of joining and DOB refers to date of Birth of workers. (I) Write SQL commands for the following statements: (i) To display Wno, Name, Gender from the table WORKER in descending order of Wno. (ii) To display the Name of all the FEMALE workers from the table WORKER. -3-

4 (iii) To display the Wno and Name of those workers from the table WORKER who are born between and (iv) To count and display MALE workers who have joined after (II) Give the output of the following SQL queries: (v) SELECT COUNT(*), DCODE FROM WORKER GROUP BY DCODE HAVING COUNT(*)>1; (vi) SELECT DISTINCT DEPARTMENT FROM DEPT; (vii) SELECT NAME, DEPARTMENT, CITY FROM WORKER W,DEPT D WHERE W.DCODE=D.DCODE AND WNO<1003; (viii) SELECT MAX(DOJ), MIN(DOB) FROM WORKER; 5. Consider the following tables Stationary and Consumer. Write SQL commands for the statement (i) to (iv) and output for SQL queries (v) to (viii): Table: Stationary S_ID Company Price GP02 ABC 15 PL01 PQR 5 PL02 XYZ 7 DP01 PQR 6 PL01 XYZ 8 Table: Consumer C_ID ConsumerName Address S_ID 01 Good Learner Delhi PL01 06 Write Well Mumbai GP02 12 Topper Delhi DP01 15 Write & Draw Delhi PL02 16 Motivation Bangalore PL01 (I) Write SQL commands for the following statements: (i) To display the details of those consumers whose Address is Delhi. (ii) To display the details of Stationary whose Price is in the range of 8 to 15. (Both Value included) (iii) To display the ConsumerName, Address from Table Consumer, and Company and Price from table Stationary, with their corresponding matching S_ID. (iv) To increase the Price of all stationary by 2. (II) Give the output of the following SQL queries: (v) SELECT DISTINCT Address FROM Consumer; (vi) SELECT Company, MAX(Price), MIN(Price), COUNT(*) from Stationary GROUP BY Company; (vii) SELECT Consumer.ConsumerName, Stationary.StationaryName, Stationary.Price FROM Strionary, Consumer WHERE Consumer.S_ID=Stationary.S_ID; (viii) Select StationaryName, Price*3 From Stationary; -4-

5 Boolean Rules: BOOLEAN ALGEBRA 1. State DeMorgan's Law. Verify one of the Demorgan s Laws using truth tables. 2. State Absorption Laws. Verify one of the Absorption Laws using truth tables. 3. Verify X Y + X.Y + X.Y = (X +Y ) using truth table. 4. Verify the following algebraically: (A +B ).(A+B) = A.B +A.B 5. Verify the following using Truth Table: a. X.X = 0 b. X+1 = 1 6. Verify X.Y+X.Y =(X +Y ).(X+Y) algebraically. 7. Prove X'Y + Z = (X' + Y' + Z)(X +Y+Z)(X+Y + Z) algebraically. 8. Prove: X'.Y+Y.Z = X'.Y.Z + X'.Y.Z + X.Y.Z + X'.Y'.Z algebraically. 9. Prove algebraically: X.Y + X.Z +Y.Z = X.Y + X.Z 10. Prove: XY+ YZ + YZ' = Y SOP and POS expressions: 1. Write the dual of the Boolean expression (U+ W). (V'.U + W) 2. Write the dual of the Boolean expression (x+y).(x'+y') 3. Given the following truth table, derive a sum of product (SOP) and Product of Sum (POS) form of Boolean expression from it : A B C F(A,B,C) Write the SOP form of a Boolean Function F, which is represented by the following truth table: A B C F

6 5. Write the POS form of a Boolean Function H, which represented in a truth table as follows: A B C H Convert the following Boolean expression into its equivalent Canonical Product of Sum form: X.Y.Z+X.Y.Z+X.Y.Z 7. Derive the canonical SOP and POS expression for the following: F=(A+B ).(A+C ) 8. Convert the following in canonical POS and SOP expression for the following: a. F(A,B,C)= (0,3,4,7) b. F(X,Y,Z)=π(2,5,6,7) Logic Diagram: 1. Write the equivalent Boolean expression for the following Logic Circuit: 2. Write the equivalent Boolean Expression for the following Logic Circuit: -6-

7 3. Write the equivalent Boolean Expression for the following Logic circuit : 4. Write the equivalent Boolean Expression for the following Logic Circuit. 5. Draw a logical Circuit Diagram for the following Boolean Expression: A.(B+C ) 6. Draw the logic circuit for F=A.B' + C.D' 7. Represent the Boolean expression Y.Z+X.Z with the help of NAND gates only. Minimization of Boolean expression using K-Map: 1. Obtain simplified form for a Boolean expression using Karnaugh Map. F(x,y,z,w) = Σ(1,3, 4, 5, 7, 9,11, 12, 13, 15) 2. If F(a, b, c, d) = Σ(0, 2, 4, 5, 7, 8, 10, 12, 13, 15), obtain the simplified form using K-Map. 3. Obtain a simplified form for the following Boolean Expression using Karnaugh s Map : F(a, b, c, d) = Σ (0, 1, 2, 4, 5, 7, 8, 9, 10, 11, 14) 4. Obtain simplified form for a Boolean expression using K Map: F(x,y,z,w) = Σ(1,3,4,5,7,9,11,12,13,15) 5. Obtain a simplified form for a Boolean expression using K-Map. F(u,v,w,z) = π (0,1, 3, 5, 7, 9,10,11,12, 13,15) 6. Minimize F(w,x,y,z) Karnaugh map: F(w, x, y, z) =Σ(0, 4, 8, 12) 7. Reduce the following Boolean expression using K - Map: F(A, B, C, D) = π(o, 1, 2, 3, 4, 5, 10, 11, 15) 8. Reduce the following Boolean expression using K-Map: F(U,V,W,Z) = Σ (0, 1, 2, 3, 4, 10, 11) 9. Reduce the following Boolean Expression using K-Map: F(P, Q, R, S) = Σ (1, 2, 3, 5, 6, 7, 9, 11, 12, 13, 15) -7-

8 10. Reduce the following Boolean expression using K-map: F(U,V,W,Z)= π (3,5,7,10,11,13,15,) COMMUNICATION AND NETWORKING CONCEPTS Fundamentals of Networking 1. What is the difference between Circuit Switching technique and Packet Switching technique? 2. Define the term Bandwidth. Give unit of Bandwidth. 3. What was the role of ARPANET in Computer Network? 4. What do you understand by a backbone network? 5. Define Packet Switching. 6. Which of the following is not a unit for data transfer rate? a. bps b. abps c. gbps d. kbps 7. Which of the following unit measures the speed with which data can be transmitted from one node to another node of a network? Also, give the expansion of the suggested unit. a. Mbps b. KMph c. MGps 8. Name proprietary software along with their application. 9. Mention any two advantages of Open Source Software over Proprietary Software. Transmission Medium 10. Write one difference between coaxial and optical cable. 11. What is the significance of Cyber law? Network Devices 12. What is the purpose of using a MODEM? Network Protocol 13. What out of following, will you use to have an audio-visual chat with an expert sitting in a faraway place to fix-up a technical issue? a. VoIP b. -8-

9 c. FTP 14. Expand the following terminologies : a. TCP/IP b. FTP 15. What is the purpose of using FTP? 16. What is protocol? Which protocol is used to search information from Internet using the Internet Browser? 17. What is VoIP? Network Topology 18. What is the difference between STAR topology and BUS topology of network? 19. Write two advantages and two disadvantages for STAR topology. 20. Give two advantages and two disadvantages of Tree topologies. 21. Write the two advantages and two disadvantages of Bus Topology in network. Network Terminologies 22. What is the purpose of Telnet? 23. Write the following abbreviations in their full form : a. OSI b. XML c. CDMA 24. Compare freeware and Shareware. Types of Network 25. What is the difference between LAN and MAN? 26. Expand the following terminologies: a. LAN b. WLL 27. What is the difference between WAN and MAN? 28. What is the difference between LAN and WAN? Websites 29. Expand the following terminologies: c. HTML d. XML e. GSM -9-

10 30. Which of the following is not a Client Side script: a. VB Script b. Java Script c. ASP d. PHP 31. Explain the following terms in short : a. URL 32. What is the purpose of using a Web Browser? Name any one commonly used Web Browser. 33. Give suitable example of URL and Domain Name. 34. What are cookies? 35. Name any two common Web browsers. Internet Security 36. Write two application of Cyber Law. 37. Differentiate between Hackers and Crackers. 38. What is the difference between Trojan Horse and Virus in terms of computers? 39. Define the term firewall. 40. Give two major reasons to have network security. 41. If someone has hacked your Website, to whom you lodge the Complain? 42. What term we use for a software/hardware device, which is used to block, unauthorized access while permitting authorized communications. This term is also used for a device or set of devices configured to permit, deny, encrypt, or proxy all (in and out)computer traffic between different security domains based upon a set of rules and other criteria. 43. What do you mean by IP Address? How is it useful in Computer Security? 44. How Trojan Horses are different from Worms? Mention any one difference. 45. What do you mean by Spam Mails? How can you protect your mailbox from Spams? 46. Which of the following will come under Cyber Crime? i. Theft of a brand new sealed pack Laptop ii. Access to a bank account for getting unauthorized Money Transaction iii. Modification in a company data with unauthorized access iv. Photocopying a printed report Case Study -10-

11 1. The Great Brain Organisation has set up its new Branch at Srinagar for its office and web based activities. It has 4 Wings of buildings as shown in the diagram: i. Suggest a most suitable cable layout of connections between the Wings, and topology. ii. Suggest the most suitable place (i.e. Wing) to house the server of this organisation with a suitable reason, with justification iii. Suggest the placement of the following devices with justification: a. Repeater b. Hub/Switch iv. The organization is planning to link its head office situated in Delhi with the offices at Srinagar. Suggest an economic way to connect it; the company is ready to compromise on the speed of connectivity. Justify your answer. 2. UNIVERSITY OF CORRESPONDENCE in Allahabad is setting up the network between its different wings. There are 4 wings named as Science (S), Journalism (J), ARTS (A) and Home Science (H). i. Suggest a suitable topology for networking the computer of all wings. ii. Name the wing where the Server to be installed. Justify your answer. iii. Suggest the placement of Hub/Switch in the network. iv. Mention an economic technology to provide internet accessibility to all wings. 3. INDIAN PUBLIC SCHOOL in Darjeeling is setting up the network between its different wings. There are 4 wings named as SENIOR(S), JUNIOR(J), ADMIN(A) and HOSTELCH). -11-

12 i. Suggest a suitable topology for networking the computer of all wings. ii. Name the wing where the Server to be installed. Justify your answer. iii. Suggest the placement of Hub/Switch in the network. iv. Mention an economic technology to provide internet accessibility to all wings. 4. Hindustan Connecting World Association is planning to start their offices in four major cities in India to provide regional IT infrastructure support in the field of Education & Culture. The company has planned to set up their head office in New Delhi in three locations and have named their New Delhi offices as Sales Office, Head Office and Tech Office. The company s regional offices are located at Coimbatore, Kolkata and Ahmedabad. A rough layout of the same is as follows i. Suggest network type (out of LAN, MAN, WAN) for connecting each of the following set of their offices: Head Office and Tech Office Head Office and Coimbatore Office ii. Which device will you suggest to be procured by the company for connecting all the computers within each of, their offices out of the following devices? Modem Telephone Switch/Hub -12-

13 iii. iv. Which of the following communication media, will you suggest to be procured by the company for connecting their local offices in New Delhi for very effective and fast communication? Ethernet Cable Optical Fiber Telephone Cable Suggest a cable/wiring layout for connecting the company s local offices located in New Delhi. Also,, suggest an effective method/technology for connecting the company s regional offices at Kolkata, Coimbatore and Ahmedabad. 5. Bhartiya Connectivity Association is planning to spread their offices in four major cities in India to provide regional IT infrastructure support in the field of Education & Culture. The company has planned to setup their head office in New Delhi in three locations and have named their New Delhi offices as Front Office, Back Office and Work Office. The company has three more regional offices as South Office, East Office and West Office located in other three major cities of India. A rough layout of the same is as follows: i. Suggest network type (out of LAN, MAN, WAN) for connecting each of the following set of their offices : Back Office and Work Office Back Office and South Office ii. Which device you will suggest to be procured by the company for connecting all the computers with in each of their offices out of the following devices? Switch/Hub Modem -13-

14 iii. iv. Telephone Which of the following communication medium, you will suggest to be procured by the company for connecting their local offices in New Delhi for very effective and fast communication? Telephone Cable Optical Fiber Ethernet Cable Suggest a cable/wiring layout for connecting the company s local offices located in New Delhi. Also, suggest an effective method/technology for connecting the company s regional offices- East Office, West Office and South Office with offices located in New Delhi. -14-

(Structured Query Language)

(Structured Query Language) KENDRIYA VIDYALAYA HALDWANI 2 ND SHIFT CLASS XII SESSION 2016-17 DATABASE CONCEPTS, SQL ISSUED DATE: 12.05.2016 SUBMITTED DATE: 24.06.2016 ==============================================================================

More information

HOLIDAY HOME WORK COMPUTER NETWORK AND COMMUNICATION

HOLIDAY HOME WORK COMPUTER NETWORK AND COMMUNICATION HOLIDAY HOME WORK COMPUTER NETWORK AND COMMUNICATION Ques. a) What was the role of ARPANET in the Computer Network? 2 b) Which of the following units measures the speed with which data can be transmitted

More information

Q5 Question Based on SQL & Database Concept Total Marks 8. Theory Question 2 Marks / SQL Commands 6 Marks / Output of commands 2 Marks

Q5 Question Based on SQL & Database Concept Total Marks 8. Theory Question 2 Marks / SQL Commands 6 Marks / Output of commands 2 Marks Q5 Question Based on SQL & Database Concept Total Marks 8 Theory Question 2 Marks / SQL Commands 6 Marks / Output of commands 2 Marks Q1 Define the Following with example i) Primary Key ii) Foreign Key

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

UNIT-3 DATABASE AND SQL Data :- Raw facts and figures which are useful to an organization. We cannot take decisions on the basis of data. Information:- Well processed data is called information. We can

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

CHAPTER 10 SQL 6 MARKS QUESTIONS

CHAPTER 10 SQL 6 MARKS QUESTIONS BHARATIYA VIDYA BHAVAN S V M PUBLIC SCHOOL, VADODARA CHAPTER 10 SQL 6 MARKS QUESTIONS 1 Consider the following tables Product and Client. Write SQL commands for the statement (i) to (iv) and give outputs

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

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

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

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

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

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

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

UNIT I (NETWORKING AND OPEN STANDARDS) (From this unit: 7 Questions - 10 Marks)

UNIT I (NETWORKING AND OPEN STANDARDS) (From this unit: 7 Questions - 10 Marks) UNIT I (NETWORKING AND OPEN STANDARDS) (From this unit: 7 Questions - 10 Marks) One Mark Questions 1. What is the purpose of Modem in network? 2. Write one example of IP Address. 3. Define Domain Name

More information

COMMUNICATION AND NETWORK CONCEPTS

COMMUNICATION AND NETWORK CONCEPTS COMMUNICATION AND NETWORK CONCEPTS 4 Marks Questions 1. XcelenciaEdu Services Ltd. is an educational organization. It is planning to set up its India campus at Hyderabad with its head office at Delhi.

More information

BOOLEAN ALGEBRA. 1. State & Verify Laws by using :

BOOLEAN ALGEBRA. 1. State & Verify Laws by using : BOOLEAN ALGEBRA. State & Verify Laws by using :. State and algebraically verify Absorption Laws. (2) Absorption law states that (i) X + XY = X and (ii) X(X + Y) = X (i) X + XY = X LHS = X + XY = X( + Y)

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

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

Downloaded from

Downloaded from Unit-V Network and Communication Technology Network and Communication Technology Chapter: 09 A Network is a collection of interconnected autonomous computers. A Computer which is a part of a network is

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

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

CLASS XII ( ) (Theory)

CLASS XII ( ) (Theory) CLASS XII (2014-15) (Theory) Duration: 3 Hours Total Marks: 70 Unit No. Unit Name PERIODS MARKS (Theory + Practical) Th Pr Tot 1. Programming with Python 50 40 90 41 2. Object Oriented Programming with

More information

Downloaded from

Downloaded from D.A.V. PUBLIC SCHOOL, NEW PANVEL Plot No. 267, 268, Sector-10, New Panvel, Navi Mumbai-410206 (Maharashtra). Phone 022-27468211, 27482276, Telefax- 27451793 Email- davschoolnp@vsnl.net, www.davpanvel.net

More information

KENDRIYA VIDYALAYA SANGATHAN ERNAKULAM REGION FIRST PRE-BOARD EXAMINATION COMPUTER SCIENCE

KENDRIYA VIDYALAYA SANGATHAN ERNAKULAM REGION FIRST PRE-BOARD EXAMINATION COMPUTER SCIENCE KENDRIYA VIDYALAYA SANGATHAN ERNAKULAM REGION FIRST PRE-BOARD EXAMINATION 2014-15 COMPUTER SCIENCE Time allowed: 3 hours Maximum Marks : 70 Instructions: (i) All questions are compulsory. (ii) Programming

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

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

UNIT 1: OBJECT ORIENTED PROGRAMMING IN C++

UNIT 1: OBJECT ORIENTED PROGRAMMING IN C++ Class XII (Theory) Duration: 3 hours Total Marks: 70 Unit No. Unit Name Periods Marks Th P Tot Th P Total 1. OBJECT ORIENTED PROGRAMMING 50 35 85 30 16 46 IN C++ 2. DATA STRUCTURE 30 20 50 14 10 24 3.

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

Strictly Based on the Latest Syllabus issued by CBSE Board for 2015 Examination QUESTION BANK. Chapter-Wise Solutions.

Strictly Based on the Latest Syllabus issued by CBSE Board for 2015 Examination QUESTION BANK. Chapter-Wise Solutions. Strictly Based on the Latest Syllabus issued by CBSE Board for 2015 Examination QUESTION BANK Chapter-Wise Solutions Computer Science Published by : OSWAAL BOOKS Oswaal House 1/11, Sahitya Kunj, M.G. Road,

More information

Q1. (SQL) Consider the following table HOSPITAL. Write SQL commands for the statements (i) to (v)

Q1. (SQL) Consider the following table HOSPITAL. Write SQL commands for the statements (i) to (v) Q1. (SQL) Consider the following table HOSPITAL. Write SQL commands for the statements (i) to Table : HOSPITAL No Name Age Department Date of adm Charges Sex 1 Arpit 62 Surgery 21.01.98 300 M 2 Zarina

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

Area Covered is small Area covered is large. Data transfer rate is high Data transfer rate is low

Area Covered is small Area covered is large. Data transfer rate is high Data transfer rate is low Chapter 15 Networking Concepts 1. Define networking. It is the interconnection of independent computing devices for sharing of information over shared medium. 2. What is the need for networking? / What

More information

MULTIMEDIA AND WEB TECHNOLOGY

MULTIMEDIA AND WEB TECHNOLOGY Series OSR/C Code No. 89 Roll No. Candidates must write the Code on the title page of the answer-book. Please check that this question paper contains 10 printed pages. Code number given on the right hand

More information

QUESTION BANK FOR TEST

QUESTION BANK FOR TEST CSCI 2121 Computer Organization and Assembly Language PRACTICE QUESTION BANK FOR TEST 1 Note: This represents a sample set. Please study all the topics from the lecture notes. Question 1. Multiple Choice

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

Experiment 3: Logic Simplification

Experiment 3: Logic Simplification Module: Logic Design Name:... University no:.. Group no:. Lab Partner Name: Mr. Mohamed El-Saied Experiment : Logic Simplification Objective: How to implement and verify the operation of the logical functions

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

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

Computer Science. Unit-4: Introduction to Boolean Algebra

Computer Science. Unit-4: Introduction to Boolean Algebra Unit-4: Introduction to Boolean Algebra Learning Objective At the end of the chapter students will: Learn Fundamental concepts and basic laws of Boolean algebra. Learn about Boolean expression and will

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

Sample Paper and Answer Key (New Pattern) 03 Class XII Subject COMPUTER SCIENCE(083) Time allowed: 3 hours Maximum Marks: 70 Q. (a)write the prototype of a function which accepts two integer type arguments

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

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

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

KENDRIYA VIDYALAYA SANGATHAN- ERNAKULAM REGION MODEL PAPER - CLASS XII COMPUTER SCIENCE (083)

KENDRIYA VIDYALAYA SANGATHAN- ERNAKULAM REGION MODEL PAPER - CLASS XII COMPUTER SCIENCE (083) KENDRIYA VIDYALAYA SANGATHAN- ERNAKULAM REGION MODEL PAPER - CLASS XII COMPUTER SCIENCE (083) Time allowed: 3Hrs Maximum Marks :70 Instructions: i) All the questions are compulsory ii) Programming Language

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

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

Indian School Muscat Class XII

Indian School Muscat Class XII Indian School Muscat Class XII Computer Science QUESTION BANK Question 1. REVISION TOUR C++, OOPs Concepts & POINTERS Q 1 WHAT WIIL BE OUTPUT OF FOLLOWING PROGRAM? 1 #include # include

More information

Chapter 2 Boolean algebra and Logic Gates

Chapter 2 Boolean algebra and Logic Gates Chapter 2 Boolean algebra and Logic Gates 2. Introduction In working with logic relations in digital form, we need a set of rules for symbolic manipulation which will enable us to simplify complex expressions

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

UNIT-4 BOOLEAN LOGIC. NOT Operator Operates on single variable. It gives the complement value of variable.

UNIT-4 BOOLEAN LOGIC. NOT Operator Operates on single variable. It gives the complement value of variable. UNIT-4 BOOLEAN LOGIC Boolean algebra is an algebra that deals with Boolean values((true and FALSE). Everyday we have to make logic decisions: Should I carry the book or not?, Should I watch TV or not?

More information

Intro to Structured Query Language Part I

Intro to Structured Query Language Part I Intro to Structured Query Language Part I The Select Statement In a relational database, data is stored in tables. An example table would relate Social Security Number, Name, and Address: EmployeeAddressTable

More information

Prepared by Agha Mohammad Haidari Network Manager ICT Directorate Ministry of Communication & IT

Prepared by Agha Mohammad Haidari Network Manager ICT Directorate Ministry of Communication & IT Network Basics Prepared by Agha Mohammad Haidari Network Manager ICT Directorate Ministry of Communication & IT E-mail :Agha.m@mcit.gov.af Cell:0700148122 After this lesson,you will be able to : Define

More information

DELHI PUBLIC SCHOOL, RUBY PARK, KOLKATA CLASS XII SUBJECT: COMPUTER SCIENCE QUESTION BANK FILE HANDLING:-

DELHI PUBLIC SCHOOL, RUBY PARK, KOLKATA CLASS XII SUBJECT: COMPUTER SCIENCE QUESTION BANK FILE HANDLING:- DELHI PUBLIC SCHOOL, RUBY PARK, KOLKATA CLASS XII SUBJECT: COMPUTER SCIENCE QUESTION BANK FILE HANDLING:- 1. Write a function in C++ to count and display the number of lines not starting with alphabet

More information

Chapter 15 Networks. Chapter Goals. Networking. Chapter Goals. Networking. Networking. Computer network. Node (host) Any device on a network

Chapter 15 Networks. Chapter Goals. Networking. Chapter Goals. Networking. Networking. Computer network. Node (host) Any device on a network Chapter Goals Chapter 15 Networks Describe the core issues related to computer networks List various types of networks and their characteristics Explain various topologies of local-area networks Explain

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

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

SQL-Structured Query Language BY : SHIVENDER KUMAR BHARDWAJ PGT-TAFS

SQL-Structured Query Language BY : SHIVENDER KUMAR BHARDWAJ PGT-TAFS SQL-Structured Query Language BY : SHIVENDER KUMAR BHARDWAJ PGT-TAFS Overview Introduction DDL Commands DML Commands SQL Statements, Operators, Clauses Aggregate Functions 2 ( SQL ) Structured Query Language

More information

Sample Question Paper Multimedia and Web Technology Class: XII Session

Sample Question Paper Multimedia and Web Technology Class: XII Session Sample Question Paper Multimedia and Web Technology Class: XII Session 2018-19 Max. Marks: 70 Duration: 3 hrs. General Instructions: (i) All questions are compulsory. (ii) Answer the questions after carefully

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

COMPUTER TECHNIQUE. ( Vocational Stream ) Paper : V. ( Computer Network ) ( Theory )

COMPUTER TECHNIQUE. ( Vocational Stream ) Paper : V. ( Computer Network ) ( Theory ) Total No. of Printed Pages 12 HS/XII/V/CT/Paper V/14 2 0 1 4 COMPUTER TECHNIQUE ( Vocational Stream ) Paper : V ( Computer Network ) ( Theory ) Full Marks : 100 Time : 3 hours The figures in the margin

More information

KIBABII UNIVERSITY COLLEGE DEPARTMENT COMPUTER SCIENCE & IT ANSWER ALL QUESTIONS IN SECTION A AND ANY TWO QUESTIONS IN SECTION B

KIBABII UNIVERSITY COLLEGE DEPARTMENT COMPUTER SCIENCE & IT ANSWER ALL QUESTIONS IN SECTION A AND ANY TWO QUESTIONS IN SECTION B KIBABII UNIVERSITY COLLEGE DEPARTMENT COMPUTER SCIENCE & IT TITLE: DATACOMMUNICATION COURSE CODE: 223 SECTION A: 30 Marks ANSWER ALL QUESTIONS IN SECTION A AND ANY TWO QUESTIONS IN SECTION B TIME ALLOWED:

More information

B.Tech II Year I Semester (R13) Regular Examinations December 2014 DIGITAL LOGIC DESIGN

B.Tech II Year I Semester (R13) Regular Examinations December 2014 DIGITAL LOGIC DESIGN B.Tech II Year I Semester () Regular Examinations December 2014 (Common to IT and CSE) (a) If 1010 2 + 10 2 = X 10, then X is ----- Write the first 9 decimal digits in base 3. (c) What is meant by don

More information

INDIAN SCHOOL MUSCAT FIRST PRELIMINARY EXAMINATION 2017 INFORMATICS PRACTICES

INDIAN SCHOOL MUSCAT FIRST PRELIMINARY EXAMINATION 2017 INFORMATICS PRACTICES Roll Number Code Number 065/ INDIAN SCHOOL MUSCAT FIRST PRELIMINARY EXAMINATION 07 INFORMATICS PRACTICES CLASS: XII Sub. Code: 065 Time Allotted: 3 Hrs...07 Max. Marks: 70 Instructions:. All the questions

More information

Unit-IV Boolean Algebra

Unit-IV Boolean Algebra Unit-IV Boolean Algebra Boolean Algebra Chapter: 08 Truth table: Truth table is a table, which represents all the possible values of logical variables/statements along with all the possible results of

More information

Digital logic fundamentals. Question Bank. Unit I

Digital logic fundamentals. Question Bank. Unit I Digital logic fundamentals Question Bank Subject Name : Digital Logic Fundamentals Subject code: CA102T Staff Name: R.Roseline Unit I 1. What is Number system? 2. Define binary logic. 3. Show how negative

More information

COMPUTER SCIENCE Time allowed : 3hours] [Maximum Marks :70

COMPUTER SCIENCE Time allowed : 3hours] [Maximum Marks :70 COMPUTER SCIENCE-2010 Time allowed : 3hours] [Maximum Marks :70 Instructions (i) (ii) All questions are compulsory Programming Language : C++ 1. (a) What is the difference between automatic type conversion

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

LSN 4 Boolean Algebra & Logic Simplification. ECT 224 Digital Computer Fundamentals. Department of Engineering Technology

LSN 4 Boolean Algebra & Logic Simplification. ECT 224 Digital Computer Fundamentals. Department of Engineering Technology LSN 4 Boolean Algebra & Logic Simplification Department of Engineering Technology LSN 4 Key Terms Variable: a symbol used to represent a logic quantity Compliment: the inverse of a variable Literal: a

More information

COMPUTER SCIENCE (THEORY) Class XII ( Theory) - Python. Unit No. Unit Name MARKS UNIT 1: PROGRAMMING WITH PYTHON

COMPUTER SCIENCE (THEORY) Class XII ( Theory) - Python. Unit No. Unit Name MARKS UNIT 1: PROGRAMMING WITH PYTHON 2. Cross 'N Knots Game: A regular tic-tac-toe game 3. Hollywood/Hangman: A word Guessing game 4. Cows 'N Bulls: A word / number Guessing game or Similar projects may be undertaken in other domains (As

More information

Standard Forms of Expression. Minterms and Maxterms

Standard Forms of Expression. Minterms and Maxterms Standard Forms of Expression Minterms and Maxterms Standard forms of expressions We can write expressions in many ways, but some ways are more useful than others A sum of products (SOP) expression contains:

More information

INDIAN SCHOOL SOHAR FIRST TERM EXAM ( ) INFORMATICS PRACTICES

INDIAN SCHOOL SOHAR FIRST TERM EXAM ( ) INFORMATICS PRACTICES INDIAN SCHOOL SOHAR FIRST TERM EXAM (2015-2016) INFORMATICS PRACTICES Page 1 of 5 No. of printed pages: 5 Class: XI Marks: 70 Date: 10-09-15 Time: 3 hours Instructions: a. All the questions are compulsory.

More information

91/1 COMPUTER SCIENCE. Series SHC/1. dksm ua- jksy ua- Code No. Roll No. Candidates must write the Code on the title page of the answer-book.

91/1 COMPUTER SCIENCE. Series SHC/1. dksm ua- jksy ua- Code No. Roll No. Candidates must write the Code on the title page of the answer-book. Series SHC/1 Roll No. jksy ua- Code No. dksm ua- Candidates must write the Code on the title page of the answer-book. Please check that this question paper contains 12 printed pages. Code number given

More information

APEEJAY SCHOOL SAKET First Term Examination Class - XII (Commerce) INFORMATICS PRACTICES(Code 065)

APEEJAY SCHOOL SAKET First Term Examination Class - XII (Commerce) INFORMATICS PRACTICES(Code 065) APEEJAY SCHOOL SAKET First Term Examination 07-8 Class - XII (Commerce) INFORMATICS PRACTICES(Code 065) Time allowed : 3 hours General Instructions : This question paper has 6 questions and 6 printed pages.

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

Maharaja Agrasen Model School Sample Paper Subject: Informatics Practices

Maharaja Agrasen Model School Sample Paper Subject: Informatics Practices Time: 3Hours Q-1 Answer the following questions: Maharaja Agrasen Model School Sample Paper Subject: Informatics Practices Maximum Marks:70 1.1 Which protocol is used for transfer of hyper text documents

More information

Philadelphia University Faculty of Information Technology Department of Computer Science. Computer Logic Design. By Dareen Hamoudeh.

Philadelphia University Faculty of Information Technology Department of Computer Science. Computer Logic Design. By Dareen Hamoudeh. Philadelphia University Faculty of Information Technology Department of Computer Science Computer Logic Design By Dareen Hamoudeh Dareen Hamoudeh 1 Canonical Forms (Standard Forms of Expression) Minterms

More information

Aryan College. Computer Fundamental. Introduction to Computer System

Aryan College. Computer Fundamental. Introduction to Computer System Computer Fundamental Unit 1 Introduction to Computer System 1. List various characteristics of computer. (2017) 2. Give name of two super computers. (2017) 3. What do you mean by system software? (2017)

More information

Navpreet Singh INTRODUCTION TO COMPUTER NETWORKS. Computer Centre Indian Institute of Technology Kanpur Kanpur INDIA

Navpreet Singh INTRODUCTION TO COMPUTER NETWORKS. Computer Centre Indian Institute of Technology Kanpur Kanpur INDIA INTRODUCTION TO COMPUTER NETWORKS Navpreet Singh Computer Centre Indian Institute of Technology Kanpur Kanpur INDIA (Ph : 2597371, Email : navi@iitk.ac.in) About Myself About Myself I am Network Manager

More information

COMPUTER NETWORKING. Terminology of Network:

COMPUTER NETWORKING. Terminology of Network: COMPUTER NETWORKING Network: A computer network is a collection of interconnected computers. Two computers are said to be interconnected if they are capable of sharing hardware, software and exchanging

More information

Chapter 3 Simplification of Boolean functions

Chapter 3 Simplification of Boolean functions 3.1 Introduction Chapter 3 Simplification of Boolean functions In this chapter, we are going to discuss several methods for simplifying the Boolean function. What is the need for simplifying the Boolean

More information

Chapter 4: Networking and the Internet. Network Classifications. Network topologies. Network topologies (continued) Connecting Networks.

Chapter 4: Networking and the Internet. Network Classifications. Network topologies. Network topologies (continued) Connecting Networks. Chapter 4: Networking and the 4.1 Network Fundamentals 4.2 The 4.3 The World Wide Web 4.4 Protocols 4.5 Security Network Classifications Scope Local area network (LAN) Metropolitan area (MAN) Wide area

More information

Lecture 4: Implementation AND, OR, NOT Gates and Complement

Lecture 4: Implementation AND, OR, NOT Gates and Complement EE210: Switching Systems Lecture 4: Implementation AND, OR, NOT Gates and Complement Prof. YingLi Tian Feb. 13, 2018 Department of Electrical Engineering The City College of New York The City University

More information

networks List various types of networks and their

networks List various types of networks and their Chapter 15 Networks Chapter Goals Describe the core issues related to computer networks List various types of networks and their characteristics Explain various topologies of local-area networks Explain

More information

Binary logic. Dr.Abu-Arqoub

Binary logic. Dr.Abu-Arqoub Binary logic Binary logic deals with variables like (a, b, c,, x, y) that take on two discrete values (, ) and with operations that assume logic meaning ( AND, OR, NOT) Truth table is a table of all possible

More information

Text Book. 1. Computer Networks & Internets by Douglas E Comer. 2. Data and Computer Communication by William Stalling, 5th or above edition.

Text Book. 1. Computer Networks & Internets by Douglas E Comer. 2. Data and Computer Communication by William Stalling, 5th or above edition. 1 Text Book 1. Computer Networks & Internets by Douglas E Comer. 2. Data and Computer Communication by William Stalling, 5th or above edition. 2 Marks distribution Topic no First Mid 20 1,2,3 Second Mid

More information

Chapter 4: Networking and the Internet. Figure 4.1 Network topologies. Network Classifications. Protocols. (continued)

Chapter 4: Networking and the Internet. Figure 4.1 Network topologies. Network Classifications. Protocols. (continued) Chapter 4: Networking and the Internet Computer Science: An Overview Eleventh Edition by J. Glenn Brookshear Chapter 4: Networking and the Internet 4.1 Network Fundamentals 4.2 The Internet 4.3 The World

More information

Chapter 4: Networking and the Internet

Chapter 4: Networking and the Internet Chapter 4: Networking and the Internet Computer Science: An Overview Eleventh Edition by J. Glenn Brookshear Copyright 2012 Pearson Education, Inc. Chapter 4: Networking and the Internet 4.1 Network Fundamentals

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

KENDRIYA VIDYALAYA NO 1 AFS JALAHALLI (WEST) PRE BOARD INFORMATICS PRACTICE Class XII

KENDRIYA VIDYALAYA NO 1 AFS JALAHALLI (WEST) PRE BOARD INFORMATICS PRACTICE Class XII MM: 70 KENDRIYA VIDYALAYA NO AFS JALAHALLI (WEST) PRE BOARD- 0 INFORMATICS PRACTICE Class XII TIME: 3:00 HRS Note: There are 7 Questions and all questions are compulsory. Q. a) Abir wants to establish

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

Assignment (3-6) Boolean Algebra and Logic Simplification - General Questions

Assignment (3-6) Boolean Algebra and Logic Simplification - General Questions Assignment (3-6) Boolean Algebra and Logic Simplification - General Questions 1. Convert the following SOP expression to an equivalent POS expression. 2. Determine the values of A, B, C, and D that make

More information

Computer Science, Class XII ( ) Chapter No.14 (Networking Concepts)

Computer Science, Class XII ( ) Chapter No.14 (Networking Concepts) Chapter No.14 (Networking Concepts) Network The collection of interconnected computers is called a computer network. Two computers are said to be interconnected if they are capable of sharing and exchanging

More information

ONE MARKS QUESTION AND ANSWERS

ONE MARKS QUESTION AND ANSWERS ONE MARKS QUESTION AND ANSWERS Question No 1 Typical Configuration of Computer System: 1. What is a motherboard? The motherboard is the most important circuit board of the computer; all the components

More information

Local Area Network(LAN)

Local Area Network(LAN) Local Area Network(LAN) A local area network (LAN) is a computer network that interconnects computers within a limited area. Example: a residence, school, laboratory, university campus,office building

More information

Chapter 3. Boolean Algebra and Digital Logic

Chapter 3. Boolean Algebra and Digital Logic Chapter 3 Boolean Algebra and Digital Logic Chapter 3 Objectives Understand the relationship between Boolean logic and digital computer circuits. Learn how to design simple logic circuits. Understand how

More information