Tag the questions with any skills you have. Your dashboard will track each student's mastery of each skill.
Give this quiz to my class
Q 1/40
Score 0
used within equations to perform different types of calculations
30
bitwise operatorÂ
logical operatorsÂ
arithmetic operators (mathematics operations)
assignment operator
Q 2/40
Score 0
The basic assignment operator is equal ( = ), which assigns the value of its right operand to its left operand.
30
logical operatorÂ
arithmetic operator (mathematics operator)
bitwise operatorÂ
assignment operator
40 questions
Q.
used within equations to perform different types of calculations
1
30 sec
Q.
The basic assignment operator is equal ( = ), which assigns the value of its right operand to its left operand.
2
30 sec
Q.
comparison operators are used in logical statements to determine equivalence or difference between variables or values
3
30 sec
Q.
Expressions can be used to join strings.
4
30 sec
Q.
a data storage format that can contain a specific type or range of values
5
30 sec
Q.
contain a combination of variables, values, functions and operators.
6
30 sec
Q.
A number data type that contains a decimal
7
30 sec
Q.
A whole number data type that does not contain a decimal
8
30 sec
Q.
Logical operators are used to determine the logic between variables or values.
9
30 sec
Q.
which operations take precedence (are taken care of) before which other operations.
10
30 sec
Q.
A data type containing a sequence of characters, numbers, or symbols
11
30 sec
Q.
are used to store data in the computer's memory that the computer will access and manipulate when executing a program.
12
30 sec
Q.
A data type containing statements that evaluates to one of only two values: true or false
13
30 sec
Q.
Increments by 1
14
30 sec
Q.
Decrements by 1
15
30 sec
Q.
Modulus - Divides first value by second value and returns the remainder
16
30 sec
Q.
Is equal to
17
30 sec
Q.
Is not equal to
18
30 sec
Q.
(AND)
19
30 sec
Q.
(OR)
20
30 sec
Q.
(NOT)- also known as a logical inverter.
21
30 sec
Q.
The part of the code that identifies the variable and the data type
22
30 sec
Q.
Giving a variable a beginning value
23
30 sec
Q.
designing a program by discovering objects, their properties, and their relationships
24
30 sec
Q.
A mathematical phrase that contains operations, numbers, and/or variables.
25
30 sec
Q.
are used to manipulate the individual bits of values.
26
30 sec
Q.
&, |, ^, ~, <<, >>
27
30 sec
Q.
1. Integers (whole numbers)
28
30 sec
Q.
A data type in Python that can store a collection but cannot assign new values to individual elements.
29
30 sec
Q.
like set, but immutable
30
30 sec
Q.
1. unordered collection data type that is iterable, mutable, and has no duplicate elements
31
30 sec
Q.
A property of collections that are used to provide elements one at a time and in sequence.
32
30 sec
Q.
changeable
33
30 sec
Q.
list that automatically numbers the items displayed
34
30 sec
Q.
A collection of related values, often organized in lists, dictionaries, tuples, etc.
35
30 sec
Q.
A structure that stores values alongside different keys. Keys in a Python dictionary must be immutable.
36
30 sec
Q.
in a Python dictionary must be immutable.
37
30 sec
Q.
unchangeable; fixed
38
30 sec
Q.
&& [and]
39
30 sec
Q.
The symbols +, -, *, /, %, and ^ used to denote addition, subtraction (or negation), multiplication, division, percentage, and exponentiation in an Excel formula.