where do we use init()
Answers were Sorted based on User's Feedback
Answer / yashwant
init() func is not only used in applets but it also used in
Servlet to initialized Servlet Program(Configured Servlet)
init()Called only once during the initialization of the Servlet.
| Is This Answer Correct ? | 6 Yes | 1 No |
Answer / guest
init() func is used in applets it is a method of applet
class and we need to override this method...
| Is This Answer Correct ? | 0 Yes | 1 No |
Why char array is preferred over string for storing password?
Write a java program to find the route that connects between Red and Green Cells. General Rules for traversal 1. You can traverse from one cell to another vertically, horizontally or diagonally. 2. You cannot traverse through Black cells. 3. There should be only one Red and Green cell and at least one of each should be present. Otherwise the array is invalid. 4. You cannot revisit a cell that you have already traversed. 5. The maze need not be in the same as given in the above example
Is logger a singleton?
Can Exception handling we can handle multiple catch blocks?
take any 4 input numbers. like 2345.. wanted out put is All 16 combinations of the number 2345.. for example- taking input as 4565 output- 5654 4556 4655..
I have 2 objects inside one object(vector). how can i serialize one of them. I dont want to serialize the second one
How do you clear a list in java?
How can you eliminate duplicates?
Explain the importance of join() method in thread class?
What is the synonym of procedure?
Can It is possible to synchronize the constructor of a Java Class?
What is a void method?