Sample Paper of Information Practice 2014 for class 11, CBSE. Paper No.2
Sample Paper – 2014
Class – XI
Subject – INFORMATION PRACTICES
Time Allowed: 3 hours Maximum Marks: 70
Note:
-
This question paper is divided into 3 sections.
-
Section A consists of 30 marks.
-
Section B and Section C are of 20 marks each.
-
Answer the questions after carefully reading the text.
-
Give example wherever required.
SECTION – A
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1. | Answer the following questions: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
(a) | What are the characteristics of Java? Explain any two. | 2 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
(b) | Explain the following:
i) JVM ii) MICR |
2 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
(c) | Briefly explain the type of Computers and its purpose. | 2 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
(d) | Explain the two categories of printers? Write working process of dot-matrix printer. | 2 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
(e) | What is the function of Memory? What are its measuring units? | 2 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
2. | Answer the following questions: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
(a) | What is variable? Write down the rules for naming any variable in Java. | 2 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
(b) | Distinguish between a unary operator and a ternary operator. Give example of each. | 2 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
(c) | Write short note:-
i. Digital Certificate ii. Computer Viruses iii. Firewall & Cookies |
2 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
(d) | Differentiate between Call by Value and Call by Reference. | 2 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
(e) | Discuss any two properties of Frame component. | 2
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
3. | Answer the following questions: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
(a) | What is primary key and foreign key? | 2 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
(b) | What are advantages of MySQL?(any four points) | 2 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
(c) | What is the difference between DDL and DML? | 2 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
(d) | Define the following term
(i) Degree (ii) Tuple |
2 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
(e) | Differentiate between char and varchar data types in MySQL? | 2
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
SECTION – B
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
4. | (a) | Read the following case study and answer the questions that follow.
Develop an application that performs the operations like addition and subtraction of two values. The sample screen shot is being shown below:
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
1½
1½
1
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
(b) | Read the following case study and answer the questions that follow. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Develop an application to prepare students grade on the basis of obtained marks of five entered. The criteria have given below for grade evaluation. A sample screen shot is being shown below.
Criteria
|
6
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
5 | Answer the following questions: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
(a) | Find the error from the following code segment and rewrite the corrected code underlining the correction made.
int x,y; x=-20 y=2.9; z=x+y; system.out.println(“”+z); |
2 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
(b) | Find the output of the following code segment:
int i,j; j=0; for(i=1;i<=5;i++) { System.out.println(j+” “); j+=2; } |
2 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
(c) | Convert the following code segment into switch case construct
int Choice; Choice=Integer.parseInt(ChoiceTextField.getText()); If(Choice = = 1) { System.out.println(“You Have Opted Arts”); } else { If(Choice = = 2) { System.out.println(“You Have Opted Commerce”); } else { if(Choice = = 3) { System.out.println(“You Have Opted Science”); } else { System.out.println(“Invalid Entry”); } } } |
2 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
(d) | Change the following code using do while loop without affecting the output.
int i; for(i=10;i>=1;i- -) { System.out.println(i); } |
2 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
(e) | If the value of X is 42 , find the output in Y for the following statement
|
1 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
(f) | What output will the following code fragment produce
int val, res, n=1000; res=n+val>1750?400:200; System.out.println(res);
|
1 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
SECTION – C
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
6 | Consider the following tables EMPLOYEE and write the SQL query for the following requirements.
|
10 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1. Command for create the above table. 2. Insert any dummy record. 3. Display the Names begin with alphabet “H” 4. Display the records who are females. 5. Display the name and qualification who are “B. Tech.” 6. Add one more field for the employee table -DOJ (date of joining) 7. Do not display the records of “Jyoti”, “Harry”. 8. Display Name, Deptid and Point, NewScore. The NewScore is a product of Point and 12 9. Display the Name, deptid, Basic whose date of joining is after 23/09/2000. 10. Display the records in order according to their Names.
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
7 | (a) | Write down the output produced by following queries after execution. (1×5)
|
5 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
(b) | Write the Short notes on following | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
2
2 1 |