NEW
Font size
WorksheetsPowerPoint and Python Quiz
Total questions: 30
Worksheet time: 15mins
Which of the following is a correct way to start PowerPoint on a Windows computer?
Press Windows Key + R, type powerpnt, and press Enter
Double-click any Word document
Press Ctrl + P in the browser
Open Task Manager
Which section in PowerPoint displays small thumbnail images of all the slides in your presentation?
Ribbon Tab
Outline/Slides Tab
Slide Pane
Notes Pane
What is a transition in PowerPoint?
An effect applied to text or images within a slide
A visual effect that occurs when moving from one slide to another
A type of chart in PowerPoint
A sound effect added to a slide
According to the 10/20/30 Rule, what is the suggested font size for slides?
10 points
20 points
30 points or larger
Any font size is fine
Why is consistent formatting important in a presentation?
It allows the use of multiple fonts and colours freely
It creates a cohesive and professional look
It increases the number of slides needed
It makes animations more complex
What feature of Google Slides allows multiple people to edit a presentation at the same time?
Offline Mode
Real-time Collaboration
Presenter View
Cross-Platform Compatibility
Which search technique helps you find an exact phrase on the internet?
Using Boolean operators
Using Quotation Marks
Using Wildcards (*)
Exclude Terms (-)
Which Boolean operator excludes words from search results?
AND
OR
NOT
*
The website www.example.co.uk indicates that the site is associated with which country?
United States
United Kingdom
Canada
Ukraine
Which of the following is a benefit of social media?
Cyberbullying
Increased Connectivity
Privacy Concerns
Addiction
Which negative aspect of social media involves the rapid spread of false or misleading information?
Online Predators
Addiction
Misinformation and Disinformation
Collaboration
What does two-factor authentication do?
Allows unlimited login attempts
Adds an extra layer of security by requiring a code in addition to your password
Automatically posts content on your behalf
Removes the need for passwords
Which audio format is high-quality but has large file sizes and is commonly used in professional audio settings?
MP3
WAV
MIDI
OGG
Which of the following devices can be used for recording audio?
Phones
Voice Recorders
Computers with microphones
All of the above
Which audio effect adds an echo-like quality to make sound more immersive?
Fade In
Equalization (EQ)
Reverb
Compression
In Python, everything is considered a:
Function
Variable
Object
Loop
Which of the following is an example of an object property?
snake.length = 5
whale.blow(6)
print("Hello")
for i in range(5)
Which of the following is an example of an object method?
snake.color = "yellow"
whale.blow(6)
banana.size = "small"
print("Hello")
Which sequence correctly represents the steps to eat a banana?
Eat the banana → Walk to the tree → Pick the banana
Pick the banana → Walk to the tree → Eat the banana
Walk to the banana tree → Pick the banana → Eat the banana
Eat the banana → Pick the banana → Walk to the banana tree
In Python, what is the index of the first item in a list?
1
0
-1
None
Which of the following is a valid list in Python?
num = 10, 20, 30
num = [10, 20, 30]
num = (10, 20, 30)
num = {10, 20, 30}
What does indentation in Python signify?
Spaces for decoration
Lines of code that belong to a loop, function, or condition
Comments in the code
The end of the program
In a for loop, the variable inside the loop:
Must always be called item
Represents the current item in the sequence
Cannot be used in the code block
Is always an integer
What does range(5) generate in Python?
[1, 2, 3, 4, 5]
[0, 1, 2, 3, 4]
[0, 1, 2, 3, 4, 5]
[5, 4, 3, 2, 1]
Which of the following range() calls generates numbers 3, 5, 7, 9, 11, 13?
range(3, 15)
range(3, 15, 2)
range(0, 15, 3)
range(2, 13, 3)
How do you assign the value 15 to a variable named age?
age == 15
age = 15
15 = age
age := 15
What does the step argument in range(start, stop, step) do?
Sets the starting number
Sets the ending number
Determines how much the number increases each time
Changes the variable name in the loop
In Banana Tales, which method should the dragon use if the obstacle is ice?
dragon.smash()
dragon.jump()
dragon.melt_ice()
dragon.fly()
What will happen if the condition in a while loop never becomes False?
The loop stops automatically
The program prints an error
The loop runs forever (infinite loop)
The computer shuts down
Which of the following is the correct way to define a function without parameters?
function greet():
def greet():
greet.def():
def greet[]:
