
loops - modifying and looping

Quiz
•
Computers
•
University
•
Hard
thanga_palani_ thanga_palani_
FREE Resource
15 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What does for item in list: do?
Deletes items
Changes items
Loops through each item
Sorts list
Answer explanation
The statement 'for item in list:' is used to loop through each item in the list, allowing you to perform actions on each element. This makes 'Loops through each item' the correct choice.
2.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Which method gives number of items in a list?
size()
count()
length()
len()
Answer explanation
The correct method to get the number of items in a list in Python is 'len()'. The other options, 'size()', 'count()', and 'length()', are not valid for this purpose.
3.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What is the output?
nums = [1, 2, 3]
for i in range(len(nums)):
nums[i] += 5
print(nums)
[1, 2, 3]
[6, 7, 8]
[5, 5, 5]
[10, 20, 30]
Answer explanation
The loop iterates over each element in nums, adding 5 to each. After the loop, nums becomes [6, 7, 8]. Thus, the correct output is [6, 7, 8].
4.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What is the purpose of range(len(list))?
To loop through values
To get indexes
To reverse a list
To sort a list
Answer explanation
The expression range(len(list)) generates a sequence of indexes for the elements in the list. This allows you to access each element by its index, making it useful for iterating through the list while knowing the position of each item.
5.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What is the output?
data = ["a", "b", "c"]
for i in range(len(data)):
data[i] = data[i].upper()
print(data)
['a', 'b', 'c']
['A', 'B', 'C']
['A', 'b', 'C']
Error
Answer explanation
The code iterates through the list 'data' and converts each element to uppercase using the 'upper()' method. Thus, the output will be ['A', 'B', 'C'], making this the correct choice.
6.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Can you use for loop to modify a list directly?
No
Yes, with index
Only with append
Only with remove
Answer explanation
Yes, you can use a for loop with an index to modify a list directly. This allows you to access and change elements at specific positions within the list.
7.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What is the output?
lst = [3, 6, 9]
for i in range(len(lst)):
lst[i] *= 2
print(lst)
[3, 6, 9]
[6, 12, 18]
v
Error
Answer explanation
The code iterates through the list 'lst' and multiplies each element by 2. The original list [3, 6, 9] becomes [6, 12, 18] after the operation. Therefore, the correct output is [6, 12, 18].
Create a free account and access millions of resources
Similar Resources on Wayground
12 questions
Quiz3

Quiz
•
University
10 questions
Списки Python + Pygame

Quiz
•
KG - University
15 questions
Milking Minds 2 17-01-24

Quiz
•
University
15 questions
ARRAYLIST - JAVA

Quiz
•
University
20 questions
Day 6 - ONLINE TEST - PL03 PYTHON PROGRAMMING

Quiz
•
University
10 questions
Python debugging

Quiz
•
University
20 questions
1212 Midterm Review

Quiz
•
University
14 questions
Array output

Quiz
•
University
Popular Resources on Wayground
55 questions
CHS Student Handbook 25-26

Quiz
•
9th Grade
10 questions
Afterschool Activities & Sports

Quiz
•
6th - 8th Grade
15 questions
PRIDE

Quiz
•
6th - 8th Grade
15 questions
Cool Tool:Chromebook

Quiz
•
6th - 8th Grade
10 questions
Lab Safety Procedures and Guidelines

Interactive video
•
6th - 10th Grade
10 questions
Nouns, nouns, nouns

Quiz
•
3rd Grade
20 questions
Bullying

Quiz
•
7th Grade
18 questions
7SS - 30a - Budgeting

Quiz
•
6th - 8th Grade
Discover more resources for Computers
36 questions
USCB Policies and Procedures

Quiz
•
University
4 questions
Benefits of Saving

Quiz
•
5th Grade - University
20 questions
Disney Trivia

Quiz
•
University
2 questions
Pronouncing Names Correctly

Quiz
•
University
15 questions
Parts of Speech

Quiz
•
1st Grade - University
1 questions
Savings Questionnaire

Quiz
•
6th Grade - Professio...
26 questions
Parent Functions

Quiz
•
9th Grade - University
18 questions
Parent Functions

Quiz
•
9th Grade - University