def palindrome(s):
return s == s[::-1]
print(palindrome("level"))
print(palindrome("world"))
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
19 questions
кэгэ информатика
Quiz
•
11th Grade
15 questions
Bài 27
Quiz
•
10th Grade - University
17 questions
Kiểm Tra Môn Tin Học 10
Quiz
•
10th Grade - University
20 questions
Процедура, функция
Quiz
•
11th Grade
15 questions
Selection Programming_If condition
Quiz
•
8th Grade - University
15 questions
WebXam Programming Quiz for Grade 11
Quiz
•
11th Grade
20 questions
Proses Komputasional dan Pseudocode
Quiz
•
10th Grade - University
15 questions
ALGORITMA DAN PEMROGRAMAN KLS 11
Quiz
•
11th Grade
15 questions
Character Analysis
Quiz
•
4th Grade
17 questions
Chapter 12 - Doing the Right Thing
Quiz
•
9th - 12th Grade
10 questions
American Flag
Quiz
•
1st - 2nd Grade
20 questions
Reading Comprehension
Quiz
•
5th Grade
30 questions
Linear Inequalities
Quiz
•
9th - 12th Grade
20 questions
Types of Credit
Quiz
•
9th - 12th Grade
18 questions
Full S.T.E.A.M. Ahead Summer Academy Pre-Test 24-25
Quiz
•
5th Grade
14 questions
Misplaced and Dangling Modifiers
Quiz
•
6th - 8th Grade
17 questions
Chapter 12 - Doing the Right Thing
Quiz
•
9th - 12th Grade
20 questions
Types of Credit
Quiz
•
9th - 12th Grade
30 questions
Linear Inequalities
Quiz
•
9th - 12th Grade
20 questions
Taxes
Quiz
•
9th - 12th Grade
17 questions
Parts of Speech
Quiz
•
7th - 12th Grade
20 questions
Chapter 3 - Making a Good Impression
Quiz
•
9th - 12th Grade
20 questions
Inequalities Graphing
Quiz
•
9th - 12th Grade
10 questions
Identifying equations
Quiz
•
KG - University