What is the result of this command?
x = 5; y = 2
print(x != y)
Python If
Quiz
•
Computers
•
University
•
Medium
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
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
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
10 questions
Python For
Quiz
•
University
12 questions
Life Skills ICT February
Quiz
•
2nd Grade - University
5 questions
[Funcional] Repaso Clase 1
Quiz
•
University
10 questions
Automata Theory
Quiz
•
University
10 questions
Java Control Flow statements
Quiz
•
University
12 questions
javaquizvivek
Quiz
•
University
10 questions
Python quick quiz
Quiz
•
University
10 questions
DE-Shaw Aptitude Quiz-SK-1
Quiz
•
University
15 questions
Multiplication Facts
Quiz
•
4th Grade
20 questions
Math Review - Grade 6
Quiz
•
6th Grade
20 questions
math review
Quiz
•
4th Grade
5 questions
capitalization in sentences
Quiz
•
5th - 8th Grade
10 questions
Juneteenth History and Significance
Interactive video
•
5th - 8th Grade
15 questions
Adding and Subtracting Fractions
Quiz
•
5th Grade
10 questions
R2H Day One Internship Expectation Review Guidelines
Quiz
•
Professional Development
12 questions
Dividing Fractions
Quiz
•
6th Grade