- Home
- Output Questions for Class 10 ICSE Computer Applications
Predict the output of the given snippet, when executed: int
Output Questions for Class 10 ICSE Computer Applications
Predict the output of the given snippet, when executed:
int b=3,k,r;
float a=15.15,c=0;
if(k==1)
{
r=(int)a/b;
System.out.println(r);
}
else
{
c=a/b;
System.out.println(c);