Python Basic Flashcard 3 ( Basic Operations and Expressions )

Python Basic Flashcard 3 ( Basic Operations and Expressions )

Assessment

Flashcard

Other

6th - 8th Grade

Hard

Created by

Quizizz Content

FREE Resource

Student preview

quiz-placeholder

8 questions

Show all answers

1.

FLASHCARD QUESTION

Front

What symbol is used in python to assign values to a variable?

Back

=

2.

FLASHCARD QUESTION

Front

What is the correct name for this symbol?
==

Back

Equal to

3.

FLASHCARD QUESTION

Front

What is the output of the following code?
x = 10
y = 10
print(x != y)

Back

False

4.

FLASHCARD QUESTION

Front

What is the result of the expression print(x == y) if x = 5 and y = 3?

Back

False

5.

FLASHCARD QUESTION

Front

What is this symbol called? (*)

Back

asterisk

6.

FLASHCARD QUESTION

Front

The result of 10%2 will be :

Back

0

7.

FLASHCARD QUESTION

Front

An expression is

Back

Any valid set of values, variables, operators, and functions that produces a value or result.

8.

FLASHCARD QUESTION

Front

Can you add 2.6 to "Cat"?

Back

No. You're probably nuts for thinking this.