Python If

Python If

University

7 Qs

quiz-placeholder

Similar activities

Unit 5 Data

Unit 5 Data

9th Grade - University

11 Qs

TC #1

TC #1

9th Grade - University

10 Qs

Python quick quiz

Python quick quiz

University

10 Qs

Automata

Automata

University

10 Qs

Automaton - Understanding 2

Automaton - Understanding 2

University

10 Qs

C - Pointers

C - Pointers

University

10 Qs

Lesson 3: Boolean Logic and Logic Gates

Lesson 3: Boolean Logic and Logic Gates

University

10 Qs

Data and Society

Data and Society

9th Grade - University

11 Qs

Python If

Python If

Assessment

Quiz

Computers

University

Medium

Created by

Tasanawan Soonklang

Used 25+ times

FREE Resource

7 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the result of this command?

x = 5; y = 2

print(x != y)

True

False

Error

Answer explanation

x != y

means " x is not equal to y"

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the result of this command

print("SIIT" > "TU")

True

False

Error

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

x * (-1) ** 2 + 3 / (2 * x)

x * (-1) ** 2 + 3 / 2 * x

(x * (-1) ** 2 + 3) / 2 * x

Answer explanation

x * (-1) ** 2 + 3 / 2 * x

check the precedence rules,

** highest level

*, /

+ lowest level

so the order of operators are

(-1) ** 2 -> [1]

x * [1] -> [2]

3/2 -> [3]

[3] * x -> [4]

[2] + [4] -> (x*(-1)**2)+((3/2)*x)

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

if x == 0:

if x > 0:

if x < 0:

if x != 0:

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

What is the result of this program if

x = 100?

Perfect!

Perfect!

Pass

Pass

Perfect!

Invalid score

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

What is the result of this program if

x = 40?

Pass

Fail

Pass

Fail

Invalid score

7.

REORDER QUESTION

1 min • 1 pt

Reorder the following to check a leap year as rules below

• Any year that is divisible by 400 is a leap year.

• Of the remaining years, any year that is divisible by 100 is not a leap year.

• Of the remaining years, any year that is divisible by 4 is a leap year.

• All the remaining years are not leap years.

if year % 400 == 0:

leap = True

elif year % 100 == 0:

leap = False

elif year % 4 == 0:

leap = True

else:

leap = False