Computer Science, asked by ujjalkumarneog, 1 day ago

give output of the following programs
(a) int d;
for(d=65;d<=70;d++)
System.out.println(d+" "+(char)(d+32)+" ");​

Answers

Answered by monikagogoi000
2

i don't know the acsii table completely...but i can tell the answer pattern-

value of d and ASCII value of d added to d (i.e)

65 (character value of 97)

67 (character value of 98)

....and so onn

Similar questions