Mastering Python Loops and Functions

Mastering Python Loops and Functions

10th Grade

20 Qs

quiz-placeholder

Similar activities

Objects

Objects

8th - 12th Grade

16 Qs

Python Prowess

Python Prowess

University

20 Qs

AI BootCamp: 2024 Edition- Session 1

AI BootCamp: 2024 Edition- Session 1

University

20 Qs

Python Quiz 2

Python Quiz 2

10th - 11th Grade

16 Qs

Computer Science - Python

Computer Science - Python

9th - 12th Grade

15 Qs

PROGRAMMING IN PYTHON - UNIT II - TEST 1 MCQS

PROGRAMMING IN PYTHON - UNIT II - TEST 1 MCQS

University

15 Qs

python basics quiz

python basics quiz

9th - 12th Grade

15 Qs

Gmetrix Python Session 4 Test

Gmetrix Python Session 4 Test

10th - 12th Grade

15 Qs

Mastering Python Loops and Functions

Mastering Python Loops and Functions

Assessment

Quiz

Computers

10th Grade

Easy

Created by

JAYA SUDIKSHA

Used 1+ times

FREE Resource

20 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

What is the syntax for a for loop in Python?

for variable in sequence:

for (variable; condition; increment)

for each variable in sequence:

foreach variable in sequence:

2.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

How do you iterate over a list using a for loop?

for each item in my_list:

foreach item in my_list:

for item in my_list:

for item in list my_list:

3.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

What keyword is used to define a function in Python?

def

function

define

method

4.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

What is the output of the following code: for i in range(5): print(i)?

5

-1

0 1 2 3 4

10

5.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Which of the following is a valid datatype in Python: int, float, string, all of the above?

boolean

dictionary

all of the above

list

6.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

What keyword is used to exit a loop prematurely?

continue

exit

return

break

7.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

How do you define a function that takes parameters in Python?

function_name(parameter1, parameter2) =>

function_name: parameter1, parameter2

function_name(parameter1; parameter2)

def function_name(parameter1, parameter2):

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?