Math expressions: Familiar operators Flashcards

1
Q

Rewrite this so total equals 10.

total = “4” + 6

A

total = 4 + 6

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

What is the value of third_number?
first_number = 5
second_number = 6
third_number = first_number * second_number

A

30

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

Divide the variable total by 3 and assign the result to the variable each_share.

A

each_share = total / 3

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

Subtract one number from another and assign the result to a variable. Make up the numbers and the variable name.

A

left_over = 1345 - 801

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