0% found this document useful (0 votes)
54 views2 pages

VIII SA II Practice Worksheet

The document contains practice questions for class 8 computer subject. It has questions on topics like computer networks, data types, operators, loops, functions and more. Students are required to identify types of networks and topologies, differentiate concepts, write code snippets, predict outputs and solve other problems related to computer fundamentals.

Uploaded by

vidyamane23
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
54 views2 pages

VIII SA II Practice Worksheet

The document contains practice questions for class 8 computer subject. It has questions on topics like computer networks, data types, operators, loops, functions and more. Students are required to identify types of networks and topologies, differentiate concepts, write code snippets, predict outputs and solve other problems related to computer fundamentals.

Uploaded by

vidyamane23
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

PAWAR PUBLIC SCHOOL, PUNE

PRACTICE WORKSHEET
SUBJECT- COMPUTER
Std. : VIII
Question 1
a) Fill in the blanks:
i) ________ adds IP address to the incoming messages so that appropriate computer is
located for delivery of the message.
ii) In ________ topology, single transmission medium is shared by all terminals.
b) Identify the type of network:
i) Bluetooth
ii) Networking in Home
c) Name the following:
i) Three elements of communication system
ii) Three types of Computer Networks
d) State whether following statements are true or false.
i) Modulation is the process of converting analog signal to digital signal.
ii) IP address is the unique address to a computer by ISP.
e) Write the full form of :
i) DNS ii) SMTP

Question 2
a) Identify the type of literal in the following:
i) “ABC” ii) „B‟
b) What is the output of the following?
System.out.print(“My name is ABC”);
System.out.println(“I am a student of VIII std.”);
System.out.print(“My Division is A”);
c) Write the Java Expression for the following:
(A+B)2 = A2+2AB+B2
d) If x = 5 , y= 8 Predict output values of x and y .
x++;
x *= ++x + y++ + y-- + --y

Question 3
a) Give the output of the following expression:
int x = 2;
System.out.println(“ Result is”+ Math.pow(x,3));
b) Identify the type of error:
Int a = 8;
System.out.println(“ ”+a);
c) Assign School name to a variable with a suitable data type.
d) Correct the given snippet:
int a = 45.1; float b = 15.05;
double c = 92; sum = 0;
sum = (a+ b)*c/2;
System.out.println(“Answer = ”+sum);
Question 4
a) Differentiate between star topology and ring topology
b) What are the features of Java.
c) Write a program to calculate square and cube of a number 2.5
Question 5
a) Differentiate between compiler and interpreter.
b) Explain Relational operators and logical operators with example.
c) Write a program to input 3 subject marks and calculate total and average.
Question 6
a) Differentiate between Intranet and Internet.
b) What are the different types of comments? Explain with the help of example.
c) Write a program to calculate simple Interest if P=5000, R=12.5, T=3.
SI = P* R*T/100
Question 7
a) Differentiate between analog signal and digital signal.
b) What is star topology? Write an advantage and a disadvantage of it.
c) Write a program to input selling price and cost price and calculate profit or loss
accordingly.

Question 8
a) Explain Cloud computing.
b) What is mean by communication system? Explain its components.
c) Write a program to input two numbers and calculate quotient and remainder.

Question 9
a) Differentiate between = and = = operator.
b) Explain IMAP protocol.
c) Write a program in java to calculate and display the gross salary and net salary
when : basic salary = 30000
da = 30% of basic, pf = 10% of basic, gross= basic+ da, net pay = gross - pf

You might also like