1

What are the resultant data types if the below given implicit conversions are performed?
int i; float f; double d; char c; byte b;

i + c/b;

  • char

  • int

  • byte

  • long