Which of the following represent explicit type casting. int x=80 , int y=60
Answers
Answered by
1
Answer:
None of the above....
Bcause u have just initialized x=80 and y=60...
Explicit type casting is that a convertion of 1 data type to another done by the user...
Example:double x=60,y=3;
int s = (int)(Math.pow(x,y));
therefore None of the Above is ur answer
I hope u understood what is explicit type convertion...mark me brainliest
Similar questions