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

Term3 - Worksheet - L8 - More About Python

The document is a worksheet for Grade 8 ICT focusing on Chapter 8 about Python programming. It includes fill-in-the-blank questions, true or false statements, and short answer questions regarding loops and jump statements in Python. Key concepts covered include FOR loops, WHILE loops, and the use of break and continue statements.

Uploaded by

mimi.ontopppp
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)
4 views2 pages

Term3 - Worksheet - L8 - More About Python

The document is a worksheet for Grade 8 ICT focusing on Chapter 8 about Python programming. It includes fill-in-the-blank questions, true or false statements, and short answer questions regarding loops and jump statements in Python. Key concepts covered include FOR loops, WHILE loops, and the use of break and continue statements.

Uploaded by

mimi.ontopppp
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

IGCSE - SENIOR SCHOOL 2023-24

Term - 3 Worksheet
Grade - 8
Subject: ICT

Chapter – 8 More about python

1. Fill in the blanks.


1. The break statement enables a program to skip over a part of the
code.
2. The FOR loop uses a counter variable which is incremented or
decremented with each repetition.
3. The while loop that executes a block of code repeatedly as long as the
test condition is true.
4. The continue statement skips the rest of the loop statements and
executes the next iteration of the loop.
5. The else part of the while loop is executed only when the while loop
completes all its iterations.
6. Condition is checked for True or False, and the statements are executed
only if the condition is true.
7. The while loop is helpful when the number of iterations are not known
prior to the execution of the loop.

2. True or False.
1. Jump statements are used to alter the flow of control in a loop. -
True
2. The process of repetition is called a loop. - True
3. While loop uses a counter variable. - False
4. The range () function is used to create a list. - True
5. Jump statements are break and continue statements. - True

3. Answer the following.


1. What is FOR loop?
Ans: The FOR loop is used to repeat a loop a specific number of times.

2. What is While loop?


Ans: A WHILE loop executes a block of code repeatedly as long as the
condition of the loop is true.

3. What are jump statements?


Ans: The statements which are used within loops to quit out of loop
iterations are called jump statements.
Eg: break statement, continue statement.

You might also like