

InterviewSolution
Saved Bookmarks
1. |
Point out the error, if any in the loop. |
Answer» The while() loop must have conditional expression or it shows "Expression syntax" error. Example: while(i > 10){ ... } | |