0% found this document useful (0 votes)
165 views3 pages

Grade 8 Computer Science SECOND TERM EXAM 2025 Worksheet

This document is a Computer Science worksheet for Term 2 at Sunrise English Private School in Abu Dhabi. It includes multiple choice questions, fill-in-the-blanks, true or false statements, and both short and long answer questions related to programming concepts and Google Apps. Topics covered include loops, Google Maps, Google Drive, and YouTube features.

Uploaded by

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

Grade 8 Computer Science SECOND TERM EXAM 2025 Worksheet

This document is a Computer Science worksheet for Term 2 at Sunrise English Private School in Abu Dhabi. It includes multiple choice questions, fill-in-the-blanks, true or false statements, and both short and long answer questions related to programming concepts and Google Apps. Topics covered include loops, Google Maps, Google Drive, and YouTube features.

Uploaded by

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

SUNRISE ENGLISH PRIVATE SCHOOL, ABU DHABI

Computer Science Worksheet Term 2

I. Multiple Choice Questions:


1. Which of the following statements allow to repeat a task
for a fixed number of times?
(a) for statement (b) while
statement
(c) if ... else statement (d) continue
statement

2. Which of the following is not found in Google Apps?


(a) Slides (b) Facebook (c) YouTube (d) None of
these

3. Which of the following statements terminates the


execution of the loop?
(a) if (b) for (c) break (d) continue

4. Which of the following is not possible on YouTube?


(a) Video uploading
(b) Watching video
(c) Sending an email
(d) Saving a video

5. What do while loop do?


(a) Repeat a chunk of code a given number of times
(b) Repeat a chunk of code until a condition is true
(c) Repeat a chunk of code until a condition is false
(d) Repeat a chunk of code indefinitely

6. Which Google App is best suited to make presentations?


(a) Gmail (b) YouTube (c) Slides (d) Sheets

7. What is the use of set permissions option in the Google


Sheets?
(a) Protect Sheets (b) Delete Sheets (c) Withdraw
Protection
(d ) All of these
II. Fill In the blanks:
1. __________________ is a process of encoding a message or file
so that it can only be accessed by authorized people.
2. The ______________ loop never ends.
3. Changes made to the Google Docs are _______________
automatically when working online.
4. Any ___________ value in the while loop indicates an always
true condition whereas zero indicates ______________
condition.
5. The three kinds of Google Maps views are ___________,
_____________ and ____________.
6. The _____________ icon generates a link of your document
for sharing and giving access.

III. State whether the following statements are True or False:

1. A sequence is a succession of values bound together by


__________
a single name
2. The continue statement breaks the loops one by one.
__________
3. To come out of the infinite loop, we can either close the
program window or press CTRL+C.
__________
4. The while statement is the looping statement.
__________

IV. Short answer questions (at least 2 points):


1. Define and write the syntax to the for loop.

2. Explain Google Maps.

3. What is the use of Jump statement?

4. Define Google Drive.

5. What is looping?

V. Long answer questions (at least 3 points):

1. What is YouTube? Write your views on YouTube.


2. Define the use of while statement with the help of
example and flowchart.

3. Mention few features of YouTube.

4. Write the output of the following programs.

a) i=0 b) i=2
c) x=1
while i<5: while True:
sum = 0
print(i) if i % 3 == 0:
while(x<=10):
i+=1 break
sum=sum+x
if i == 3: print(i)
x=x+1
break i += 2
print(sum)
else:
print(0)

You might also like