15) Give the
output for following program code
String sat = ("ExAmInATioN");
for (int y=0; y<sat.length (); y+=2)
System.out.print(sat.CharAt (y)+" ");
Answers
Answered by
0
Answer:
The output is
A I A i
hope this helps
Similar questions