Math expressions: Familiar operators Flashcards
1
Q
Rewrite this so total equals 10.
total = “4” + 6
A
total = 4 + 6
2
Q
What is the value of third_number?
first_number = 5
second_number = 6
third_number = first_number * second_number
A
30
3
Q
Divide the variable total by 3 and assign the result to the variable each_share.
A
each_share = total / 3
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