KENDRIYA VIDYALAYA SANGATHAN BLUE PRINT INFORMATICS PRACTICES CLASS XII TOPICS SA(1) SA(2) LA(6) TOTAL

Size: px
Start display at page:

Download "KENDRIYA VIDYALAYA SANGATHAN BLUE PRINT INFORMATICS PRACTICES CLASS XII TOPICS SA(1) SA(2) LA(6) TOTAL"

Transcription

1 KENDRIYA VIDYALAYA SANGATHAN BLUE PRINT INFORMATICS PRACTICES CLASS XII TOPICS SA() SA() LA(6) TOTAL Networking & Open 4(4) 3(6) - 7(0) Source software Programming in Java 7(7) 6() (6) 4(5) RDBMS 6(6) 6() () 4(30) IT Applications () (4) - 3(5) TOTAL 8(8) 7(34) 3(8) 38(70) NOTE: Marks are given inside the bracket and the number of questions outside the bracket.

2 MODEL QUESTION PAPER SUB: INFORMATICS PRACTICES (065) CLASS XII MM: 70 TIME: 3 Hrs (a) A company has 3 departments namely Administrative, Sales, Production. Out of telephone cable, Optical Fiber, Ethernet Cable, which communication medium is best for high speed communication between departments? b) Naresh wants to upload/download files from/to a remote internet server. Write the name of the relevant communication protocol, which will let him do the same. (c) Identify the following topologies. () A signal/data packets transmit from one end to other end in linear way. () Each node is connected to two and only two neighboring nodes in circular form. (d) Write any two scripts included in Indian Languages on Unicode. (e) Differentiate between HUB and SWITCH devices. (f) Explain following terms. () Apache () Linux g) Explain the term ODF and Ogg Vorbis. What are the advantages of these over others? (a) Write the property of the radio button that should be set to make the radio buttons mutually exclusive? (b) Name one container for each of the following categories. (i) Top level container (ii) Middle level container (c) Write two examples of empty tag. (d) Which HTML tag and corresponding attributes are used to establish default font size for entire page? (e) How many times does the following loop execute? What is the value of num after the execution? int num=5; do System.out.println( Hello world ); num--; while (num>); (f) Write a function in java that takes an integer number as parameter and returns sum of its digits. (g) Which tag is used to specify : a. Table data b. Table header c. Table row d. Table border 3 (a) Ms. Sangeeta has created a table SUPPLIER in the database. One of the fields in the table is city. Write the command to display city by avoiding duplication.

3 (b) Ms.Astha created a table BOOK in MySQL. She forget to set the PRIMARY KEY for the table. Which command should she use to set it for the field B_id. c) Sanjay is not able to enter the details of students born after 30-Mar-007. Which constraint is applied as specification when the table was created. d) What is the role of referential integrity w.r.t Foreign key constraint. e) EmpName, Sal of EMP table given below EmpName Sal Saravanan 800 Neethu 300 Lekshmi 3500 Ganesh 700 Based on this information, find the output of the following queries. a) SELECT COUNT(*) FROM EMP WHERE Sal>=3000; b) SELECT avg(sal) FROM EMP WHERE Sal <3500; f) What is the significance of DROP DATABASE command? g) A table Employee in a database has 4 columns and 4 records. What is its degree and cardinality if two more rows are added into the table? 4 (a) What is an abstract class? (b) (c) (d) (e) (f) Given a string Object namely month having value as stored in it. What will be the result of following code? JOptionPane.showMessageDialog(null, + (month.length() + Integer.parseInt ( month) ) ); What will be the content of jtextfield after executing the following statement? jtextfield.settext( Informatics.substring(3)); Rewrite the following program code using if else if statement switch(ch) case a : System.out.println( It is a. ); break; case b : System.out.println( It is b. ); break; case c : System.out.println( It is c. ); break; What will be the contents of jtextfield and jtextfiled after executing the following code jtextfield.settext(math.round(.5)+""); jtextfield.settext("micro".concat("system")); Find the output of the following program class MainString

4 (g) public static void main(string args[]) StringBuffer city= new StringBuffer("Madras"); StringBuffer Str= new StringBuffer( ); Str.append(new String(city)); Str.insert(0,"Central"); System.out.println(Str); Read the following case study and answer the questions that follow. TCS IT Solution is required to develop a student record. The school offers two different streams, medical and non-medical, with different grading criteria. The following is the data entry screen used to calculate percentage and grade. * Student can assume name for the controls. 6. Write the code for the Frame Window Activate event to disable the Percentage and the Grade text fields. (). Write the code for the Clear button to clear all the text fields. () 3. Write the code for the Calculate button to calculate the percentage to display in text field after finding the total marks of first term and second term (assuming that both marks are out of 00). () 4. Write the code for the cmdcalcgrade button to calculate the grade to display in text field txtgrade, depending on the stream selected according to the criteria in the following table: ()

5 5 (a) Differentiate CHAR and VARCHAR data types? (b) Write the output of the following SQL queries. (i) SELECT CONCAT(LOWER( Class ), UPPER( xii )); (ii) SELECT SIGN(); (iii) SELECT DAYOFYEAR( ); (iv) SELECT MOD(,4); (c) Consider the table FLIGHT given below. Write commands in SQL for (i) to (iv) and output for (v) to (vi). 6 (i) Display details of all flights starting from Delhi. (ii) Display details of flights that have more than 4 number of flights operating. (iii) Display flight codes, starting place, destination, number of flights in descending order of number of flights. (iv) Display destinations along with flight codes of all the destinations starting with A. (v) SELECT MAX(NO_FLIGHTS) FROM FLIGHT; (vi) SELECT START, COUNT(*) FROM FLIGHT GROUP BY Start; 6 (a) Write an SQL query to create following table Supplier with following descriptions. Table : Supplier

6 (b) In a Database Company, there are two tables given below : Table : SALES SALESMANID NAME SALES LOCATIONID S ANITA SINGH ARORA S Y.P. SINGH S3 TINA JAISWAL S4 GURDEEP SINGH S5 SIMI FAIZAL Table : LOCATION LOCATIONID LOCATIONNAME 0 Delhi 0 Mumbai 03 Kolkata 04 Chennai (c) () Identify foreign key in SALES table and primary key in LOCATION Table. () Identify all candidate keys in SALES table. Consider the tables Doctors and Patient given below: Table : Doctors 6 With reference to these two tables, write a SQL query for (i) and (ii) and output for (iii). () Display Patient Name, Patient No and corresponding doctor name for each patient. () Display the list of all patients whose OPD_days are TTS. (3) SELECT OPD_days, count(*) FROM Doctors, Patients WHERE doctors.department =

7 Patients.Department GROUP BY OPD_days; 7 (a) Define an entity. What is meant by entity type and entity instance? (b) What are the benefits of e-business over traditional business? (c) Pragati works for a School. She wishes to create controls on a form for the the following functions. Choose appropriate controls from Text field, Label, Radio Button, Check box, List, Combo Box, Button and write in the third column.

8 INFORMATICS PRACTICES (065) ANSWER KEY a) A company has 3 departments namely Administrative, Sales, Production. Out of telephone cable, Optical Fiber, Ethernet Cable, which communication medium is best for high speed communication between departments? Ans- Optical Fiber ( mark for correct answer) b) Naresh wants to upload/download files from/to a remote internet server. Write the name of the relevant communication protocol, which will let him do the same. Ans- FTP (File Transfer Protocol) - Mark for correct answer c) Identify the following topologies. () A signal/data packets transmit from one end to other end in linear way. () Each node is connected to two and only two neighboring nodes in circular form. Ans- ) BUS topology () Ring / Circular topology -/ Mark each d) Write any two scripts included in Indian Languages on Unicode. Ans- Devanagiri,Tamil,Malayalam,Gujatrati,telugu,assamese etc. -/ Mark each e) Differentiate between HUB and SWITCH devices. Ans-Difference between SWITCH and HUB HUB : less speed compared switch. It share bandwidth for connected computers. It has half-duplex (bidirectional) communication. SWITCH: more speed compared to HUB. It communicate at full bandwidth.it communicate two-way communication (full duplex). - each difference ½ mark.. f) Explain following terms. () Apache Server () Linux. Apache web Server is an open source web server available for many plateforms as BSD,Linux etc.. It is an operating system. it is free software and open sourse software as it in now freely available but also it is underlying source code is available to all. g) Explain the term ODF and Ogg Vorbis. What are the advantages of these over others? Ans- ODF (Open Document Format) and Ogg Vorbis. ODF : Open Document Format is an XML-based file format for representing electronic documents. Ogg Vorbis: It is a new audio compression format which is open format,developed by Xiph.org. -each explanation mark. (a) Write the property of the radio button that should be set to make the radio buttons mutually exclusive? Ans- ButtonGroup property ( mark for specifying the correct method) (b) Name one container for each of the following categories. (c) (i) Top level container (ii) Middle level container Ans- (i) Top level container (JFrame or Jdialog) (ii) Middle level container (Jpanel or JtabbedPane) Write two examples of empty tag. <br>, <hr>, <li>, <A> ½ each ( mark for any correct answer)

9 (d) (e) (f) Which HTML tag and corresponding attributes are used to establish default font size for entire page? <BASEFONT> tag and SIZE attribute (/ mark for each correct answer) How many times does the following loop execute? What is the value of num after the execution? int num=5; do System.out.println( Hello world ); num--; while (num>); Ans -3 times and value of num= ( mark for each correct value) Write a function in java that takes an integer number as parameter and returns sum of its digits. private int sumofdigit(int n) int d, sum=0; while(n>0) d= n % 0; sum= sum + d; n=n/0; return sum; ½ mark for header and ½ mark each for condition test and loop statement and ½ mark for return (g) Which tag is used to specify : a. Table data b. Table header c. Table row d. Table border. a. Table data - <td> b. Table header - <th> c. Table row - <tr> d. Table border - <TABLE Border = > ½ mark for each 3 a) Ms. Sangeeta has created a table SUPPLIER in the database. One of the fields in the table is city. Write the command to display city by avoiding duplication. Ans- Select DISTINCT city from Supplier. ( Mark for correct answer). b) Ms.Astha created a table BOOK in MySQL. She forget to set the PRIMARY KEY for the table. Ans -ALTER TABLE ADD PRIMARY KEY(B_ID) ; ( Mark for correct answer) c) Sanjay is not able to enter the details of students born after 30-Mar-007. Which constraint is applied as specification when the table was created. Ans- CHECK CONSTRAINT( Mark for correct answer) d) What is the role of referential integrity w.r.t Foreign key constraint. Ans -Referential integrity ensures the integrity of related tables with respect to insert, delete and update queries. ( mark for explanation, mark for mentioning on delete cascade/on update.. in query. ) e) EmpName, Sal of EMP table given below EmpName Sal Saravanan 800

10 Neethu 300 Lekshmi 3500 Ganesh 700 Based on this information, find the output of the following queries. a) SELECT COUNT(*) FROM EMP WHERE Sal>=3000; b) SELECT avg(sal) FROM EMP WHERE Sal <3500;- - Ans - a) ( Mark for correct answer) b ) 900 ( Mark for correct answer) f) What is the significance of DROP DATABASE command? To remove the DATABASE ( Mark for explanation and example) g) A table Employee in a database has 4 columns and 4 records. What is its degree and cardinality if more rows are added into the table? Ans- degree is 4, cardinality 6 ( ½ mark for each correct answer) 4 (a) What is an abstract class? Ans- An abstract class is the one that simply represents a concept and whose objects can t be created. It is crated through the use of keyword abstract. ( mark for correct definition) (b) Given a string Object namely month having value as stored in it. What will be the result of following code? (c) JOptionPane.showMessageDialog(null, + (month.length() + Integer.parseInt ( month) ) ); output : 3 mark for correct output. What will be the content of jtextfield after executing the following statement? jtextfield.settext( Informatics.substring(3)); Ans- Output: ormatics mark for correct output. (d) Rewrite the following program code using if else if statement switch(ch) case a : system.out.println( It is a. ); break; case b : system.out.println( It is b. ); break; case c : system.out.println( It is c. ); break; Ans -if (ch== a) system.out.println( It is a. ); else if (ch== b ) system.out.println( It is b. ); else if (ch== c ) system.out.println( It is c. ); mark for correct conversion

11 (e) What will be the contents of JTextField and JTextFiled after executing the following code jtextfield.settext(math.round(.5)+""); jtextfield.settext("micro".concat("system")); (f) (g) Output: 3, MicroSystem mark for each correct answer. Find the output of the following program class MainString public static void main(string args[]) StringBuffer city= new StringBuffer("Madras"); StringBuffer Str= new StringBuffer( ); Str.append(new String(city)); Str.insert(0,"Central"); System.out.println(Str); Ans- Output: CentralMadras mark for correct answer. Read the following case study and answer the questions that follow.. txtperc.setenabled(false); txtgrade.setenabled(false); (/ mark each). txtftmarks.settext( ); ( mark ) txtstmarks.settext( ); txtperc.settext( ); txtgrade.settext( ); 3. calculate percentage int f=integer.parseint(txtftmarks.gettext( )); int s=integer.parseint(txtstmarks.gettext( )); int total=f+s; double perc=(total *00)/00; txtperc.settext( +perc); () 4. calculate grade (+ for correct coding part in each radiobutton) double percent=double.parsedouble(txtperc.gettext()); String grade; if (rdbmedical.isselected()==true) if(percent>=80) 6

12 grade= A ; else if(percent<80 && percent>=80) grade= B ; else if(percent<60) grade= C ; else if (rdbnonmedical.isselected()==true) if(percent>=75) grade= A ; else if(percent<75 && percent>=50) grade= B ; else if(percent<50) grade= C ; txtgrade.settext(grade); 5 a) Differentiate CHAR and VARCHAR data types? Ans-CHAR Fixed length character ( Mark) VARCHAR Variable length character ( Mark) b) Write the output of the following SQL queries. (i) SELECT CONCAT(LOWER( Class ), UPPER( xii )); (ii) SELECT SIGN(); (iii) SELECT DAYOFYEAR( ); (iv) SELECT MOD(,4); Ans - i) classxii ii) iii) 3 iv) 3 ( ½ Mark for each correct answer) c) Consider the table FLIGHT given below. Write commands in SQL for (i) to (iv) and output for (v) to (vi). 6

13 (i)select * from flight where start= delhi ; (ii) select * from flights where no_flights>4; (iii) select flcode, start, destination, no_flights from flight order by no_flights desc; (iv) select destination,flcode from flight where destination like A%;. (v) 7 (vi) DELHI 3 MUMBAI KANPUR INDORE 6 a) Write an SQL query to create following table Supplier with following descriptions. Table : Supplier

14 Ans- create table Supplier( filed varchar(5) Primary Key, Supp_Name varchar (0) NOT NULL, City Varchar (0),order_No Integer (0) Foreign Key,Supp- Amount Decimal(6,) check Supp_Amount >0000); b) In a Database Company, there are two tables given below : Table : SALES SALESMANID NAME SALES LOCATIONID S ANITA SINGH ARORA S Y.P. SINGH S3 TINA JAISWAL S4 GURDEEP SINGH S5 SIMI FAIZAL Table : LOCATION LOCATIONID LOCATIONNAME 0 Delhi 0 Mumbai 03 Kolkata 04 Chennai () Identify foreign key in SALES table and primary key in LOCATION Table. () Identify all candidate keys in SALES table. Ans. LOCATIONID. LOCATIONID, SALESID c) Consider the tables Doctors and Patient given below: Table : Doctors 6

15 With reference to these two tables, write a SQL query for (i) and (ii) and output for (iii). () Display Patient Name,Patient No and corresponding doctor name for each patient. () Display the list of all patients whose OPD_days are TTS. (3) SELECT OPD_days,count(*) FROM Doctors, Patients WHERE doctors.department = Patients.Department GROUP BY OPD_days; Ans: (a) Select I_Code, I_Name, Model, V_Name from ITEM, VENDOR Where ITEM.I_Code= VENDOR.I_Code AND I_Name= Laptop ; (b) Select I_Name, Price, V_Name, City from ITEM, VENDOR Where ITEM.I_Code= VENDOR.I_Code AND Price>5000 ; (a) Select V_Name, I_Name from ITEM, VENDOR Where ITEM.I_Code= VENDOR.I_Code AND V_Name= Big Bazar ; 7 (a) Define an entity. What is meant by entity type and entity instance? Ans-Entity is an object that exists and is distinguishable from other objects. Entity instance is a specific individual thing or object. mark for correct definition (b) What benefits does an e-business offer to the customers? Reduction in transaction and other costs. Improved customer service mark each for one point.

16 (c)

Kendriya Vidyalaya No1 Rewa Pre-Board I ( )

Kendriya Vidyalaya No1 Rewa Pre-Board I ( ) Class XII Kendriya Vidyalaya No Rewa Pre-Board I (04-5) Sub Informatics Practices TIME : 3:00 hrs MAX. MARKS : 70 a) Mr. Abhay is interested in transferring songs from his mobile to Mr. Raj s mobile. Suggest

More information

SUB: INFORMATICS PRACTICES CLASS: XII ANSWER KEY SET-2. Time: 3 Hrs Max.Mark: 70 1.

SUB: INFORMATICS PRACTICES CLASS: XII ANSWER KEY SET-2. Time: 3 Hrs Max.Mark: 70 1. SAMPLE PAPER 2014-15 SUB: INFORMATICS PRACTICES CLASS: XII ANSWER KEY SET-2 Time: 3 Hrs Max.Mark: 70 1. [A] TELNET [B] Router [C] (1) BUS topology (2) Ring / Circular topology [D] Devanagiri,Tamil,Malayalam,Gujatrati,telugu,assamese

More information

KENDRIYA VDYALAYA SANGATHAN ERNAKULAM REGION MODEL PAPER - SET-I SUB: INFORMATICS PRACTICES CLASS: XII Time: 3 Hrs Max.Mark: 70

KENDRIYA VDYALAYA SANGATHAN ERNAKULAM REGION MODEL PAPER - SET-I SUB: INFORMATICS PRACTICES CLASS: XII Time: 3 Hrs Max.Mark: 70 KENDRIYA VDYALAYA SANGATHAN ERNAKULAM REGION MODEL PAPER - SET-I SUB: INFORMATICS PRACTICES CLASS: XII Time: 3 Hrs Max.Mark: 70 1. a) Mr. Ramesh is working in an Global Organisation. He wants to login

More information

KENDRIYA VIDYALAYA SANGATHAN, ERNAKULAM REGION MODEL QUESTION PAPER INFORMATICS PRACTICES (065) ANSWER KEY- SET-2

KENDRIYA VIDYALAYA SANGATHAN, ERNAKULAM REGION MODEL QUESTION PAPER INFORMATICS PRACTICES (065) ANSWER KEY- SET-2 KENDRIYA VIDYALAYA SANGATHAN, ERNAKULAM REGION MODEL QUESTION PAPER 2012-13 INFORMATICS PRACTICES (065) ANSWER KEY- SET-2 1. [A] Domain name resolution. [B] SMTP(Simple Mail Transfer Protocol) [C] MAN

More information

INFORMATICS PRACTICES

INFORMATICS PRACTICES SET-4 Series SSO Code No. 90 Roll No. Candidates must write the Code on the title page of the answer-book. Please check that this question paper contains 8 printed pages. Code number given on the right

More information

KENDRIYA VIDYALAYA SANGATHAN, CHENNAI REGION CLASS XII COMMON PRE-BOARD EXAMINATION

KENDRIYA VIDYALAYA SANGATHAN, CHENNAI REGION CLASS XII COMMON PRE-BOARD EXAMINATION KENDRIYA VIDYALAYA SANGATHAN, CHENNAI REGION CLASS XII COMMON PRE-BOARD EXAMINATION Sub : Informatics Practices (065) Time allowed : 3 hours Maximum Marks : 70 Instruction : (i) All questions are compulsory

More information

INFORMATICS PRACTICES

INFORMATICS PRACTICES Series OSR/C Code No. 90 Roll No. Candidates must write the Code on the title page of the answer-book. Please check that this question paper contains 8 printed pages. Code number given on the right hand

More information

KENDRIYA VIDYALAYA SANGATHAN BLUE PRINT INFORMATICS PRACTICES CLASS XII TOPICS SA(1) SA(2) LA(6) TOTAL

KENDRIYA VIDYALAYA SANGATHAN BLUE PRINT INFORMATICS PRACTICES CLASS XII TOPICS SA(1) SA(2) LA(6) TOTAL KENDRIYA VIDYALAYA SANGATHAN BLUE PRINT INFORMATICS PRACTICES CLASS XII TOPICS SA() SA() LA(6) TOTAL Networking & Open 4(4) 3(6) - 7(0) Source software Programming in Java 7(7) 6() (6) 4(5) RDBMS 6(6)

More information

KENDRIYA VIDYALAYA SANGATHAN CLASS XII EXAMINATION INFORMATICS PRACTICES (065)

KENDRIYA VIDYALAYA SANGATHAN CLASS XII EXAMINATION INFORMATICS PRACTICES (065) KENDRIYA VIDYALAYA SANGATHAN CLASS XII EXAMINATION INFORMATICS PRACTICES (065) Time Allowed: 3 Hours Maximum Marks: 70 Instructions: (i) All questions are compulsory. (ii) Programming Language: Java, SQL

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

Time Allowed :3 hours Maximum Marks : 70

Time Allowed :3 hours Maximum Marks : 70 Guru Harkrishan Public School Pre Mock Examination 2014-15 Class XII Sub: Informatics Practices General instructions : Please check that this question paper contains 5 printed pages. Please check that

More information

XXXXXXXXXXXXXXXXXXX First Pre-Board Examination, Informatics Practices

XXXXXXXXXXXXXXXXXXX First Pre-Board Examination, Informatics Practices Series SOS Code No. 90 Roll No. Candidates must write the Code on the title page of the answer book. Please check that this question paper contains 7 printed pages. Code number given on the right hand

More information

KENDRIYA VIDYALAYA SANGATHAN BLUE PRINT INFORMATICS PRACTICES CLASS XII

KENDRIYA VIDYALAYA SANGATHAN BLUE PRINT INFORMATICS PRACTICES CLASS XII KENDRIYA VIDYALAYA SANGATHAN BLUE PRINT INFORMATICS PRACTICES CLASS XII TOPICS SA() SA() LA(6) TOTAL Networking & Open 4(4) 3(6) - 7(0) Source software Programming in Java 7(7) 6() (6) 4(5) RDBMS 6(6)

More information

INFOTECH Computer Education, Kishangarh (Raj) Visit : Page 1

INFOTECH Computer Education, Kishangarh (Raj) Visit :   Page 1 Q 1. (a) Which protocol is used for the transfer of hypertext document on the Internet. (1) (b) Which transmission medium should be used to transfer data across two continents at very high speed? (1) (c)

More information

Sample Paper 2015 Class XII Subject INFORMATICS PRACTICES

Sample Paper 2015 Class XII Subject INFORMATICS PRACTICES Sample Paper 205 Class XII Subject INFORMATICS PRACTICES Q. Answer the following questions: a) Mr. Abhinav wants to implements a network using less cable length and data should be transmitted in one direction

More information

Kendriya Vidyalaya Sangathan (Chandigarh Region) Blue Print of Question Paper Class: XI Subject: Informatics Practices Session

Kendriya Vidyalaya Sangathan (Chandigarh Region) Blue Print of Question Paper Class: XI Subject: Informatics Practices Session Kendriya Vidyalaya Sangathan (Chandigarh Region) Blue Print of Question Paper Class: XI Subject: Informatics Practices Session 2017-18 S.No. Unit Very Short Answer Short Answer-I Short Answer-II Long Answer

More information

SAMPLE PAPER CLASS XII SUBJECT Informatics Practices

SAMPLE PAPER CLASS XII SUBJECT Informatics Practices http:/// Time : 3 hrs. SAMPLE PAPER CLASS XII SUBJECT Informatics Practices MM:70 A. Answer the following questions. A.1 Expand the following terms: FLOSS and ODF (1) A.2 Sun Beam Connectivity Association

More information

1. Answer the following questions: a. Explain Real Time OS.

1. Answer the following questions: a. Explain Real Time OS. SECOND TERMINAL EXAMINATION, 2014 INFORMATICS PRACTICES Time : 3 hrs. Class XI M.M. : 70 Date 26.02.2014 Important instructions: This question paper contains 7 questions. All the questions are compulsory.

More information

XII INFORMATICS PRACTICES CBSE Board 2014

XII INFORMATICS PRACTICES CBSE Board 2014 XII INFORMATICS PRACTICES CBSE Board 04 (a) Why is a switch called an intelligent hub? Ans. Function of switch is similar to hub that is to connect different types of devices and computers in network but

More information

INFORMATICS PRACTICES

INFORMATICS PRACTICES Series OSR Code No. 90 Roll No. Candidates must write the Code on the title page of the answer-book. Please check that this question paper contains 8 printed pages. Code number given on the right hand

More information

MONTHLY TEST (JUNE 2018) CLASS XII INFORMATICS PRACTICES

MONTHLY TEST (JUNE 2018) CLASS XII INFORMATICS PRACTICES M.M: 40 MONTHLY TEST (JUNE 2018) CLASS XII INFORMATICS PRACTICES TIME: 80 Mins. Q1. Which of the following is not a feature of Networking? (i) Resource Sharing (ii) Reliability (iii) Uninterrupted power

More information

1 (a) Which transmission medium should be used to transfer data across two continents at very high speed?

1 (a) Which transmission medium should be used to transfer data across two continents at very high speed? KENDRIYA VIDYALAYA PALAMPUR 3RD Pre-Board Examination CLASS XII - INFORMATICS PRACTICES SESSION 08-09 Time allowed : 3 Hours Maximum Marks : 70 Instructions : (i) All questions are compulsory. (ii) Answer

More information

INFORMATICS PRACTICES

INFORMATICS PRACTICES SET 4 Series : SSO/1 Roll No. Code No. 90/1 Candidates must write the Code on the title page of the answer-book. Please check that this question paper contains 7 printed pages. Code number given on the

More information

Subodh Public School

Subodh Public School Subodh Public School08-9 Final Exam Class:Scholars (XI) Subject :- Informatics Practices Answer Key Q. Section-A 0 Marks A a)machine failure (b) Program failure (c) Operating failure (d) Control procedures

More information

KENDRIYA VIDYALAYA SANGATHAN, ERNAKULAM REGION INFORMATICS PRACTICES CLASS XII PRE-BOARD-I

KENDRIYA VIDYALAYA SANGATHAN, ERNAKULAM REGION INFORMATICS PRACTICES CLASS XII PRE-BOARD-I Max Mark: 70 KENDRIYA VIDYALAYA SANGATHAN, ERNAKULAM REGION INFORMATICS PRACTICES CLASS XII PRE-BOARD-I Instructions: (i) All Questions are compulsory (ii) Programming language : Java, SQL (iii)read the

More information

Sample Paper 2014 Class - XII Subject Informatics Practices (065)

Sample Paper 2014 Class - XII Subject Informatics Practices (065) Sample Paper 2014 Class - XII Subject Informatics Practices (065) Instructions: (i) All questions are compulsory (ii) Answer the questions after carefully reading the text. QA Answer the following questions:

More information

MOCK PRE-BOARD EXAMINATION MARKING SCHEME ( ) CLASS XII INFORMATICS PRACTICES

MOCK PRE-BOARD EXAMINATION MARKING SCHEME ( ) CLASS XII INFORMATICS PRACTICES MOCK PRE-BOARD EXAMINATION MARKING SCHEME (07-8) CLASS XII INFORMATICS PRACTICES Time allowed :3hours Maximum marks : 70 Q. No. A. wer all parts of the same question together. B. Do your paper neatly.

More information

CompanyCode Donations C C102 NULL C C ENO NAME 1 Anita Khanna 2 Bishmeet Singh

CompanyCode Donations C C102 NULL C C ENO NAME 1 Anita Khanna 2 Bishmeet Singh Series ONS Roll No. SET-4 Code No. 90 Candidates must write the Code on the title page of the answer-book. Please check that this question paper contains printed pages. Code number given on the right hand

More information

Q1. (a) (½) (b) (½) (c) (½) (d) (½) (e) (2) (f) (1) (g) (1) above address object/device assigned (h) (4) Q2. (a) (1) (b) (1) (c) (1) (d) (1)

Q1. (a) (½) (b) (½) (c) (½) (d) (½) (e) (2) (f) (1) (g) (1) above address object/device assigned (h) (4) Q2. (a) (1) (b) (1) (c) (1) (d) (1) Q1. (a) Which protocol is used for the transfer of hyper text document on the internet. (b) Which transmission medium should be used to transfer data across two continents at very high speed. (c) Two neighbourhood

More information

KENDRIYA VIDYALAYA SANGATHAN ERNAKULAM REGION FIRST PRE-BOARD EXAMINATION

KENDRIYA VIDYALAYA SANGATHAN ERNAKULAM REGION FIRST PRE-BOARD EXAMINATION KENDRIYA VIDYALAYA SANGATHAN ERNAKULAM REGION FIRST PRE-BOARD EXAMINATION 04-5 INFORMATICS PRACTICES Time allowed: 3 hours Maximum Marks: 70 Instructions: (i) All questions are compulsory. (ii) Programming

More information

SAMPLE PAPER Class XII Subject INFORMATICS PRACTICES. TIME: 3Hrs. M.M. 70

SAMPLE PAPER Class XII Subject INFORMATICS PRACTICES. TIME: 3Hrs. M.M. 70 SAMPLE PAPER -2015 Class XII Subject INFORMATICS PRACTICES TIME: 3Hrs. M.M. 70 Q1. (a). Which Protocol is used for transfer of hypertext documents of the Internet? [1] (b). Two doctors in the same room

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

INFORMATICS PRACTICES

INFORMATICS PRACTICES Series : ONS/1 Roll No. SET 4 Code No. 90/1 Candidates must write the Code on the title page of the answer-book. Please check that this question paper contains 8 printed pages. Code number given on the

More information

KENDRIYA VIDYALAYA ONGC PANVELSESSION ENDING EXAM

KENDRIYA VIDYALAYA ONGC PANVELSESSION ENDING EXAM KENDRIYA VIDYALAYA ONGC PANVELSESSION ENDING EXAM - 2013 KENDRIYA VIDYALAYA ONGC, PANVEL SESSION ENDING EXAMINATION 2012 SEE Set-2-2013 CLASS XI SUBJECT : INFORMATICS PRACTICES (065) Time Allowed : 3 Hrs.

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

CLASS XII SAMPLE PAPER-065 INFORMATICS PRACTICES

CLASS XII SAMPLE PAPER-065 INFORMATICS PRACTICES CLASS XII SAMPLE PAPER-065 INFORMATICS PRACTICES Time- 3hrs Max m Marks-70 General Instructions : (i) All questions are compulsory. (ii) Answer the questions after carefully reading the text. Q1 (i) (a)

More information

Select Avg (Commission) for Sales; Select Count(Sales) from Sales;

Select Avg (Commission) for Sales; Select Count(Sales) from Sales; GUESS PAPER 2014 CLASS - XII SUBJECT INFORMATICS PRACTICES (065) Duration : 3 Hours Maximum Marks : 70 General Instructions: I. All questions are compulsory. II. Answer the question after carefully reading

More information

ES II Set 1 Date: 20 th July 2018 Class XII Sec. Time: 1 1/2 Hrs. Informatics Practices answer key M.M.: 35

ES II Set 1 Date: 20 th July 2018 Class XII Sec. Time: 1 1/2 Hrs. Informatics Practices answer key M.M.: 35 ES II Set 1 Date: 20 th July 2018 Class XII Sec. Time: 1 1/2 Hrs. Informatics Practices answer key M.M.: 35 Name Roll No. Instruction: a) Attempt all questions neatly. b) All Parts of the same question

More information

BLUE PRINT. S.No. Topic Marks 1 Java Programming 30 2 Database concepts 35 3 IT Applications 5

BLUE PRINT. S.No. Topic Marks 1 Java Programming 30 2 Database concepts 35 3 IT Applications 5 BLUE PRINT S.No. Topic Marks 1 Java Programming 30 2 Database concepts 35 3 IT Applications 5 KENDRIYA VIDYALAYA NO.2 TAMBARAM, CHENNAI 73 HALF YEARLY EXAM 2015 CLASS : XII MARKS : 70 SUB : INFORMATICS

More information

KENDRIYA VIDYALAYA SANGATHAN CLASS XII BOARD EXAMINATION INFORMATICS PREACITES (065)

KENDRIYA VIDYALAYA SANGATHAN CLASS XII BOARD EXAMINATION INFORMATICS PREACITES (065) KENDRIYA VIDYALAYA SANGATHAN CLASS XII BOARD EXAMINATION INFORMATICS PREACITES (065) Time allowed: 3 hours Maximum Marks: 70 Instructions: (i) All questions are compulsory. (ii) Programming language :

More information

II- Pre Board Examination SET A

II- Pre Board Examination SET A KENDRIYA VIDYALAYA SANGATHAN ERNAKULAM REGION II- Pre Board Examination- 08-9 SET A Subject : Informatics Practices (065) Class : XII Time : 3 hours Maximum Marks : 70 _ Note. (i) All questions are compulsory.

More information

INFORMATICS PRACTICES All questions are compulsory. Answer the questions after carefully reading the text.

INFORMATICS PRACTICES All questions are compulsory. Answer the questions after carefully reading the text. SET 4 Series : GBM/1 Code No. 90/1 Roll No. Candidates must write the Code on the title page of the answer-book. Please check that this question paper contains 11 printed pages. Code number given on the

More information

KENDRIYA VIDYALAYA SANGATHAN- CHENNAI REGION INFORMATICS PRACTICES REVISION TIME : 3 HOURS MAX MARKS : 70

KENDRIYA VIDYALAYA SANGATHAN- CHENNAI REGION INFORMATICS PRACTICES REVISION TIME : 3 HOURS MAX MARKS : 70 KENDRIYA VIDYALAYA SANGATHAN- CHENNAI REGION INFORMATICS PRACTICES REVISION- 2012-13 TIME : 3 HOURS MAX MARKS : 70 NOTE : i. All the questions are compulsory. ii. Answer the questions after carefully reading

More information

General Instructions: (i) (ii) (iii) (iv) (v) (vi) (vii) All questions are compulsory Sample Paper 2014 Class XII Subject Informatics Practices Answer the questions after carefully reading the text. This

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

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

PRE BOARD EXAM Sub:Informatics Practices (065) Class:XII

PRE BOARD EXAM Sub:Informatics Practices (065) Class:XII Max Marks:-70 PRE BOARD EXAM 2010-11 Sub:Informatics Practices (065) Class:XII Time :3 Hrs. 1. (a) Two doctors in the same room have connected their Palm Tops using Bluetooth for working on a Group presentation.

More information

Freshminds University Kolkata a) If a string MySTring holds a value 12345, then how will you convert

Freshminds University Kolkata a) If a string MySTring holds a value 12345, then how will you convert Maharaja Agrasen Model School Subject : Informatics Practices Sample Paper Time: 3 Hours Maximum Marks: 70 General Instructions: i) Attempt all the questions. ii) Answer the questions after carefully reading

More information

Sample Paper-2011 Class : XII MM : 70 Subject : Informatics Practices Time : 3 hours

Sample Paper-2011 Class : XII MM : 70 Subject : Informatics Practices Time : 3 hours Sample Paper-0 Class : XII MM : 70 Subject : Informatics Practices Time : 3 hours General Instructions :. This question paper is divided into three sections. Section A consists marks. 3. Section B is of

More information

KENDRIYA VIDYALAYA ALIGANJ SHIFT-II HOLIDAY HOMEWORK CLASS-XII INFORMATICS PRACTICES

KENDRIYA VIDYALAYA ALIGANJ SHIFT-II HOLIDAY HOMEWORK CLASS-XII INFORMATICS PRACTICES KENDRIYA VIDYALAYA ALIGANJ SHIFT-II HOLIDAY HOMEWORK 18-19 CLASS-XII INFORMATICS PRACTICES 1. Arrange the following data types in increasing order of their size : byte, int, float, double, char, boolean.

More information

Downloaded from

Downloaded from SAMPLE PAPER - 2014 INFORMATICS PRACTICES Class XII Time: 3Hrs. M.M. 70 Instructions: (i) There are 30 questions contained in four sections A,B,C and D. (ii) All questions are compulsory to solve. (iii)

More information

INFORMATICS PRACTICES

INFORMATICS PRACTICES SET-4 Series SGN Code No. 90 Roll No. Candidates must write the Code on the title page of the answer-book. Please check that this question paper contains 11 printed pages. Code number given on the right

More information

INFORMATICS PRACTICES

INFORMATICS PRACTICES SET-4 Series SSO Code No. 90 Roll No. Candidates must write the Code on the title page of the answer-book. Please check that this question paper contains 8 printed pages. Code number given on the right

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

Downloaded from

Downloaded from Lesson 16: Table and Integrity Constraints Integrity Constraints are the rules that a database must follow at all times. Various Integrity constraints are as follows:- 1. Not Null: It ensures that we cannot

More information

Downloaded from

Downloaded from FIRST TERMINAL EXAMINATION, 2013 INFORMATICS PRACTICES Time : 3 hrs. 221214 M.M. : 70 Instructions: i. This question paper contains 7 Questions. ii. All the questions are compulsory. iii. Answer the questions

More information

Visit for more.

Visit  for more. Chapter 9: More On Database & SQL Advanced Concepts Informatics Practices Class XII (CBSE Board) Revised as per CBSE Curriculum 2015 Visit www.ip4you.blogspot.com for more. Authored By:- Rajesh Kumar Mishra,

More information

KENDRIYA VIDYALAYA SANGATHAN BLUE PRINT INFORMATICS PRACTICES CLASS XII TOPICS SA(1) SA(2) LA(6) TOTAL

KENDRIYA VIDYALAYA SANGATHAN BLUE PRINT INFORMATICS PRACTICES CLASS XII TOPICS SA(1) SA(2) LA(6) TOTAL KENDRIYA VIDYALAYA SANGATHAN BLUE PRINT INFORMATICS PRACTICES CLASS XII TOPICS SA() SA() LA(6) TOTAL Networking & Open 4(4) 3(6) - 7(0) Source software Programming in Java 7(7) 6() (6) 4(5) RDBMS 6(6)

More information

Sample Paper for class XII IP with Answers Prepared by Successbook Group Sub: - Informatics Practices Total Marks :70 Time:3hr

Sample Paper for class XII IP with Answers Prepared by Successbook Group Sub: - Informatics Practices Total Marks :70 Time:3hr Sample Paper for class XII IP with Answers Prepared by Successbook Group Sub: - Informatics Practices Total Marks :70 Time:3hr 1. (a.) Why do we use repeater? A repeater is used to regenerate data and

More information

Guru Gobind Singh Public School. Assignment

Guru Gobind Singh Public School. Assignment Class : XII Subject : Informatics Practices Guru Gobind Singh Public School Sector: V/B, Bokaro Steel City Assignment 1 (a) The Chalchitra theatre has a computer network. The network is in one building.

More information

SESSION ENDING EXAMINATION CLASS XI SUBJECT : INFORMATICS PRACTICES (065) Time Allowed : 3 Hrs. Max Marks : 70

SESSION ENDING EXAMINATION CLASS XI SUBJECT : INFORMATICS PRACTICES (065) Time Allowed : 3 Hrs. Max Marks : 70 SESSION ENDING EXAMINATION CLASS XI SUBJECT : INFORMATICS PRACTICES (065) Time Allowed : 3 Hrs. Max Marks : 70 Note : 1-This question paper is divided into three sections. 2- Section-A and Section-B are

More information

INDIAN SCHOOL MUSCAT FINAL TERM EXAMINATION INFORMATICS PRACTICES

INDIAN SCHOOL MUSCAT FINAL TERM EXAMINATION INFORMATICS PRACTICES Answer Key-Class XI INFO 017-18(Final) Roll Number Code Number 065/ INDIAN SCHOOL MUSCAT FINAL TERM EXAMINATION INFORMATICS PRACTICES CLASS: XII Sub. Code: 065 TimeAllotted:3 Hrs 18.0.018 Max. Marks: 70

More information

Sample Question Paper Subject: Informatics Practices Class: XII Session

Sample Question Paper Subject: Informatics Practices Class: XII Session Sample Question Paper Subject: Informatics Practices Class: XII Session 07-8 Time: 3 Hrs. M.M. 70 (a) Mr. Ravi, an IT Help Desk executive needs to remotely login a customer s PC to provide him technical

More information

Informatics Practices, Class XII ( ) (Summer Vacation-2015) (Holiday H.W) Java Concepts & Programming, MySQL

Informatics Practices, Class XII ( ) (Summer Vacation-2015) (Holiday H.W) Java Concepts & Programming, MySQL (Summer Vacation-2015) (Holiday H.W) Java Concepts & Programming, MySQL 1. How is ordinary compilation process different from Java compilation? 2. Differentiate between a component and a container. 3.

More information

KENDRIYA VIDYALAYA SANGATHAN BLUE PRINT INFORMATICS PRACTICES(065) CLASS XII. Total Marks Questions VSA SA I LA Total 34 70

KENDRIYA VIDYALAYA SANGATHAN BLUE PRINT INFORMATICS PRACTICES(065) CLASS XII. Total Marks Questions VSA SA I LA Total 34 70 KENDRIYA VIDYALAYA SANGATHAN BLUE PRINT INFORMATICS PRACTICES(065) CLASS XII Type of Questions Marks per Question Total No. of Total Marks Questions VSA 8 8 SA I 0 40 LA 6 0 Total 34 70 Unit Topic VSA(

More information

INDIAN SCHOOL MUSCAT THIRD PRELIMINARY EXAMINATION INFORMATICS PRACTICES

INDIAN SCHOOL MUSCAT THIRD PRELIMINARY EXAMINATION INFORMATICS PRACTICES INDIAN SCHOOL MUSCAT THIRD PRELIMINARY EXAMINATION INFMATICS PRACTICES wer -Key CLASS: XII Sub. Code: 065 0.0.08 Max. Marks: 70 (a) Identify odd one out of the following: Optical Fiber/Coaxial Cable/ Bluetooth/Twisted

More information

Sample Paper SET1. 1 (a) Ans. Ans.

Sample Paper SET1. 1 (a) Ans. Ans. (a) (b) Sample Paper SET Class-XII Subject: Informatic Practices Answer the following questions: What is the difference between Star Topology and Bus Topology of network? Bus topology: All devices are

More information

INFORMATICS PRACTICES (065)

INFORMATICS PRACTICES (065) Roll No. Code : 112011-065-A Please check that this question paper contains 7 questions and 8 printed pages. CLASS-XI INFORMATICS PRACTICES (065) Time Allowed : 3 Hrs. Maximum Marks : 70 General Instructions

More information

SAMPLE PAPER-2015 CLASS-XII Subject: Informatics Practices. Time: 3 hours Max. Marks: 70

SAMPLE PAPER-2015 CLASS-XII Subject: Informatics Practices. Time: 3 hours Max. Marks: 70 SAMPLE PAPER-05 CLASS-XII Subject: Informatics Practices Time: 3 hours Max. Marks: 70 Notes: (i) All questions are compulsory. (ii) Answer the questions after carefully reading the text. Q. a. Write examples

More information

1 (i) do (ii) Float (iii) salary12 (iv) Product

1 (i) do (ii) Float (iii) salary12 (iv) Product Tagore Public School Shastri Nagar Pre-Board Examination 07-8 Class-XII Subject-IP (065) MM: 70. A Identify invalid variable names out of the following. State reason if invalid. (i) do (ii) Float (iii)

More information

Chapter 9: Working with MySQL

Chapter 9: Working with MySQL Chapter 9: Working with MySQL Informatics Practices Class XI (CBSE Board) Revised as per CBSE Curriculum 2015 Visit www.ip4you.blogspot.com for more. Authored By:- Rajesh Kumar Mishra, PGT (Comp.Sc.) Kendriya

More information

KENDRIYA VIDYALAYA SANGATHAN- CHENNAI REGION INFORMATICS PRACTICES REVISION = ANSWER KEY. Q.1 a. What is protocol? 1

KENDRIYA VIDYALAYA SANGATHAN- CHENNAI REGION INFORMATICS PRACTICES REVISION = ANSWER KEY. Q.1 a. What is protocol? 1 KENDRIYA VIDYALAYA SANGATHAN- CHENNAI REGION INFORMATICS PRACTICES REVISION = 2012-13 ANSWER KEY Q.1 a. What is protocol? 1 A set of rules of communication is protocol. 1 mark for correct answer b. In

More information

Sample Paper DATABASE MANAGEMENT APPLICATIONS (795) XII

Sample Paper DATABASE MANAGEMENT APPLICATIONS (795) XII Sample Paper DATABASE MANAGEMENT APPLICATIONS (795) XII Time Allowed: 2½ hours Maximum marks: 50 SECTION A Attempt any ten from the following 10 x 1=10 1. The number of attributes in a relation is called

More information

Downloaded from

Downloaded from KENDRIYA VIDYALAYA SANGATHAN, CHENNAI REGION Sub : Informatics Practices (065) Time allowed : 3 hours Maximum Marks : 70 Marking Scheme. a. Mrs Ruchi is planning to connect all the 5 computers in her office

More information

ES I INFORMATICS PRACTICES Set I Class XII Sec- A,B,C Date: April 2017 Time: 1 hr 10 min M.M.: 30

ES I INFORMATICS PRACTICES Set I Class XII Sec- A,B,C Date: April 2017 Time: 1 hr 10 min M.M.: 30 ES I INFORMATICS PRACTICES Set I Class XII Sec- A,B,C Date: April 2017 Time: 1 hr 10 min M.M.: 30 Name Roll No. Instruction: a) Attempt all questions 1. a) Table Stud has 20 rows and 15 columns. Table

More information

INDIAN SCHOOL MUSCAT THIRD PRELIMINARY EXAMINATION INFORMATICS PRACTICES

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

More information

Downloaded from

Downloaded from FIRST TERMINAL EXAMINATION, INFORMATICS PRACTICES Time : 3 hrs. Class - XI M.M. : 70 Instructions: This question paper contains seven questions. All the questions are compulsory. Answer the questions carefully.

More information

KENDRIYA VIDYALAYA SANGATHAN, KOLKATA REGION SESSION ENDING EXAM ( ) INFORMATICS PRACTICES CLASS-XI DURAION: 3 HOURS MAXIMUM MARKS: 70

KENDRIYA VIDYALAYA SANGATHAN, KOLKATA REGION SESSION ENDING EXAM ( ) INFORMATICS PRACTICES CLASS-XI DURAION: 3 HOURS MAXIMUM MARKS: 70 KENDRIYA VIDYALAYA SANGATHAN, KOLKATA REGION SESSION ENDING EXAM (205-6) INFORMATICS PRACTICES CLASS-XI DURAION: 3 HOURS MAXIMUM MARKS: 70 ALL QUESTIONS ARE COMPULSORY Q) a) Which of the following is not

More information

SAMPLE PAPER: 2015 Class :XII Subject : Informatics Practices. Time: 3 hrs. M.M. 70. Section A

SAMPLE PAPER: 2015 Class :XII Subject : Informatics Practices. Time: 3 hrs. M.M. 70. Section A SAMPLE PAPER: 2015 Class :XII Subject : Informatics Practices Time: 3 hrs. M.M. 70 Instructions: i) All questions are compulsory. ii) Programming language:java Section A a) What is foreign key and Candidate

More information

Downloaded from Downloaded from Downloaded from Downloaded from

Downloaded from   Downloaded from   Downloaded from   Downloaded from CBSE Board AISSCE 01 Marking Scheme for Informatics Practices Sub Code:065 Paper Code 90 Outside Delhi 1 (a) Raj Kamal International School is planning to connect all computers, each spread over 1 distance

More information

S.F.D.A.V. Public School,Muzaffarnagar QUESTION BANK- I

S.F.D.A.V. Public School,Muzaffarnagar QUESTION BANK- I S.F.D.A.V. Public School,Muzaffarnagar QUESTION BANK- I SUB- CLASS-XII INFORMATICS PRACTICES 1. Define the following- (i) Repeaters (ii) Gateway (iii) Bridge (iv) Hub (v) Switch 2. What is the difference

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

Downloaded from

Downloaded from INFORMATICS PRACTICES (05) SAMPLE PAPER CLASS XII Time: 3HRS MM: 70 Q- Answer the following questions a) Name any two phone operating system(floss). b) What is a character encoding system? c) Mr. Rohan

More information

Class XII INFORMATICS PRACTICES LAST YEAR PAPER-01( )

Class XII INFORMATICS PRACTICES LAST YEAR PAPER-01( ) Class XII INFMATICS PRACTICES LAST YEAR PAPER-01(2014-15) Time : 3 Hours, Maximum Marks : 70 Instructions: (i) All questions are compulsory. (ii) Answer the questions after carefully reading the text.

More information

THE INDIAN COMMUNITY SCHOOL, KUWAIT

THE INDIAN COMMUNITY SCHOOL, KUWAIT THE INDIAN COMMUNITY SCHOOL, KUWAIT SERIES : I MODEL / 07-08 CODE : N 065 TIME ALLOWED : 3 HOURS NAME OF STUDENT : MAX. MARKS : 70 ROLL NO. :.. CLASS/SEC :.. NO. OF PAGES : 5 INFORMATICS PRACTICES ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

More information

CLASS XII SUBJECT: - INFORMATICS PRACTICES (065) I.P. (Theory)

CLASS XII SUBJECT: - INFORMATICS PRACTICES (065) I.P. (Theory) CLASS XII SUBJECT: - INFORMATICS PRACTICES (065) Unit Topic Period Marks Theory Practical Theory Practical 1 NETWORKING AND OPEN STANDARDS 20 4 10 2 2 PROGRAMMING 42 40 25 16 3 RELATIONAL DATABASE 42 36

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

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

INTRODUCTION TO MYSQL MySQL : It is an Open Source RDBMS Software that uses Structured Query Language. It is available free of cost. Key Features of MySQL : MySQL Data Types: 1. High Speed. 2. Ease of

More information

THE INDIAN COMMUNITY SCHOOL, KUWAIT

THE INDIAN COMMUNITY SCHOOL, KUWAIT THE INDIAN COMMUNITY SCHOOL, KUWAIT SERIES : II TERM /FN/ 2018-2019 CODE :N 065 TIME ALLOWED :3 HOURS NAME OF STUDENT : MAX. MARKS :70 ROLL NO. :.. CLASS/SEC :.. NO. OF PAGES :5 INFORMATICS PRACTICES ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

More information

Answer any four from (a) to (g) questions : (4 x 2=8)

Answer any four from (a) to (g) questions : (4 x 2=8) SAMPLE PAPER Class XI Annual Examination 2014-15 Subject - Informatics Practices Max. Marks : 70 Time : 3 Hrs. Note : Read the instructions carefully before answering Q.1 Answer the following questions

More information

SPLIT UP SYLLABUS SUBJECT : INFORMATICS PRATICES (065) SESSION: CLASS XII ( ) (THEORY)

SPLIT UP SYLLABUS SUBJECT : INFORMATICS PRATICES (065) SESSION: CLASS XII ( ) (THEORY) SPLIT UP SYLLABUS SUBJECT : INFORMATICS PRATICES (065) SESSION:2014-15 CLASS XII (2014-15) (THEORY) Unit Topic Marks 1. Networking and Open Standards 10 2. Programming 25 3. Relational Database Management

More information

KENDRIYA VIDYALAYA SANGATHAN REGION KOLKATA XII 3 RD -PreBoard SUBJECT-IP (065)

KENDRIYA VIDYALAYA SANGATHAN REGION KOLKATA XII 3 RD -PreBoard SUBJECT-IP (065) KENDRIYA VIDYALAYA SANGATHAN REGION KOLKATA XII 3 RD -PreBoard2016-17 SUBJECT-IP (065) MAX MARKS-70 TIME- 3 HOURS All questions are compulsory. Programming language : Java, MySQL Q1)a)Arpan is working

More information

MARKING SCHEME INFORMATICS PRACTICES (065) Time allowed : 3 Hours M. M.: 70. (a) Ans: Team Viewer( 1 mark for correct answer)

MARKING SCHEME INFORMATICS PRACTICES (065) Time allowed : 3 Hours M. M.: 70. (a) Ans: Team Viewer( 1 mark for correct answer) MARKING SCHEME INFORMATICS PRACTICES (065) Time allowed : 3 Hours M. M.: 70 1. (a) Ans: Team Viewer( 1 mark for correct answer) (b) Ans: i) WAN ii) MAN (1/2 Mark for each correct ans) (c) Ans: Modem convert

More information

Sample Paper 2011 Class XII Subject Informatics Practices Time 03 hrs Max Marks 70 General Instructions:- 1. All questions are compulsory. 2. Question paper carries A, B & C Three parts. 3. Section A is

More information

Deepak Bhinde PGT Comp. Sc.

Deepak Bhinde PGT Comp. Sc. Deepak Bhinde PGT Comp. Sc. SQL Elements in MySQL Literals: Literals refers to the fixed data value. It may be Numeric or Character. Numeric literals may be integer or real numbers and Character literals

More information

CLASS XII SAMPLE PAPER-065 INFORMATICS PRACTICES

CLASS XII SAMPLE PAPER-065 INFORMATICS PRACTICES CLASS XII SAMPLE PAPER-065 INFORMATICS PRACTICES Time:3 Hrs. M.M:70 General Instructions: I. All Questions are compulsory II. Marks are given in front of each question Q1(a) The Chalchitra theatre has

More information

Sample Question Paper - I INFORMATICS PRACTICES Class-XII Type of Questions Marks Total Number of Total Marks Per Question Questions SA I 1 16 16 SA II 2 18 36 LA 6 3 18 Total 37 70 Blue Print - Sample

More information

THE INDIAN COMMUNITY SCHOOL, KUWAIT

THE INDIAN COMMUNITY SCHOOL, KUWAIT THE INDIAN COMMUNITY SCHOOL, KUWAIT SERIES : I SE / 2016-2017 CODE : N 065 MAX. MARKS : 70 TIME ALLOWED : 3 HOURS NO. OF PAGES : 6 INFORMATICS PRACTICES ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

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