Lesson 4 - Number System Flashcards

Number System

1
Q

It is a number system that we use in everyday life and has base 10.

A

Decimal number system

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

This term comes from the latin word “bi,” meaning two and has base 2.

A

Binary

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

This uses base 10 numbering system

A

Decimal

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

This uses base 2 numbering system

A

Binary

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

In Python, _______ operators are used to combine multiple conditions together and evaluate them as a single boolean expression.

A

Logical

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

if A = T and B = T,
T or F?

A

T

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

if A = T and B = F,
T or F?

A

F

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

if A = F and B = T,
T or F?

A

F

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

if A = F or B = T,
T or F?

A

T

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

if A = F and B = F,
T or F?

A

F

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

if A = T or B = F,
T or F?

A

T

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

if A = T or B = T,
T or F?

A

T

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

if A = F or B = F,
T or F?

A

F

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

The \_\_\_ operator returns True if both conditions it is evaluating are true, otherwise it returns False

A

and

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

In Python, the ‘_______’ operator is used to combine two or more conditions in a logical expression. The resulting expression evaluates to True if at least one of the conditions is True.

A

or

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

This number system has base 8

A

Octal

17
Q

This number system has base 16

A

Hexadecimal