AWS Python Booster Day 2

AWS Python Booster Day 2

Professional Development

10 Qs

quiz-placeholder

Similar activities

Tuples in Python

Tuples in Python

Professional Development

9 Qs

C Operators

C Operators

University - Professional Development

15 Qs

Python LIST

Python LIST

Professional Development

10 Qs

Python Test 3A

Python Test 3A

Professional Development

10 Qs

Python Test-2A

Python Test-2A

Professional Development

11 Qs

Quiz on Sample Code - JavaScript

Quiz on Sample Code - JavaScript

Professional Development

6 Qs

day8

day8

Professional Development

10 Qs

Quiz - 2

Quiz - 2

Professional Development

9 Qs

AWS Python Booster Day 2

AWS Python Booster Day 2

Assessment

Quiz

Professional Development

Professional Development

Hard

Created by

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

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?