s40016349 s40016349 11-10-2022 Computers and Technology contestada In the following code, we define two variables, w and h, and use them to draw an ellipse and a rectangle: var w = 20; var h = 15; rect(10, 10, w, h); ellipse(10, 10, w, h); How tall is each one of the shapes?