Multiple choice technology How do you find the number with the highest value of x and y? top(x,y) Math.ceil(x,y) ceil(x,y) Math.max(x,y) Reveal answer Fill a bubble to check yourself D Correct answer Explanation Math.max(x, y) returns the largest of zero or more numbers. Option B (Math.ceil) rounds up to the nearest integer but doesn't compare values. Options A and C are non-existent functions.