
Py Day 5
Quiz
•
Computers
•
1st - 5th Grade
•
Hard
hichem ayari
Used 1+ times
FREE Resource
Enhance your content in a minute
9 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What is the purpose of the random.randint(a, b) function in Python?
Generate a random integer between a (inclusive) and b (exclusive).
Generate a random integer between a (inclusive) and b (inclusive).
Generate a random float between a (inclusive) and b (exclusive).
Generate a random float between a (inclusive) and b (inclusive).
2.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
To use the random module in Python, what is the correct way to import it?
import random.random
import random
from random import random
from random import random as rand
3.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
How do you create an empty list in Python?
list()
[]
new list[]
empty_list = []
4.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What is the correct way to access the element at index 2 in a list named my_list?
my_list[2]
my_list.get(2)
my_list.at(2)
get_element(my_list, 2)
5.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What is the purpose of a 'for' loop in Python?
It is used to iterate over elements in a list or other iterable objects
It is used to execute a block of code repeatedly for a specified number of times
It is used to generate random numbers and store them in a list.
It is used to declare and initialize lists in Python.
6.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What is the correct way to write a 'for' loop that prints each element in the list my_list?
for i in range(len(my_list)): print(my_list[i])
for i in my_list: print(my_list[i])
for element in my_list: print(element)
for index in range(my_list): print(my_list[index])
7.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What is the purpose of the range() function in Python?
It generates a sequence of integers from 0 up to, but not including, a specified number.
It generates a sequence of integers from 1 up to, and including, a specified number.
It generates a sequence of integers with a specified start, end, and step size.
It generates a sequence of even numbers from 2 up to, and including, a specified number.
8.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What is the correct way to create a range that includes numbers from 1 to 10?
range(1, 10)
range(1, 11)
range(11)
range(1, 10, 1)
9.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
for num in range(2, 10, 3):
print(num)
2 3 4 5 6 7 8 9
2 5 8
2 4 7 10
2 5 8 11
Similar Resources on Wayground
11 questions
Internet i mrežni preglednik, pretraživanje interneta
Quiz
•
5th Grade
8 questions
Online safety
Quiz
•
5th Grade
12 questions
Spreadsheet
Quiz
•
5th - 11th Grade
10 questions
Kids -2
Quiz
•
1st Grade
9 questions
Scratch Programming Quiz
Quiz
•
1st - 5th Grade
10 questions
Kuis Algoritma dan Pemrograman 1
Quiz
•
1st Grade
10 questions
VB Quiz
Quiz
•
5th Grade - University
11 questions
Kuis 1 Kelas 4 (Search Engine)
Quiz
•
4th Grade
Popular Resources on Wayground
10 questions
Ice Breaker Trivia: Food from Around the World
Quiz
•
3rd - 12th Grade
20 questions
Halloween Trivia
Quiz
•
6th - 8th Grade
25 questions
Multiplication Facts
Quiz
•
5th Grade
4 questions
Activity set 10/24
Lesson
•
6th - 8th Grade
22 questions
Adding Integers
Quiz
•
6th Grade
10 questions
How to Email your Teacher
Quiz
•
Professional Development
15 questions
Order of Operations
Quiz
•
5th Grade
30 questions
October: Math Fluency: Multiply and Divide
Quiz
•
7th Grade
