wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

PowerPoint and Python Quiz

Total questions: 30

Worksheet time: 15mins

Name
Class
Date
1.

Which of the following is a correct way to start PowerPoint on a Windows computer?

a)

Press Windows Key + R, type powerpnt, and press Enter

b)

Double-click any Word document

c)

Press Ctrl + P in the browser

d)

Open Task Manager

2.

Which section in PowerPoint displays small thumbnail images of all the slides in your presentation?

a)

Ribbon Tab

b)

Outline/Slides Tab

c)

Slide Pane

d)

Notes Pane

3.

What is a transition in PowerPoint?

a)

An effect applied to text or images within a slide

b)

A visual effect that occurs when moving from one slide to another

c)

A type of chart in PowerPoint

d)

A sound effect added to a slide

4.

According to the 10/20/30 Rule, what is the suggested font size for slides?

a)

10 points

b)

20 points

c)

30 points or larger

d)

Any font size is fine

5.

Why is consistent formatting important in a presentation?

a)

It allows the use of multiple fonts and colours freely

b)

It creates a cohesive and professional look

c)

It increases the number of slides needed

d)

It makes animations more complex

6.

What feature of Google Slides allows multiple people to edit a presentation at the same time?

a)

Offline Mode

b)

Real-time Collaboration

c)

Presenter View

d)

Cross-Platform Compatibility

7.

Which search technique helps you find an exact phrase on the internet?

a)

Using Boolean operators

b)

Using Quotation Marks

c)

Using Wildcards (*)

d)

Exclude Terms (-)

8.

Which Boolean operator excludes words from search results?

a)

AND

b)

OR

c)

NOT

d)

*

9.

The website www.example.co.uk indicates that the site is associated with which country?

a)

United States

b)

United Kingdom

c)

Canada

d)

Ukraine

10.

Which of the following is a benefit of social media?

a)

Cyberbullying

b)

Increased Connectivity

c)

Privacy Concerns

d)

Addiction

11.

Which negative aspect of social media involves the rapid spread of false or misleading information?

a)

Online Predators

b)

Addiction

c)

Misinformation and Disinformation

d)

Collaboration

12.

What does two-factor authentication do?

a)

Allows unlimited login attempts

b)

Adds an extra layer of security by requiring a code in addition to your password

c)

Automatically posts content on your behalf

d)

Removes the need for passwords

13.

Which audio format is high-quality but has large file sizes and is commonly used in professional audio settings?

a)

MP3

b)

WAV

c)

MIDI

d)

OGG

14.

Which of the following devices can be used for recording audio?

a)

Phones

b)

Voice Recorders

c)

Computers with microphones

d)

All of the above

15.

Which audio effect adds an echo-like quality to make sound more immersive?

a)

Fade In

b)

Equalization (EQ)

c)

Reverb

d)

Compression

16.

In Python, everything is considered a:

a)

Function

b)

Variable

c)

Object

d)

Loop

17.

Which of the following is an example of an object property?

a)

snake.length = 5

b)

whale.blow(6)

c)

print("Hello")

d)

for i in range(5)

18.

Which of the following is an example of an object method?

a)

snake.color = "yellow"

b)

whale.blow(6)

c)

banana.size = "small"

d)

print("Hello")

19.

Which sequence correctly represents the steps to eat a banana?

a)

Eat the banana → Walk to the tree → Pick the banana

b)

Pick the banana → Walk to the tree → Eat the banana

c)

Walk to the banana tree → Pick the banana → Eat the banana

d)

Eat the banana → Pick the banana → Walk to the banana tree

20.

In Python, what is the index of the first item in a list?

a)

1

b)

0

c)

-1

d)

None

21.

Which of the following is a valid list in Python?

a)

num = 10, 20, 30

b)

num = [10, 20, 30]

c)

num = (10, 20, 30)

d)

num = {10, 20, 30}

22.

What does indentation in Python signify?

a)

Spaces for decoration

b)

Lines of code that belong to a loop, function, or condition

c)

Comments in the code

d)

The end of the program

23.

In a for loop, the variable inside the loop:

a)

Must always be called item

b)

Represents the current item in the sequence

c)

Cannot be used in the code block

d)

Is always an integer

24.

What does range(5) generate in Python?

a)

[1, 2, 3, 4, 5]

b)

[0, 1, 2, 3, 4]

c)

[0, 1, 2, 3, 4, 5]

d)

[5, 4, 3, 2, 1]

25.

Which of the following range() calls generates numbers 3, 5, 7, 9, 11, 13?

a)

range(3, 15)

b)

range(3, 15, 2)

c)

range(0, 15, 3)

d)

range(2, 13, 3)

26.

How do you assign the value 15 to a variable named age?

a)

age == 15

b)

age = 15

c)

15 = age

d)

age := 15

27.

What does the step argument in range(start, stop, step) do?

a)

Sets the starting number

b)

Sets the ending number

c)

Determines how much the number increases each time

d)

Changes the variable name in the loop

28.

In Banana Tales, which method should the dragon use if the obstacle is ice?

a)

dragon.smash()

b)

dragon.jump()

c)

dragon.melt_ice()

d)

dragon.fly()

29.

What will happen if the condition in a while loop never becomes False?

a)

The loop stops automatically

b)

The program prints an error

c)

The loop runs forever (infinite loop)

d)

The computer shuts down

30.

Which of the following is the correct way to define a function without parameters?

a)

function greet():

b)

def greet():

c)

greet.def():

d)

def greet[]: