Submitted by heartin on Sat, 07/04/2020 - 20:58
Arrays are data structures that hold a group of elements and each element has a position denoted by an integer called the index of that element.
Important properties of arrays
Important properties of arrays are:
-
Array indexes (element positions) have to be integers and start at 0.
Submitted by heartin on Fri, 04/10/2015 - 08:15
-
How can you call a JSP page using a request dispatcher?
-
How can you suppress direct access to a JSP file through a client request?
Submitted by heartin on Fri, 03/20/2015 - 09:24
-
What are the three ways in which you can tell the container that your class is a servlet?
-
Compare filters with RequestDispatcher mechanism.
-
Can you include or forward to filters using the RequestDispatcher mechanism?
-
What will happen if you call two RequestDispatcher forwards or includes from within a servlet's doXXX method?
-
Can you use wrappers to have two RequestDispatcher forward requests without any exception?
Submitted by heartin on Fri, 10/24/2014 - 03:55
There is a class in Java called Object and is present in the package java.lang.Object. This is different from the concept of objects in object oriented programing, and begenners may get confused. Note that is is just a class in Java with the name as Object.
Object class API basics
Submitted by heartin on Thu, 10/23/2014 - 10:07
The while statement
The “while loop” is an alternative to “for loop”. a “for loop” is usually used when the number of times the block is to be executed is known. A “while loop” is usually used when the number of times the block is to be executed is not known, like prompting the user whether to stop executing during every iteration.
The syntax of “while loop” is:
while (<condition>) <statements>;
Example:
Pages