Page 140 - iprime_V2.2_class8
P. 140
Worksheet-2
(Based on chapters 5 to 8)
A. Define the following terms:
1. 'if' Statement 2. 'for' Loop 3. 'break' Statement
4. Android 5. Computer Network 6. Cloud Computing
B. Guess! Who am I?
1. I am a statement in Java that forces the next iteration of the loop to
take place and skip the current iteration. …………………..
2. I am an abnormal condition that can stop the execution of the program. …………………..
3. I am a software program primarily developed for hand-held smart
devices such as mobile and tablet. …………………..
4. I am a popular operating system developed by Apple Inc. for its
hand-held devices such as iPhone and iPad. …………………..
5. I am the capability of a transmission medium to transmit the maximum
amount of data from one computer to another over a computer
network in a given amount of time. …………………..
6. I am a collection of Web pages. …………………..
7. I am in the process of converting analog signals to digital signals. …………………..
8. I am a cloud storage facility offered by Microsoft. …………………..
C. Give two examples of each of these:
1. Types of Errors in Java - ……………………………… ………………………………
2. Educational Apps - ……………………………… ………………………………
3. Types of Networks - ……………………………… ………………………………
4. Protocol - ……………………………… ………………………………
D. Write the full form of the following:
1. FTP - ………………………………………………………………………………………….........…………………..
2. HTTP - ………………………………………………………………………………………….........…………………..
3. NIC - ………………………………………………………………………………………….........…………………..
4. iOS - ………………………………………………………………………………………….........…………………..
E. Find the error in the following Java code:
public static void main(String args[])
{
int i;
for (i = 1; i <= 5; i++) {
System.out.println("The value of i is: " i);
}
}
138 iPRIME (Ver. 2.2)–VIII

