
for_students
Quiz
•
Information Technology (IT)
•
11th Grade
•
Medium
nuris nurus
Used 4+ times
FREE Resource
20 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
def palindrome(s):
return s == s[::-1]
print(palindrome("level"))
print(palindrome("world"))
True, True
True, False
False, True
False, False
2.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
def find_max(lst):
if not lst:
return None
max_value = lst[0]
for num in lst:
if num > max_value:
max_value = num
return max_value
print(find_max([3, 1, 4, 2, 5]))
print(find_max([]))
5, None
3, Error
4, 0
None, None
3.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
def countdown(n):
if n <= 0:
return []
return [n] + countdown(n - 1)
print(countdown(3))
[3, 2, 1]
[3, 2, 1, 0]
[0, 1, 2, 3]
Error
4.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
def reverse_list(lst):
return lst[::-1]
print(reverse_list([1, 2, 3, 4, 5]))
[1, 2, 3, 4, 5]
error
[5, 4, 3, 2, 1]
[5, 3, 1]
5.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
def square_numbers(lst):
return [x**2 for x in lst if x % 2 != 0]
print(square_odd_numbers([1, 2, 3, 4, 5]))
[1, 4, 9, 16, 25]
Error
[2, 4]
[1, 9, 25]
6.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
def factorial(n):
if n < 0:
return "Undefined"
if n == 0 or n == 1:
return 1
return n * factorial(n - 1)
print(factorial(5))
print(factorial(-1))
120, Error
120, Undefined
1, Undefined
0, Undefined
7.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
def square(n):
return n * n
def process_list(lst):
return [square(x) for x in lst]
print(process_list([1, 2, 3, 4]))
[1, 2, 3, 4]
[1, 4, 9, 16]
[1, 8, 9, 16]
Error
Create a free account and access millions of resources
Create resources
Host any resource
Get auto-graded reports

Continue with Google

Continue with Email

Continue with Classlink

Continue with Clever
or continue with

Microsoft
%20(1).png)
Apple

Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?
Similar Resources on Wayground
24 questions
RETURN 15-БӨЛІМ
Quiz
•
11th Grade
20 questions
Kuis Ms Word 1
Quiz
•
7th Grade - University
20 questions
Kelas 8 - Halaman 10 (UH Bab 1)
Quiz
•
8th Grade - University
19 questions
Тест по Циклам Python (Cycles2)
Quiz
•
9th Grade - University
15 questions
Quiz Pemrograman Arduino
Quiz
•
10th Grade - University
15 questions
Функции C#
Quiz
•
11th Grade
25 questions
The End
Quiz
•
9th - 12th Grade
25 questions
UJIAN TIK KELAS 4 BULANAN 1
Quiz
•
9th Grade - University
Popular Resources on Wayground
20 questions
Brand Labels
Quiz
•
5th - 12th Grade
10 questions
Ice Breaker Trivia: Food from Around the World
Quiz
•
3rd - 12th Grade
25 questions
Multiplication Facts
Quiz
•
5th Grade
20 questions
ELA Advisory Review
Quiz
•
7th Grade
15 questions
Subtracting Integers
Quiz
•
7th Grade
22 questions
Adding Integers
Quiz
•
6th Grade
10 questions
Multiplication and Division Unknowns
Quiz
•
3rd Grade
10 questions
Exploring Digital Citizenship Essentials
Interactive video
•
6th - 10th Grade
Discover more resources for Information Technology (IT)
10 questions
Ice Breaker Trivia: Food from Around the World
Quiz
•
3rd - 12th Grade
20 questions
Brand Labels
Quiz
•
5th - 12th Grade
11 questions
NFL Football logos
Quiz
•
KG - Professional Dev...
28 questions
Ser vs estar
Quiz
•
9th - 12th Grade
29 questions
CCG 2.2.3 Area
Quiz
•
9th - 12th Grade
15 questions
PRESENTE CONTINUO
Quiz
•
9th - 12th Grade
13 questions
BizInnovator Startup - Experience and Overview
Quiz
•
9th - 12th Grade
16 questions
AP Biology: Unit 1 Review (CED)
Quiz
•
9th - 12th Grade