InterviewSolution
Saved Bookmarks
| 1. |
Explain the JSP while loop. |
|
Answer» The JSP While loop is USED to ITERATE the elements where it has one PARAMETER of the condition. Syntax of While loop: While(i<N){ //Block of statements} |
|