Veda is writing code to calculate the volume of a cylinder based on this formula: She's testing her code on this cylinder: Cylinder with height of 3 and radius of 4 The code starts with these variables, where radius represents and height represents : radius ← 4 height ← 3 The built-in constant PI stores an approximation of . Which expression correctly calculates the volume? Choose 1 answer: Choose 1 answer: (Choice A) PI * (radius radius) * (height) A PI * (radius radius) * (height) (Choice B) PI(r * r)(h) B PI(r * r)(h) (Choice C) PI * (radius * radius) * (height) C PI * (radius * radius) * (height) (Choice D) PI (radius radius) (height) D PI (radius radius) (height) (Choice E) PI(radius * radius)(height) E PI(radius * radius)(height) (Choice F) PI * (r * r) * h F PI * (r * r) * h