which of the following are correct Java statements for this equation
Given that
```
a) int y = a * x * x * x + 7;
b) int y = a * x * x * (x + 7);
c) int y = (a * x) * x * (x + 7);
d) int y = (a * x) * x * x + 7;
e) int y = a * (x * x * x) + 7;
f) int y = a * x * (x * x + 7);
```
```
a) int y = a * x * x * x + 7;
d) int y = (a * x) * x * x + 7;
e) int y = a * (x * x * x) + 7;
```
Computer Science & Information Technology
You might also like to view...
A codec improves digital video resolution
Indicate whether the statement is true or false
Computer Science & Information Technology
Hiding a worksheet prevents it from displaying, but the sheet is still part of the workbook
Indicate whether the statement is true or false
Computer Science & Information Technology