recategorized by
1,190 views

2 Answers

0 0 votes

Ans C - JMX.

JVM : The virtual machine which enables any computer to run Java programs. It provides set of APIs which consists of classes and methods which enables the program (any program compiled to Java Bytecode) to interact with JVM.

JVN and JMY : No such API

JMX : Java Management Extension. This is a standard API for management and monitoring of applications, services, devices and JVM.  

 

Answer:
Position:
Show:

Related questions

3 3 votes
3 answers 3 answers
8.1k
8.1k views
shivanisrivarshini asked Jun 27, 2016
8,050 views
Consider the following Java code fragment:public class While { public void loop() { int x = 0; while(1) { System.out.println("x plus one is" +(x+1)); } } }There is syntax...
8 8 votes
2 answers 2 answers
5.8k
5.8k views
go_editor asked Jun 23, 2016
5,811 views
Find the output of the following Java code line System.out.printIn(math.floor(-7.4))-7-8-7.4-7.0
5 5 votes
3 answers 3 answers
5.6k
5.6k views
go_editor asked Jun 22, 2016
5,631 views
In Java, after executing the following code what are the values of x, y and z?int x,y=10; z=12;x=y++ + z++;x=22, y=10, z=12x=24, y=10, z=12x=24, y=11, z=13x=22, y=11, z=1...
3 3 votes
1 answers 1 answer
7.3k
7.3k views
Misbah Ghaya asked Jun 5, 2016
7,321 views
The built-in base class in java, which is used to handle all exceptions isRaiseExceptionErrorThrowable