Answer Posted / priya
No Return Type. It is void.
| Is This Answer Correct ? | 7 Yes | 1 No |
Post New Answer View All Answers
What event results from the clicking of a button?
what are the advantages of JTA over JTS?
Explain the advantages and disadvantages of detached objects.
How can I avoid validating a form before data is entered?
what is a portable component?
how do you Handle Front End Application data against DB with example?
Describe, in general, how java's garbage collector works?
Are enterprise beans allowed to use thread.sleep()?
How would you detect a keypress in a jcombobox?
What are the pros and cons of detached objects?
how to make a index.jsp for running the site in internet and find an error for connection with weblogic server and java that give an error invalid object name.and how to maintain session.
How task's priority is used in scheduling?
What is a tasks priority and how is it used in scheduling?
What is Stream Tokenizer?
int x=5,i=1,y=0; while(i<=5) { y=x++ + ++x; i=i+2; } System.out.println(x); System.out.println(y); System.out.println(i); How to solve this? Please explain!