Data Types & Conditional Statements Flashcards

1
Q

What are statements in python?

Give some examples…

A

They are lines of code that perform specific actions

Ex. Assigning values to variables

Ex. Calling functions

Ex. Controlling the flow of execution

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

What are values in python?

Give some examples…

A

They are the data that programs work with

Ex. Integers

Ex. Strings

Values can be:
- assigned to variables
- used as arguments for functions
- combined w/ operators = produce new values

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

Give some examples of integer values

A

Whole numbers

5, -3, 0 etc…

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

Give some examples of float values

A

Decimal numbers

3.14, -2.5, 0.0 etc…

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

What are Boolean values?

A

Represent true or false

Are used in conditional statements to control program flow

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

What are Boolean values?

A

Represent true or false

Are used in conditional statements to control program flow

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

“________” types, such as what? Can be combined with arithmetic operators, such as +, -, * and /

A

Numeric

Such as integers and floats

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

Boolean values can be treated as numeric…

True is “__”

False is “__”

A

True is 1

False is 0

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

Strings “_______” be directly combined with numeric types

A

Cannot

You have to use the conversion function

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

Give an example converting data to an integer using the int(…) function

A

age = “25”
age_int = int(age)
print(age_int) # Output: 25

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

What are the 3 types of conditional statements?

A
  1. If
  2. If=else
  3. Elif
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What is an “if” statement?

Give an example

A

Check if a number is positive

Used to execute a block of code if a certain condition is true

if condition:
# execute this block of code if the condition is true

Ex.

num = 5
if num > 0:
print(“Number is positive.”)

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

What is an “if-else” statement?

Give an example

A

Used to execute a block of code if a certain condition is true AND a different block of code if the condition is false

if condition:
# execute this block of code if the condition is true
else:
# execute this block of code if the condition is
false

Ex.
# Check if a number is positive or negative
num = -5
if num > 0:
print(“The number is positive.”)
else:
print(“The number is negative.”)

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

What is an ‘if-elif-else’ statement?

Give an example

A

Used to execute a block of code based on multiple
conditions

condition 1:
# execute this block of code if condition 1 is true
elif condition 2:
# execute this block of code if condition 1 is false and condition 2 is true
else:
# execute this block of code if condition 1 and condition 2 are false

Ex.
# Check if a number is positive, negative, or zero
num = 0
if num > 0:
print(“The number is positive.”)
elif num < 0:
print(“The number is negative.”)
else:
print(“The number is zero.”)

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

True or false. In an if-elif-else statement, multiple code blocks will execute

A

False

ONLY ONE code block will operate, the first condition to be true

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

What are relational operators?

A

They are used to compare values and return a Boolean value (True or False) based on the comparison result

17
Q

What does == mean?

18
Q

What does != mean?

A

Not equal to

19
Q

Give an example where relational operators are used

A

x = 2
y = 5
if x == y:
print(“x equals y”)
if x != y:
print(“x is not equal to y”)
if x < y:
print(“x is less than y”)