Write the output of the following program code :

char ch ;

int x =98 ;

do {

ch =(char) x;

System.out.println(ch+ "" "");

if( x% 10 ==0)

break;

++x;

}

wle(x < = 100);​

Answer :

Other Questions