IntelliJ Java IDE
The moose likes Web Component Certification (SCWCD/OCPJWCD) and the fly likes please help me with the ouput Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Professional Certification » Web Component Certification (SCWCD/OCPJWCD)
Reply Bookmark "please help me with the ouput" Watch "please help me with the ouput" New topic
Author

please help me with the ouput

Anonymous
Ranch Hand

Joined: Nov 22, 2008
Posts: 18944
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
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
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.
Mee02 Re
Greenhorn

Joined: Feb 20, 2002
Posts: 8
ok got it . Its being printed thrice.
 
 
subject: please help me with the ouput
 
Threads others viewed
javascript problem
linking a url to my context
how to access values in session from javascript
opening new browser window from applet
repeated (embedded inside)<head> <body> <html> tag
IntelliJ Java IDE