year = "2001"
if year.isdigit():
print(year, "is all digits")
else:
pass
What is the output from running the above code?
AWS Python Booster Day 2
Quiz
•
Professional Development
•
Professional Development
•
Hard
CloudThat Technologies
Used 4+ times
FREE Resource
10 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
45 sec • 1 pt
year = "2001"
if year.isdigit():
print(year, "is all digits")
else:
pass
What is the output from running the above code?
"True"
"False"
No Output
"2001 is all digits"
2.
MULTIPLE CHOICE QUESTION
45 sec • 1 pt
id = 3556
if id > 2999:
print(id, "is a new student")
else:
print(id, "is an existing student")
What is the output of the above line of code?
"id, is a new student"
"3556 is a new student"
"id, is an existing student"
"3556 is an existing student"
3.
MULTIPLE CHOICE QUESTION
45 sec • 1 pt
num_1 = 3
num_2 = "8"
What is the minimum code to mathematically add num_1 to num_2?
num_1 + str(num_2)
int(num_1) + str(num_2)
int(num_1) + int(num_2)
num_1 + int(num_2)
4.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
For the code: x = 3 + 9 * 2, the value of x is 21 when applying order of operations.
True
False
May be
None of the above
5.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
x = 3
y = 4
calculation = x*y
print(calculation)
What is the best estimate for the output of the above code?
12.0
9.0
12
9
6.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Nested Conditional code always runs all sub-conditions that are indented under if statements.
True
False
May be
All of the above
7.
MULTIPLE CHOICE QUESTION
45 sec • 1 pt
if True:
if False:
print("Banana")
else:
print("Apple")
else:
if True:
print("Dates")
else:
print("Corn")
What is the output of the above code?
"Apple"
"Banana"
"Corn"
"Dates"
15 questions
python dictionary and set
Quiz
•
Professional Development
15 questions
Programming - Screening Test
Quiz
•
3rd Grade - Professio...
10 questions
Flutter_Q5
Quiz
•
Professional Development
10 questions
Budget System
Quiz
•
Professional Development
10 questions
Day-2 IOAC - ML Python Assessment_5th-Feb-2023
Quiz
•
Professional Development
15 questions
Q1 Introduction to Python
Quiz
•
Professional Development
13 questions
Python Quiz : Loop
Quiz
•
Professional Development
10 questions
Quiz for Module2
Quiz
•
Professional Development
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