Question: Given that y = ax 2 + 5x + 2, which of the following are correct Java statements for this equation? a) y = a
Given that y = ax2 + 5x + 2, which of the following are correct Java statements for this equation?
a) y = a * x * x + 5 * x + 2;
b) y = a * x * x + (5 * x) + 2;
c) y = a * x * x + 5 * (x + 2);
d) y = a * (x * x) + 5 * x + 2;
e) y = a * x * (x + 5 * x) + 2;
f) y = a * (x * x + 5 * x + 2);
Step by Step Solution
3.39 Rating (165 Votes )
There are 3 Steps involved in it
The correct Java statements for the equation y ax2 5x 2 are a y a x x 5 x 2 d y a x x 5 x 2 f y a x ... View full answer
Get step-by-step solutions from verified subject matter experts
