
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"
Create a free account and access millions of resources
Similar Resources on Wayground
10 questions
Day2_Quiz_NBKR

Quiz
•
Professional Development
14 questions
Java Collections

Quiz
•
Professional Development
6 questions
turtle python

Quiz
•
Professional Development
10 questions
Quiz on Angular JS

Quiz
•
Professional Development
15 questions
Python - Branching and Looping - 1

Quiz
•
6th Grade - Professio...
10 questions
Airport Codes

Quiz
•
Professional Development
15 questions
Quiz 2 Internship on Fundamentals of Python

Quiz
•
Professional Development
9 questions
Python Looping

Quiz
•
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
9/11 Experience and Reflections

Interactive video
•
10th - 12th 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
9 questions
Tips & Tricks

Lesson
•
6th - 8th Grade