KENDRIYA VIDYALAYA SANGATHAN CLASS XII EXAMINATION INFORMATICS PRACTICES (065)

Size: px
Start display at page:

Download "KENDRIYA VIDYALAYA SANGATHAN CLASS XII EXAMINATION INFORMATICS PRACTICES (065)"

Transcription

1 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 (iii) Answer the questions after carefully reading the text. 1. (a) Which protocol is used to translate domain names to associated IP address? 1 (b) Pranay has a Hub in his office to connect all the computers but speed is slow due to 1 collision suggest any other device for this purpose so the speed can be increased. (c) Write the name used to refer the difference between the highest and lowest 1 frequencies of a transmission channel. (d) Write the name of the computer which takes the services from other computer. 1 (e) Why do we use repeater in a network? 2 (f) How is Coaxial cable different from Optical Fiber? 2 (g) Compare freeware and shareware software (a) Shyam has taken a list control on his form to display the list of all items available in 1 his shop. But he wants to allow the user to select multiple items from his list control. Which property of JList should he use to do the same? (b) Which method of JFrame is used to close the frame without closing the application. 1 (c) Which HTML tag is used to break the current line in HTML? 1 (d) Is the following XML code valid? Justify your answer. 1 <student-list> <student> <rollno> 123 </rollno> <name> Ambika </name> <student-list>

2 (e) What will be the values of m and n after the following java code is executed: 2 int m = 10, n = 20 ; if ( m!= n ) m = n + 1 ; else m += 2 ; m++ ; n++ ; (f) Write any two differences between <HR> tag and <H1> tag in HTML? 2 (g) Write java code that gets marks in two subjects from textfields m1tf and m2tf 2 and displays the higher marks in a textfield named hightf. 3. (a) Ramesh has created a table SUPPLIER in a database. One of the columns in the 1 table is City. Which keyword is used to display only unique City names from table? (b) Sunil decides to delete Age column from a MySQL Table (STUDENT) after 2 inserting some data into the table. Write the command to delete that particular column in student table. (c) Reshma, a student of class XII has created a table PARTICIPANTS(PNO, NAME, 2 CITY, CLAS ). She wants to find out the names of participants who are not from Mumbai, Delhi and Ahmedabad. She tried the following: SELECT NAME FROM PARTICIPANTS WHERE CITY HAS NOT Mumbai, Delhi, Ahmedabad; Find out the errors and rewrite the above query after correction. (d) Ram is not able to repeat a name in the NAME field of the STUDENT table. What 1 is the constraint he has used to achieve this? (e) What is the Cardinality and Degree in MySQL. 1 (f) How is a DELETE command different from DROP command? 1

3 (g) Find out the output based on the STUDENT table given below: 2 STREAM AVGMARK GRADE MEDICAL 78.5 B COMMERCE 89.2 A HUMANITIES 64.4 B NONMEDICAL 92.0 A COMMERECE 67.5 C (I) (II) SELECT ROUND(AVGMARK) FROM student WHERE GRADE= B ; SELECT RIGHT(STREAM,2) FROM student; 4. (a) What is a package in java? Which package is imported for jdbc coding in java? 1 (b) Write any one difference between an abstract class and a simple class. 1 (c) What will be displayed in jtextfield1 after executing the following statement: 1 String str = "" ; for( int i = 1 ; i <= 5 ; i++ ) str = str + i ; jtextfield1.settext( str ) ; (d) What will be displayed in jtextfield1 and jtextfield2 after the following code is 2 executed: int a = 12, b = 20 ; jtextfield1.settext( a + b + " " ) ; jtextfield1.settext( " " + a + b ) ; (e) Rewrite the following code using if-else: 2 boolean flag = Boolean.parseBoolean( boltf.gettext( ) ) ; switch ( flag ) { case true : System.out.println( "true" ) ; break ; case false: System.out.println( "false" ) ; }

4 (f) Following code has some error(s). Rewrite the correct code underlining all the 2 corrections made: String str1 = Pranay ; int b = 9 ; for( b = 0, b < 3, b++ ) system.out.println( str1 ) ; str1 = str1 + b ; } (g) Mr. Lal is designing the GUI for managing customer details. The GUI designed in Netbeans is as follows: Answer the following: i) Mr. Lal wants that when the form is run, it should display the details of first customer in the form from the customer database. Which event he should handle to write the java code to do the above? ii) Write java code to fetch the first record from the table CUST(CID, CNAME, CADDR) in the database CUSTOMER and display the data values in the textfield cidtf, cnametf and address in the textarea caddrta iii) Write java code to exit from the application, when the exitbtn is clicked. 5. (a) Discuss the role of Foreign Key Constraints in MYSQL table. 2 (b) Write the output of the following SQL queries: 2 (i) SELECT ROUND( , 2 ) ; (ii) SELECT DAYOFMONTH( ) ; (iii) SELECT TRUNCATE( , 2 ) ; (iv) SELECT SUBSTRING( KVSANGATHAN, 3, 3 ) ;

5 (c) Write the SQL commands for the (i) to (iv) and write the output of the (v) and (vi) 6 on the basis of table TEACHER given below: No Name Age Department Dateofadm Salary Sex 1 Jugal 34 Computer 10/01/ M 2 Sharmila 31 History 24/03/ F 3 Sandeep 32 Maths 12/12/ M 4 Sangeeta 35 History 01/07/ F 5 Rakesh 42 Maths 05/09/ M 6 Shyam 50 History 37/06/ M 7 Shivam 44 Computer 25/02/ M 8 Shalakha 33 Maths 31/07/ F (i) (ii) (iii) (iv) (v) (vi) To show all information about the teacher of History department. To display the list of all male teachers who are in Maths department. To display names, Age and Sex of all teachers with their date of admission in descending order. To insert a new row in the TEACHER table with the following data: 9, Raja, 26, Computer, {13/05/95}, 23000, M Select COUNT(DISTINCT department) from TEACHER; Select MIN(Age) from TEACHER where SEX= F ; 6. (a) Create table Customer as per following Table Instance Chart. 2 Column Name Cust_ID Cust_Name Cust_Add Pincode Cust_Phone DataType Integer Varchar Varchar Integer VARCHAR Length Constraint Primary Not Null

6 (b) In a database there are two tables Student and Stream as below : 2 Table: Student Sid Sname age StrId 1 Roondy Joseph Trinchu Prithlon Ahol 10 2 StrId Table: Stream Name 1 Eng 2 Com 3 Sci 4 Hum (i) What is the cardinality and degree of both tables? (ii) Among both the tables which table has the foreign key and write the foreign key name. (c) Consider the following tables Product and Client. Write MySQL commands for the 6 statement (i) to (iv) and give outputs for SQL queries (v) to (viii). Table : Book Book_Id Book_Name Author_Name Publisher Price Type Quantity C0001 Fast Cook Lata Kapoor EPB 355 Cookery 5 F0001 The Tears William Hopkins First Pub 650 Fiction 20 T0001 My First C++ Brain & Brooke EPB 350 Text 10 C++ Brain T0002 works A.W. Rossaine TDH 350 Text 15 F0002 Thunderbolts Anna Roberts First Pub 750 Fiction 50 Table : Issued Book_Id Quantity_Issued T C F0001 2

7 (i) To show Book id, Book name, Author name and price of books of First Pub Publisher (ii) To display the names and price of books in ascending order of their prices. (iii) To increase the price of all books of EPB publishers by 50. (iv) To display the Book_Id, Book_Name and quantity issued for all books which have been issued. (v) Give the output of the following (a) Select Count(*) from Book; (b) Select Max(Price) from Book where Quantity >=15 ; (c) Select Book_Name, Author_Name from Book where Publisher= First Pub ; (d) Select count(distinct Publisher) from Book where Price>=400; 7. (a) What is an interface? 1 (b) Define a front-end of an information system. 2 (c) Vineeth is developing one application for Sales Department. He wants to create 2 some controls on a form for the following functions. Choose appropriate controls from Text field, Text Area, Label, radio button, check box, list box, combo box, button, Option pane, dialog box, menu items. S. Control used to No. 1. Select Customer name form list 2. Select type of sales (cash / credit) 3. Enter quantity and price 4. Calculation of total amount Control

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

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

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

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

INFORMATION TECHONOLOGY (402) UNIT 7 DATABASE DEVELOPMENT PRACTICAL QUESTIONS

INFORMATION TECHONOLOGY (402) UNIT 7 DATABASE DEVELOPMENT PRACTICAL QUESTIONS INFORMATION TECHONOLOGY (402) UNIT 7 DATABASE DEVELOPMENT PRACTICAL QUESTIONS Q1. Write the SQL commands on the basis of the given table: Table: HOSPITAL NO NAME AGE DEPARTMENT DATEOFADMIN CHARGES GENDER

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

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

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

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

KENDRIYA VIDYALAYA SANGATHAN, CHENNAI REGION COMPUTER SCIENCE (083)

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

More information

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

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

KENDRIYA VIDYALAYA SANGATHAN ERNAKULAM REGION FIRST COMMON PRE BOARD EXAMINATION CLASS:XII - (COMPUTER SCIENCE )

KENDRIYA VIDYALAYA SANGATHAN ERNAKULAM REGION FIRST COMMON PRE BOARD EXAMINATION CLASS:XII - (COMPUTER SCIENCE ) KENDRIYA VIDYALAYA SANGATHAN ERNAKULAM REGION FIRST COMMON PRE BOARD EXAMINATION 2014-15 CLASS:XII - (COMPUTER SCIENCE ) MaxMarks:70 Time Allowed :3 Hours Instructions: (i) All questions are compulsory.

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

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

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

More information

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

(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

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

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

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

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

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

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

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

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

Downloaded from Set :B SECTION A

Downloaded from   Set :B SECTION A Sample Paper 2014 Class XII Subject Informatics Practices Set :B Time : 3 Hours M.M. 70 M SECTION A Q1. (a)write the two advantage and two disadvantages of the following topologies in network (i) Bus Topologies

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

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

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

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

THE INDIAN COMMUNITY SCHOOL, KUWAIT

THE INDIAN COMMUNITY SCHOOL, KUWAIT THE INDIAN COMMUNITY SCHOOL, KUWAIT SERIES : II MID TERM /FN/ 18-19 CODE : M 065 TIME ALLOWED : 2 HOURS NAME OF STUDENT : MAX. MARKS : 50 ROLL NO. :.. CLASS/SEC :.. NO. OF PAGES : 3 INFORMATICS PRACTICES

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

CHAPTER 10 SQL 6 MARKS QUESTIONS

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

More information

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

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

CLASS XII SAMPLE PAPER-065 INFORMATICS PRACTICES

CLASS XII SAMPLE PAPER-065 INFORMATICS PRACTICES General Instructions : (i)all the questions are compulsory. (ii)programming language : Java. CLASS XII SAMPLE PAPER-065 INFORMATICS PRACTICES Q-1 (a) A School with 20 stand alone computers is considering

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

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

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

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

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

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

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

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

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

More information

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

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

More information

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

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

QUESTION BANK CLASS- XI ( INFORMATICS PRACTICES)

QUESTION BANK CLASS- XI ( INFORMATICS PRACTICES) QUESTION BANK-2017-18 CLASS- XI ( INFORMATICS PRACTICES) Q1. (a) What will be the value of j = -- k + 2* k+ (l = k, l++) if k is 20 initially. (b) What do you mean by token? (c) What is byte code? (d)

More information

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

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

More information

SECOND TERMINAL EXAMINATION, 2017 INFORMATICS PRACTICES

SECOND TERMINAL EXAMINATION, 2017 INFORMATICS PRACTICES SECOND TERINAL EXAINATION, 2017 INFORATICS PRACTICES Time : 3 hrs. Class XI.. : 70 Date - 25.02.2017 (Saturday) Name of the student Section Important instructions: All questions are compulsory. Answer

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

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

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

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

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

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

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

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

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

Class XII Informatics Practices Sample Question Paper Time allowed: 3 Hours Max. Marks: 70

Class XII Informatics Practices Sample Question Paper Time allowed: 3 Hours Max. Marks: 70 Class XII Informatics Practices Sample Question Paper 08-9 Time allowed: 3 Hours Max. Marks: 70 General Instructions: All questions are compulsory, however question number, and 6 have internal choices.

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

Table : Purchase. Field DataType Size Constraints CustID CHAR 5 Primary key CustName Varchar 30 ItemName Varchar 30 PurchaseDate Date

Table : Purchase. Field DataType Size Constraints CustID CHAR 5 Primary key CustName Varchar 30 ItemName Varchar 30 PurchaseDate Date Q1. Write SQL query for the following : (i) To create above table as per specification given (ii) To insert 02 records as per your choice (iii) Display the Item name, qty & s of all items purchased by

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

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

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

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

Index for C++ Programming

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

More information

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