Mastering Python Loops, Functions, and Lists

Flashcard
•
Information Technology (IT)
•
University
•
Hard
Wayground Content
FREE Resource
Student preview

8 questions
Show all answers
1.
FLASHCARD QUESTION
Front
Which of the following is the correct syntax for a for loop that iterates over a list named `numbers` in Python? Options: `for numbers in i:`, `for i in numbers:`, `for i to numbers:`, `foreach i in numbers:`
Back
`for i in numbers:`
2.
FLASHCARD QUESTION
Front
What is the correct way to define a function in Python that takes no arguments and prints "Hello"? Options: `function hello(): print("Hello")`, `def hello(): print("Hello")`, `def hello: print("Hello")`, `function hello: print("Hello")`
Back
`def hello(): print("Hello")`
3.
FLASHCARD QUESTION
Front
Which of the following is a valid way to declare a single-dimensional array (list) of integers in Python? Options: `arr = [1, 2, 3, 4]`, `arr = (1, 2, 3, 4)`, `arr = {1, 2, 3, 4}`, `arr = <1, 2, 3, 4>`
Back
`arr = [1, 2, 3, 4]`
4.
FLASHCARD QUESTION
Front
Which of the following statements correctly creates a 2D array (list of lists) in Python? Options: `matrix = [[1, 2], [3, 4]]`, `matrix = ((1, 2), (3, 4))`, `matrix = {1, 2, 3, 4}`, `matrix = [1, 2, 3, 4]`
Back
`matrix = [[1, 2], [3, 4]]`
5.
FLASHCARD QUESTION
Front
What is the output of the following code?
```python
def add(a, b):
return a + b
print(add(2, 3))
```
Back
`5`
6.
FLASHCARD QUESTION
Front
Which of the following loop constructs will correctly print numbers from 10 down to 1? Options: for i in range(10,0,-1): print(i), for in range(1,10): print(i), for in range(10): print(i), for i in range(10,1-1): print(i)
Back
for i in range(10,0,-1):
print(i)
7.
FLASHCARD QUESTION
Front
Given the list `arr = [10, 20, 30, 40]`, which statement will change the second element to 25? Options: `arr[1] = 25`, `arr[2] = 25`, `arr[0] = 25`, `arr[3] = 25`
Back
`arr[1] = 25`
8.
FLASHCARD QUESTION
Front
Given a 2D array `matrix = [[1, 2], [3, 4]]`, how would you access the element `4`?
Back
`matrix[1][1]`
Similar Resources on Wayground
8 questions
How to Email your Teacher

Flashcard
•
Professional Development
8 questions
Sanrio

Flashcard
•
KG
5 questions
04 Coding Challenge: Entry Ticket

Flashcard
•
KG - University
5 questions
SHS 320 Week 14 Practice Questions

Flashcard
•
University
7 questions
Sanrio Characters Flashcard

Flashcard
•
KG - Professional Dev...
10 questions
LES SALUTAIONS FRANÇAISES

Flashcard
•
University
8 questions
How to Email your Teacher

Flashcard
•
Professional Development
8 questions
How to Email your Teacher

Flashcard
•
Professional Development
Popular Resources on Wayground
10 questions
Lab Safety Procedures and Guidelines

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

Quiz
•
3rd Grade
10 questions
Appointment Passes Review

Quiz
•
6th - 8th Grade
25 questions
Multiplication Facts

Quiz
•
5th Grade
11 questions
All about me

Quiz
•
Professional Development
22 questions
Adding Integers

Quiz
•
6th Grade
15 questions
Subtracting Integers

Quiz
•
7th Grade
20 questions
Grammar Review

Quiz
•
6th - 9th Grade
Discover more resources for Information Technology (IT)
15 questions
Disney Trivia

Quiz
•
University
21 questions
Spanish-Speaking Countries

Quiz
•
6th Grade - University
7 questions
What Is Narrative Writing?

Interactive video
•
4th Grade - University
20 questions
Disney Trivia

Quiz
•
University
7 questions
Force and Motion

Interactive video
•
4th Grade - University
5 questions
Examining Theme

Interactive video
•
4th Grade - University
23 questions
Lab 4: Quizziz Questions

Quiz
•
University
12 questions
Los numeros en español.

Lesson
•
6th Grade - University