Python If

Python If

University

7 Qs

quiz-placeholder

Similar activities

Recursion

Recursion

University

8 Qs

QUIZ CIT4214 2410

QUIZ CIT4214 2410

University

10 Qs

Python Conditional Structure

Python Conditional Structure

University

10 Qs

Bachelor's Reloaded

Bachelor's Reloaded

University

11 Qs

TC #1

TC #1

9th Grade - University

10 Qs

C Basics

C Basics

University

12 Qs

Lógica de programación 2

Lógica de programación 2

University

10 Qs

Scratch!

Scratch!

4th Grade - Professional Development

8 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.

elif year % 100 == 0:

leap = False

elif year % 4 == 0:

leap = True

if year % 400 == 0:

leap = True

else:

leap = False