Grade 7 Computing Revision Final
Grade 7 Computing Revision Final
Final
Computing
Write down answers for the following questions on separate papers. You may write
the question numbers and answers only.
i. Sending an email
ii. Uploading a photo
iii. Streaming a movie
iv. Updating a password
10) What does the B in BIDMAS stand for?
A) Bricks
B) Brackets
C) Base
D) Block
11) According to BIDMAS, which operation comes first?
A) Addition
B) Subtraction
C) Division
D) Brackets
Question: Modify the program to print "Even and Positive" if the number is even and greater
than 0.
Question: Find the errors in the above program and rewrite the correct version.
3. # Pass or Fail
marks = int(input("Enter your marks: "))
if marks >= 40:
print("Pass")
else:
print("Fail")
4. #Check Divisibility
num = int(input("Enter a number: "))
if num % 5 == 0 and num % 11 == 0:
print("Divisible by 5 and 11")
else:
print("Not divisible by 5 and 11")
a. for loop
b. while loop
c. if-else condition
a. name = "Pearson"
print(len(name))
b. Length of a list
print(len(fruits))
text = ""
print(len(text))
d. Length of a sentence
print(len(sentence))
1. word = “Python”
1. word = “GREAT”
1. Print(string[0:3])
2. Print(string[6:])
3. Print(string[-6:-2])
l. #Concatanation
1. HouseNo = 100,
Street = “Jahamaha”
City = “Colombo”
100
Jayamaha
Colombo
- END -