Computer Science, asked by ayaanasad6g, 7 months ago

class Test2 { public static void main( ) { char ch = 'c'; int num = 88; ch =num ; System.out.println(ch); } }
Determine the output

Answers

Answered by IamGenesis
1

Answer:

X(capital)

Explanation:

the statement ch = num converts 88 to a character which is X (see ASCII table)

Similar questions