1

Consider the following code snippet and find x and y:
float x=8.25f;
int y;
y=(int)x;

  • A

    x= 8.25, y=8

  • B

    x= 8.0, y= 8.0

  • C

    x=8, y=8.25

  • D

    x=8, y=8