Given:
Which expression when added at line 1 will produce the output of 1.17?
float z = (float)(Math.round((float)x/y*100)/100);
float z = Math.round((int)(x/y),2);
float z = Math.round((float)x/y,2);
float z = Math.round((float)x/y*100)/(float)100;
Submit