Answer:
m + p >= 100
m >= 40
p >= 10
Step-by-step explanation:
let m = number of mugs
let p = number of plates
Answer:
3/2
Step-by-step explanation:
Assuming you meant fractions, to divide them, you must multiply the reciprocal of that fraction. You'll then have:
4/5x15/8
Reduce the numbers of the greatest common factor which is 5:
4x3/8
Reduce the numbers of the greatest common factor which is now 4:
3/2 is your answer
Answer:Research measures include survey questions, interview questions, or constructed situations. When constructing interviews and surveys, it is important that the questions directly relate to the research questions.
I have asked google I hope google helped
Step-by-step explanation:
Answer:
Step-by-step explanation: fifty-four point zero three nine
In pseudocode
num2guess = random(1,100)
pnum = 0
while (pnum != num2guess) {
pnum = ask_player("What number I'm thinking?")
if (pnum > num2guess) {
print("Too high.")
} else if (pnum < num2guess) {
print("Too low.")
}
}
print("Good job!")