← Back to Test

Problem 13 - Entrance Test

A box of orange has n layers, and each layer contains m oranges. If n = 4 and m = 5, how many oranges are there in the box?

Correct: C

To find the number of oranges, multiply the number of layers by the number of oranges in each layer: n * m = 4 * 5 = 20 oranges.