What is the output of the following code? <HTML> <HEAD></HEAD> <BODY> <% for(int i=0; i<3; ++i){ %> out.print(i); <% } %> </BODY> </HTML>
Raj Bhalla
Greenhorn
Joined: Feb 06, 2002
Posts: 18
posted
0
output will be : out.print(i); out.print(i); out.print(i); . Explanation this will be conisdered as pure text so internally we have something like this in _jspService for(int i=0; i<3; ++i){
out.print("out.print(i);"); }
Please correct this, If wrong
SCJP2,SCWCD
Mee02 Re
Greenhorn
Joined: Feb 20, 2002
Posts: 8
posted
0
When i try to open it Output was just out.print(i); I thought it should be out.print(i); out.print(i); out.print(i); Any suggestions as why its printed only once.