Answer Posted / msandeepk
jvm stands for Java Virtual Machine. It is the program
which runs java programs. We can define heap size of jvm.
In java garbage collection is taken care by jvm. Hence user
need not concentrate on garbage collection. The default
algorithm jvm uses is mark and sweep algorithm. We can even
change the algorithm.
jvm is considered very useful because jvm can be hardware
and o/s dependent. But the compiled class file is
independent to be run on any platform. All this is possible
because of JVM's capability and features.
| Is This Answer Correct ? | 9 Yes | 0 No |
Post New Answer View All Answers
What is layout manager in java?
Is java is fully object oriented?
What is java ee sdk?
Is java important for my computer?
What is callback methods?
What is j2ee api?
Is object a composite data type in java?
What is deployer?
Why is java used?
Give some advantages of orm (object-relational mapping)?
What is container-managed persistence?
What is webservices in java?
I am newbie in J2EE & looking for strong basic behind each concept as, Why do we use private access specifier before each variable of type property bcoz ultimately to access it outside the class we use public method as getter & setter ? If we use getter & setter to access it outside the class so better we make variable as public so that it is easily available outside of the class... Please guide me why do we use as private ????
Is string a primitive data type in java?
Since we can create managed bean by two ways as, we can define the bean name in faces-config.xml file so that page can use that OR we can write annotation on bean class so that it is automatically assign to page but I want to know which one is good programming practice ? And also mention disadvantage of other which should not prefer ... Thanking you...