Which one of the following is NOT a configurable JVM option?

Choice 1:
Collect profiling and debugging statistics.
Choice 2:
Modify the number of bits a double variable uses.
Choice 3 :
Set the initial memory allocation pool size.
Choice 4 :
Modify the garbage collector's behavior.
Choice 5 :
Set the maximum memory allocation pool size.

Showing Answers 1 - 2 of 2 Answers


We can collect profiling and debugging statistics.  we can set the initial memory allocation pool size.  we can set the maximum memory allocation pool size.   we can modify the garbage collector's behavior, like we can disable the call to System.gc(), but JVM still do garbage collection whenever required. 

Using JVM option we CANNOT
modify the number of bits a double variable uses.   Because Java data types range is SAME independent of the platform.  So answer is Choice 2.


  Was this answer useful?  Yes

hiranmoy

  • Dec 27th, 2011
 

Modify the number of bits a double variable uses.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions