Computer Science, asked by yashbalva8, 6 months ago

what will be result of expression ++i<=10 , if i=10​

Answers

Answered by kushanparmar257
1

Explanation:

System.out.print(i); a) 10 b) 11 c) 12 d) 13 e) Line 5 will be never reached. ... Initially i=10, when it reaches to while statement i++ <= 10 here i = 10 so ... if we compile the the condition is execute i++=10

Similar questions