what is singleton class? where it mainly used in the
projects?
Answer Posted / niraj
singleton means single. singleton class is that class
which have only one object , or in which class has only one
object .
| Is This Answer Correct ? | 17 Yes | 3 No |
Post New Answer View All Answers
Name the class that is used to bind the server object with RMI Registry?
What is the difference between RMI and Corba?
Name three subclasses of the component class?
A user of a web application sees a jsessionid argument in the URL whenever a resource is accessed. What does this mean? a. The form must have the field jsessionid b. URL rewriting is used as the session method c. Cookies are used for managing sessions
What modifiers may be used with an inner class that is a member of an outer class?
How is a java object message delivered to a non-java client?
Difference between DurableSubscription and non- DurableSubscription?
Java is fully object oriented languages or not?
When a thread blocks on i/o, what state does it enter?
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!
Can I use javascript to submit a form?
Explain about RMI Architecture?
How messaging services are done, before release of JMS?
What is meant by method chaining?
Write a program to show synchronization?