Search Header Logo

Mastering Python Loops, Lists and Strings

Authored by Harmeet Kaur

Computers

11th Grade

Mastering Python Loops, Lists and Strings
AI

AI Actions

Add similar questions

Adjust reading levels

Convert to real-world scenario

Translate activity

More...

    Content View

    Student View

30 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What is the syntax for a for loop in Python?

foreach variable in sequence:

for each variable in sequence:

for (variable; condition; increment)

for variable in sequence:

2.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

How do you create a while loop that runs until a variable reaches 10?

while (variable = 10) { variable++; }

while (variable < 10) { variable++; }

while (variable != 10) { variable++; }

while (variable > 10) { variable--; }

3.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What method would you use to convert a string to lowercase in Python?

lowercase()

convertToLower()

.lower()

.toLowerCase()

4.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

How can you create a list of squares of numbers from 1 to 10 using list comprehension?

[x^2 for x in range(1, 10)]

[x**2 for x in range(1, 11)]

[x*2 for x in range(1, 11)]

[x**3 for x in range(1, 11)]

5.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

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

0 1 2 3 4

3.5

-1

5

6.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Explain how nested loops work with an example.

For example, in a 2D array, an outer loop can iterate through rows, while an inner loop iterates through columns: for (int i = 0; i < rows; i++) { for (int j = 0; j < columns; j++) { process(array[i][j]); } }

An outer loop cannot access the inner loop's variables.

Nested loops can only be used with single-dimensional arrays.

Nested loops are not efficient for processing data.

7.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What string method would you use to find the length of a string?

length()

count()

len()

size()

Access all questions and much more by creating a free account

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

Already have an account?