Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
What is the difference between a while statement and a do statement?
What is the difference between a while statement and a do statement?
✍: Guest
A while statement checks at the beginning of a loop to see whether the next loop iteration should occur. A do statement checks at the end of a loop to see whether the next iteration of a loop should occur. The do statement will always execute the body of a loop at least once.
2012-12-07, 2312👍, 0💬
Popular Posts:
What is Service Oriented architecture? “Services” are components which expose well defined interface...
How many bits are used to represent Unicode, ASCII, UTF-16, and UTF-8 characters? Unicode requires 1...
what are the advantages of hosting WCF Services in IIS as compared to self hosting? There are two ma...
How can you determine the size of an allocated portion of memory? You can't, really. free() can , bu...
1. The basics first, please define the web in simple language? How is it connected with internet? Wh...