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

Size: px
Start display at page:

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

Transcription

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

2 KENDRIYA VIDYALAYA NO.2 TAMBARAM, CHENNAI 73 HALF YEARLY EXAM 2015 CLASS : XII MARKS : 70 SUB : INFORMATICS PRACTICES TIME : 3 HRS Q.1 (a) Name any two properties of password control. 1 What is the purpose of break statement in a looop. 1 (c) (d) (e) Name the tag which is used as Section Separator. Is it a container tag? 1 What is the final value of x? How many times will this loop execute? int count=0,x=9; 2 count=x--; do { count+=x - -; }while(x>6); Write a Java code that takes one integer type value from jtextfield1. If value is positive then display the message using a labe with suitable message: Value is Positive. 2 (f) What are the characteristics of XML? 1 (g) What are the use of the following tags- 2 <OL>, <HEAD> Q.2 (a) Which MySQL command will allow you to see constraints applied to a column. 1 (c) Reena created a table named student, she wants to see those students whose name ending with p. She wrote a query- SELECT name.* FROM student WHERE name= %p ; 2 What is primary key? How is it different from candidate key? Explain with the help of suitable example. 2 (d) Write MySql command to display the list of existing databases? 1 (e) Write a query to create following table with appropriate primary

3 key. 2 BANK Ac_N o Cust_Na me Amou nt Date_of_op en No_of_transac tion (f) A table STUDENT is having 5 rows and 3 columns (Admno, Name, Marks). What would be the cardinality and degree after execution of following commands. 2 (i) Alter Table add mobile char (10); (ii) Delete from student; Q.3 (a) SS Garments sells garments. They had asked their programmer to develop the following GUI in NetBeans: The company offeres discount as per following rates Men : 10% Women : 5% Kids : 2% (i) Write the code to make the text fields Discount(tfDisc) and net amount(tfnetamt) uneditable. 1 (ii) When discount button is clicked, discount should be calculated as per the given criteria and should be displayed in the discount textfield. Also calculate the net amount and display it in the respective text field by making them editable 3 (iii) Up on clicking the EXIT button the application should be terminated. 1

4 The following code has some error(s). Rewrite the correct code underlining all the corrections made: 2 int sum=0, step=5; int i; for(i=0,i=<5,i++) { step+=5, sum=+step; } jtextarea1.showtext( +sum) ; (c) How many times does the following loop executes: 1 x=5; y=50; while(x<=y) { x=y/x; } (d) Rewrite the following program code using a if-statement: 2 String remarks; int id=integer.parseint(jtextfield1.gettext()); switch(id) { case 0 : remarks= 100 % result ; break; case 1 : remarks= 50 % result ; break; case 2 : remarks= 30% results ; break; default: remarks= Invalid entry ; } Q.4 (a) Write an output of the following queries. 3 (i) SELECT SQRT (100) ; (ii) SELECT SUBSTR ( RED SCHOOL JHAJJAR, 5, 3 ) ; (iii) Select CONCAT(substr( India is a great country,12,5), Indians ); Write the SQL Query for (i) to (vi) and output of (vii) and (viii) on the basis of table BANK given below: 7 BANK Ac_N o Cust_Na me B_Nam e Amoun t Date_of_op en No_of_transact ion A001 Agam Shah SBI

5 A002 Nishant HDFC Patel A003 Krunal ICICI A004 Twinkle HDFC A005 Jinal ICICI A006 Aaditya SBI A007 Varsha AXIS A008 Vishnu ICICI A009 Dhruv Raj UCO i. To display the number of customer in SBI who opened their account in the year ii. Display Ac_No,Amount,No_of_transaction of customers whose bank is SBI or ICICI or UCO bank. iii. Display the detail of customer whose name ends with l. iv. Display the Date _ of_ Open of oldest customer. v. Display sum of amount deposited in each bank separately. vi. Remove the detail of all customer of UCO bank. vii.select Count(distinct B_Name) from Books; viii. Select SUBSTR(Cust_Name,3,6) from BANK; Q.5 (a) Prerna is programmer at HDFC bank. To calculate the amount and interest, she has developed the following GUI in NetBeans. The rate of interest is calculates are following Fixed Deposit : 6% Recurring Deposit : 7.5% Extra 0.5% interest for senior citizens.

6 (i) (ii) Make sure that Principal amount entered is positive numbers only. If it is not then message should be displayd in dialogue box. 1 Write the code for calculatebtn to calculate compound interest and amount and display the values in textboxes interesttf and amounttf. 3 Compound Interest = P*(1+r/100)^T Amount = Principal + Compound Interest (iii) Write th code that will clear all the textfields. 1 (c) Write a program to find if given number is even. Design appropriate interface. 3 What will be content of textarea when following code will be executed? 2 String str1= Ruksana ; String str2= Ruksaar ; jtextarea1.settext(str2.length()+str2.concat(str1).length()); Q.6 (a) Consider the tables Trainee & Trainer given below: Trainee Trainee_ID Trainee Gender Trainer_ID TE001 Pawan Male TR005 TE002 Radhika Female TR004 TE009 Ankit Male TR004 TE007 Abhishek Female TR002 TE005 Vishnu Male TR001 Trainer Trainer_ID Trainer Sports TR005 Mr Gupta Carom TR004 Mr Football Chaudhary TR003 Mr Singh Carom TR002 Mr Das Cricket TR001 Mr Sen Football Based upon above given tables, write commands in SQL for (i) and (ii) and output for (iii) given below: (i) Display the Trainee Name, Gender and corresponding Trainer Name for all Trainee. 2 (ii) Display the Trainee Name and Trainer Name of all Trainees. 2

7 (iii) Select Trainne, Gender from Trainee, Trainer 1 where Trainee.Trainer_id = Trainer.Trainer_id and sports = carom ; (iv) Name the primary keys of each table. 1 (v) What would be cardinality and degree of the cartesian product of these two tables. 2 What is the difference between Round and Truncate function? 2 (c) Define ACID properties and ROLLBACK? 2 (d) Write the output of the following queries. (i) SELECT MOD(657,9); 1 (ii) SELECT 2 SUBSTR( INTERNATIONAL,LENGTH(CONCAT( MARKET, ING )),3); Q.7 (a) What is the task of a back end? Give any one example of software bring used as back end. 1 What is a portal? Give any one example of e-governance portal with its purpose. 2 (c) Rajesh is developing his project on Customer Management for CBSE Examination. Help him to select proper controls from the list i.e Combo Box, Radio Button, Text Area, Command button and text Field for the following purpose: (1/2 X 4 = 2) (i) To show description of Item. (ii) To display item Name. (iii) To input price. (iv) To accept card type i.e Debit Card, Credit Card Visa Card,.

8 KENDRIYA VIDYALAYA NO.2 TAMBARAM, CHENNAI 73 HALF YEARLY EXAM 2015 ANSWER KEY CLASS : XII MARKS : 70 SUB : INFORMATICS PRACTICES TIME : 3 HRS Q.1 (a) Name any two properties of password control. 1 1/2 mark each for correct properties What is the purpose of break statement in a looop. 1 1 mark for correct answer with respect to loops. (c) Name the tag which is used as Section Separator. Is it a container tag? 1 1/2 mark for the tag 1/2 mark for identifying as non container tag (d) What is the final value of x? How many times will this loop execute? int count=0,x=9; 2 count=x--; do { count+=x - -; }while(x>6); 2 2 marks for correct answer with the tracing (e) Write a Java code that takes one integer type value from jtextfield1. If value is positive then display the message using a label with suitable message: Value is Positive. 2 1 mark for extracting values 1 mark for checking (f) What are the characteristics of XML? 1 1/2 mark for any two characteristics of XML (g) What are the use of the following tags- 2 <OL>, <HEAD> 1 mark for correct usage of each tag Q.2 (a) Which MySQL command will allow you to see constraints applied to a column. 1

9 1 mark for correct answer Reena created a table named student, she wants to see those students whose name ending with p. She wrote a query- SELECT name.* FROM student WHERE name= %p ; 2 1 mark for column name correction 1 mark for condition correction (c) What is primary key? How is it different from candidate key? Explain with the help of suitable example. 2 1 mark for explaining primary key 1 mark for differentiating it from candidate keys (d) Write MySql command to display the list of existing databases? 1 1 mark for correct answer (e) Write a query to create following table with appropriate primary key. 2 BANK Ac_N o Cust_Na me Amou nt Date_of_op en No_of_transac tion 1 marks for correct column creation 1/2 mark for primary key constriant 1/2 mark for correct syntax (f) A table STUDENT is having 5 rows and 3 columns (Admno, Name, Marks). What would be the cardinality and degree after execution of following commands. 2 (iii) Alter Table add mobile char (10); (iv) Delete from student; 1/2 mark each for correct degree and cardinality after each query Q.3 (a) SS Garments sells garments. They had asked their programmer to develop the following GUI in NetBeans:

10 The company offeres discount as per following rates Men : 10% Women : 5% Kids : 2% (i) Write the code to make the text fields Discount(tfDisc) and net amount(tfnetamt) uneditable. 1 1/2 mark each formaking the textfields uneditable (ii) (iii) When discount button is clicked, discount should be calculated as per the given criteria and should be displayed in the discount textfield. Also calculate the net amount and display it in the respective text field by making them editable 3 1 mark for correct extraction of values 1 mark for correct calculations 1 mark for correct display Up on clicking the EXIT button the application should be terminated. 1 1 mark for correct answer The following code has some error(s). Rewrite the correct code underlining all the corrections made: 2 int sum=0, step=5; int i; for(i=0,i=<5,i++)

11 { step+=5, sum=+step; } jtextarea1.showtext( +sum) ; 1/2 mark each for correctly identifying the errors and correcting them (c) How many times does the following loop executes: 1 x=5; y=50; while(x<=y) { x=y/x; } 2 times 1 mark for correct answer (d) Rewrite the following program code using a if-statement: 2 String remarks; int id=integer.parseint(jtextfield1.gettext()); switch(id) { case 0 : remarks= 100 % result ; break; case 1 : remarks= 50 % result ; break; case 2 : remarks= 30% results ; break; default: remarks= Invalid entry ; } 1/2 mark each for correct case conversion Q.4 (a) Write an output of the following queries. 3 (i) SELECT SQRT (100) ; (ii) SELECT SUBSTR ( RED SCHOOL JHAJJAR, 5, 3 ) ; (iii) Select CONCAT(substr( India is a great country,12,5), Indians ); 1010 SCH greatindians 1 mark each for correct answer Write the SQL Query for (i) to (vi) and output of (vii) and (viii) on the basis of table BANK given below: 7 BANK

12 Ac_N o Cust_Na me B_Nam e Amoun t Date_of_op en No_of_transact ion A001 Agam SBI Shah A002 Nishant HDFC Patel A003 Krunal ICICI A004 Twinkle HDFC A005 Jinal ICICI A006 Aaditya SBI A007 Varsha AXIS A008 Vishnu ICICI A009 Dhruv Raj UCO i. To display the number of customer in SBI who opened their account in the year ii. Display Ac_No,Amount,No_of_transaction of customers whose bank is SBI or ICICI or UCO bank. iii. Display the detail of customer whose name ends with l. iv. Display the Date _ of_ Open of oldest customer. v. Display sum of amount deposited in each bank separately. vi. Remove the detail of all customer of UCO bank. vii.select Count(distinct B_Name) from Books; viii. Select SUBSTR(Cust_Name,3,6) from BANK; 1 mark for correct query 1/2 mark for correct output Q.5 (a) Prerna is programmer at HDFC bank. To calculate the amount and interest, she has developed the following GUI in NetBeans.

13 The rate of interest is calculates are following Fixed Deposit : 6% Recurring Deposit : 7.5% Extra 0.5% interest for senior citizens. (i) Make sure that Principal amount entered is positive numbers only. If it is not then message should be displayd in dialogue box. 1 1/2 mark for checking 1/2 mark for display (ii) Write the code for calculatebtn to calculate compound interest and amount and display the values in textboxes interesttf and amounttf. 3 Compound Interest = P*(1+r/100)^T Amount = Principal + Compound Interest 1 mark for correct extraction ov values 1 mark for correct calculation (iii) Write th code that will clear all the textfields. 1 Ans : 1 mark for correct answer Write a program to find if given number is even. Design appropriate interface. 3 1 mark for appropriate interface 1/2 mark for extracting values 1 mark for checking 1/2 marks for display in appropriate control (c) What will be content of textarea when following code will be executed? 2 String str1= Ruksana ; String str2= Ruksaar ; jtextarea1.settext(str2.length()+str2.concat(str1).length()); 14 1/2 mark each for concate and length 1 mark for correct settext Q.6 (a) Consider the tables Trainee & Trainer given below: Trainee Trainee_ID Trainee Gender Trainer_ID TE001 Pawan Male TR005

14 TE002 Radhika Female TR004 TE009 Ankit Male TR004 TE007 Abhishek Female TR002 TE005 Vishnu Male TR001 Trainer Trainer_ID Trainer Sports TR005 Mr Gupta Carom TR004 Mr Football Chaudhary TR003 Mr Singh Carom TR002 Mr Das Cricket TR001 Mr Sen Football Based upon above given tables, write commands in SQL for (i) and (ii) and output for (iii) given below: (i) Display the Trainee Name, Gender and corresponding Trainer Name for all Trainee. 2 1 mark for column's list and table 1 mark for correct condition (ii) Display the Trainee Name and Trainer Name of all Trainees. 2 1 mark for column's list and table 1 mark for correct condition (iii) Select Trainne, Gender from Trainee, Trainer 1 where Trainee.Trainer_id = Trainer.Trainer_id and sports = carom ; 1 mark for correct answer (iv) Name the primary keys of each table. 1 1/2 mark each for the primary keys of tables (v) What would be cardinality and degree of the cartesian product of these two tables. 2 1 mark each for degree and cardinality What is the difference between Round and Truncate function? 2 1 mark each for two correct differences (c) Define ACID properties and ROLLBACK? 2 1/2 marks each for properties (d) Write the output of the following queries. (i) SELECT MOD(657,9); 1

15 1 mark for correct answer (ii) SELECT 2 SUBSTR( INTERNATIONAL,LENGTH(CONCAT( MARKET, ING )),3); 1/2 mark each for correct evaluation of functions Q.7 (a) What is the task of a back end? Give any one example of software bring used as back end. 1 1/2 mark for task 1/2 mark for example (c) What is a portal? Give any one example of e-governance portal with its purpose. 2 1 mark for definition 1 mark for example Rajesh is developing his project on Customer Management for CBSE Examination. Help him to select proper controls from the list i.e Combo Box, Radio Button, Text Area, Command button and text Field for the following purpose: (1/2 X 4 = 2) (i) To show description of Item. (ii) To display item Name. (iii) To input price. (iv) To accept card type i.e Debit Card, Credit Card Visa Card,. 1/2 mark each for correct answer

INDIAN LEARNERS OWN ACADEMY, KUWAIT Informatics Practices XII Holiday Homework. b. What is the importance of abstract classes in programming?

INDIAN LEARNERS OWN ACADEMY, KUWAIT Informatics Practices XII Holiday Homework. b. What is the importance of abstract classes in programming? INDIAN LEARNERS OWN ACADEMY, KUWAIT Informatics Practices XII Holiday Homework 1. a. Define the term Polymorphism. What are the two ways polymorphism is demonstrated in Java? b. What is the importance

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

Sample Paper 2012 Class XII Subject Informatics Practices

Sample Paper 2012 Class XII Subject Informatics Practices Sample Paper 2012 Class XII Subject Informatics Practices Time-3hrs Max m Marks-70 Roll No Do Not Write any thing on Question Paper Answer all the questions:- 1 (a) India Marchants Co is planning in the

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

(d) Write any two significance of Unicode? 1

(d) Write any two significance of Unicode? 1 1 (a) India Marchants Co is planning in the office building to connect all computers, each 1 spread over within distance of 45 Meters. Suggest the economical cable type having high speed data transfer

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

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

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

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

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

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

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

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

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

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

UNIT IV (IT APPLICATIONS) (From this unit: 3 Questions - 5 Marks)

UNIT IV (IT APPLICATIONS) (From this unit: 3 Questions - 5 Marks) UNIT IV (IT APPLICATIONS) (From this unit: 3 Questions - 5 Marks) One Mark Questions 1. Define e-business. Name one popularly used e-business website. 2. What social impact does e-governance have on society?

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

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

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

Visit For All NCERT solutions, CBSE sample papers, Question papers, Notes for Class 6 to 12

Visit  For All NCERT solutions, CBSE sample papers, Question papers, Notes for Class 6 to 12 KENDRIYA VIDYALAYA SANGATHAN Class XI Subject : Informatics Practices MM:70 Time : 3 hours General 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 : 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

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

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

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

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

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

Q2. What will be displayed in jtextfield1 and jtextfield2 after the following code is executed:

Q2. What will be displayed in jtextfield1 and jtextfield2 after the following code is executed: Q1. Holiday Homework, 2018-19 Class: XI Subject : Informatics Practices Q2. What will be displayed in jtextfield1 and jtextfield2 after the following code is executed: int num = 35, num1 = 46 ; jtextfield1.settext(

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

INFORMATICS PRACTICES

INFORMATICS PRACTICES SET-4 Series GBM 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 9 printed pages. Code number given on the right

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

INDIAN SCHOOL SOHAR FINAL EXAMINATION ( ) INFORMATICS PRACTICES (065)

INDIAN SCHOOL SOHAR FINAL EXAMINATION ( ) INFORMATICS PRACTICES (065) INDIAN SCHOOL SOHAR FINAL EXAMINATION (2015-2016) INFORMATICS PRACTICES (065) No. of printed pages: 5 Please check that this question paper contains 5 printed pages. Please check that this question paper

More information

TIME : 3 Hrs MAX. MARKS : 70 SET 1

TIME : 3 Hrs MAX. MARKS : 70 SET 1 Sample Paper 0 Class XI Subject Informatics Practices TIME : 3 Hrs MAX. MARKS : 70 SET Q (a) Which of the following is not hardware : (i) Hard disk (ii) Printer (iii) Keyboard (iv) CPU (v) Assembler (vi)

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

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

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

CBSE International Class XII Informatics Practices Annual Examination Sample Question Paper

CBSE International Class XII Informatics Practices Annual Examination Sample Question Paper CBSE International Class XII Informatics Practices Annual Examination 2013-14 Sample Question Paper Max Time: 3 hours Max Marks: 70 1. (a) Name the transmission medium useful for sparsely populated areas.

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

Downloaded from

Downloaded from SET-4 Series GBM 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 9 printed pages. Code number given on the right

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

Downloaded from

Downloaded from SURE SHOT QUESTIONS Long Questions:- Subject:- Informatics Practices Class- XII 1. Deb Bastralaya has developed a GUI application for their company as shown below The company accepts payments in 3 modes-

More information

Optical Fiber/Coaxial Cable/ Bluetooth/Twisted Pair Cable. Give reason for your answer.

Optical Fiber/Coaxial Cable/ Bluetooth/Twisted Pair Cable. Give reason for your answer. CBSE AISSCE 07 Marking General Instructions: Marking scheme is the final document for all references with regard to evaluation and cannot be altered under any circumstances. The answers given in the marking

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

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

HE AIR FORCE SCHOOL: SUBROTO PARK: DELHI CANTT WT-II SUB: INFORMATICS PRACTICES ANSWER KEY. 1. (a) What will be the output of the code 2

HE AIR FORCE SCHOOL: SUBROTO PARK: DELHI CANTT WT-II SUB: INFORMATICS PRACTICES ANSWER KEY. 1. (a) What will be the output of the code 2 HE AIR FORCE SCHOOL: SUBROTO PARK: DELHI CANTT. 110010 WT-II CLASS : XI SET I SUB: INFORMATICS PRACTICES ANSWER KEY MAX MARK: 30 TIME ALLOWED : 1Hr 10 Mins 1. (a) What will be the output of the code 2

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

The Air Force School Mock Pre-Board Marking Scheme (INFORMATICS PRACTICES)

The Air Force School Mock Pre-Board Marking Scheme (INFORMATICS PRACTICES) The Air Force School Mock Pre-Board Marking Scheme 2016-17 (INFORMATICS PRACTICES) 1. (i) Write examples of one proprietary and one Open Source Software. 1 Proprietary software :MS Office, Oracle, Windows,

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

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

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

Application based QUESTIONS for JAVA

Application based QUESTIONS for JAVA Application based QUESTIONS for JAVA Q1. Write Java Code for the following a) On the Action event of the close button the application gets closed. 1 b) On the Action event of the clear button all the text

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

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

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

Sample Paper 2012 Class XII Subject INFORMATICS PRACTICES

Sample Paper 2012 Class XII Subject INFORMATICS PRACTICES Sample Paper 0 Class XII Subject INFORMATICS PRACTICES Time : 3 hours SET-I Max Marks:70 Q (a) Which of the following provides the maximum bandwidth: (i)optical fibre (ii) Thin Ethernet (iii) Arcnet (b)

More information

13. What is the meaning of Open Source in the term Open Source Database Management. 14. Difference between Proprietary and Open Source Software.

13. What is the meaning of Open Source in the term Open Source Database Management. 14. Difference between Proprietary and Open Source Software. Dehradun Public School I-Term Assignment (2016-17) Subject-Informatics Practices (065) Class -XII Chapter 1. Computer Networking 1. How is firewall useful in ensuring network security? [CBSE 2016] 2. State

More information

HALF YEARLY EXAMINATION, INFORMATICS PRACTICES Time - 3 hrs. Class - XII M.M. 70

HALF YEARLY EXAMINATION, INFORMATICS PRACTICES Time - 3 hrs. Class - XII M.M. 70 HALF YEARLY EXAMINATION, 2017-18 INFORMATICS PRACTICES Time - 3 hrs. Class - XII M.M. 70 Name of the student Section Date-23.09.2017 (Saturday) Instructions: There are total 7 questions in this question

More information

Half Yearly Examination SESSION: CLASS: Scholars 2 Subject :- Informatics Practices (ANSWER KEY) SECTION-A

Half Yearly Examination SESSION: CLASS: Scholars 2 Subject :- Informatics Practices (ANSWER KEY) SECTION-A Code : 065 Subodh Public School Half Yearly Examination SESSION: 2018-19 CLASS: Scholars 2 Subject :- Informatics Practices (ANSWER KEY) SECTION-A Q 1. Answer the following questions:- (20 Marks) i. It

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

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

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

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

Sample Paper 2015 Class XII- Comm Subject INFORMATICS PRACTICES. Q1 a) Rewrite the code using While Loop? 2

Sample Paper 2015 Class XII- Comm Subject INFORMATICS PRACTICES. Q1 a) Rewrite the code using While Loop? 2 Sample Paper 2015 Class XII- Comm Subject INFORMATICS PRACTICES Time Allowed: 3 hours Maximum Marks: 70 Note: (i) (ii) Answer the questions after carefully reading the text. Give Design wherever required.

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

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

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

IMPORTANT JAVA APPLICATION

IMPORTANT JAVA APPLICATION IMPORTANT JAVA APPLICATION Q1. Subodh works in Raymond International School. He has developed the following interface in Netbeans to calculate the total fee : Controls Name Purpose jtextfield txtname Student

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

[Time allowed: 3hours] [Maximum Marks: 70] Instructions (i) All questions are compulsory

[Time allowed: 3hours] [Maximum Marks: 70] Instructions (i) All questions are compulsory XII INFORMATICS PRACTICES CBSE Board 0 [Time allowed: 3hours] [Maximum Marks: 70] Instructions (i) All questions are compulsory (ii) Programming Language: Java (a) Raj kamal International school is planning

More information

Informatics Practices - Assignments. A Practical Workbook

Informatics Practices - Assignments. A Practical Workbook Informatics Practices - Assignments (based on JAVA & SQL) A Practical Workbook Class XII 1 Assignments based on JAVA 1. Create a java Desktop application to find the largest number among the three floating

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

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

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

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

Class XII (Theory) Class XII

Class XII (Theory) Class XII Class XII Class XII (Theory) 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 MANAGEMENT SYSTEM 42 36

More information

Downloaded from

Downloaded from Sample Question Paper Subject:Informatics Practices Class: XII Time: 3 Hrs. M.M. 70 (a) After realizing the issues with proprietary software, Ms. Sunita has decided to use only Open Source Software. Suggest

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

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

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

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

COURSE DESIGN Class XII ( ) (THEORY)

COURSE DESIGN Class XII ( ) (THEORY) Unit Topic COURSE DESIGN Class XII (2017-18) (THEORY) Theory Period Practical Total periods 1 Networking and Open Standards 20 4 24 2 Programming 46 44 90 3 Relational Database Management System 50 40

More information