You are on page 1of 3

MAA JINWANI PUBLIC SCHOOL

Periodic Assessment-I (2019)


CLASS XII
SUBJECT: INFORMATICS PRACTICES
Time: 03:00 Hrs. MM: 70
Instructions:
a. All questions are compulsory
b. This question paper contains 7 questions.
c. Answer the questions after carefully reading the question paper.

Section-A

Q.1 (a) Nikhil is transferring songs from his mobile to his friend’s mobile via Bluetooth 1
connection. Name the network used by Nikhil.

(b) Most common communication protocol on internet that ensure end-to-end 1


communication, is?

(c) What is Unicode? 1

(d) What do you understand by Visual Programming? 2

(e) What is the role of Modem in electronic communications? 2

Q.2 (a) Mention two advantages of open standards. 1

(b) Expand the term HTTP. 1

(c) What is a container component? Name two top level containers. 2

(d) Write the name of the most suitable wireless communication channels for each of the 3
following situations:
(i) Communication between two offices in different countries.
(ii) To transfer the data from one mobile phone to another.
(e) What will be the result of a=7/3 if a is 3
(i) float (b) int

Q.3 (a) What is entry control and exit control loop? 1

(b) What is an identifier? What are the identifier forming rules of java? 2

(c) What is the difference between implicit and explicit type conversion? 2

(d) What will be displayed in jTextArea1 after executing the following statement? 2
jTextArea1.setText(“INDIA\nINCREDIBLE\tINDIA”);
(e) Write a Java GUI program to find LCM of given number. 4
Section-B

Q.4 (a) What is the significance of a break statement in a switch statement? 2

(b) Rewrite the following fragment using switch case: 3

if(ch==’E’)

e++;

if(ch==’W’)

w++;

if(ch==’N’)

n++;

else

unknown;

Section-C

Q.5 (a) Through which property of radio button can we select one radio button at a time? 2

(b) Write syntax of for loop in java. 2

(c) How many times will the following loop execute: 2


int z=7,sum=0;
do
{
Sum=sum+z;
z=z+2;
System.out.println(“ ” +z);
}
while(z<=12);
(d) Write a Java program to implement switch case. 3

(e) Write a Java GUI program to reverse a string. 4

(f) Write a Java GUI program to find factorial of a given number. 3

Q.6 (a) What is the difference between ++i and i++? 2

(b) Give difference between List control and combo box control. 1

(c) Explain briefly about Twisted Pair and Coaxial cable. 6

Page 2 of 3
(d) What is TCP/IP? Explain in short. 3

Q.7 (a) What is guided media and unguided media? 1

(b) What is NIC? What is the main use of NIC? 2

(c) Give the output of the following code:- 3

int p,q;

String name= “Abhay”;

p= name.length();

q= 100-p;

jTextField1.setText(Integer.toString(p));

jTextField2.setText(Integer.toString(q));

(d) Observe the following code carefully and find which statement will never get execute 3
in the code:

int count = 1;

do

if (count<15)

jTextField1.setText(“jump”);

else

jTextField1.setText(“stop”);

count=count+4;

While(t<=15);

Page 3 of 3

You might also like