recategorized by
734 views
0 0 votes

Java Virtual Machine $\text{(JVM)}$ is used to execute architectural neutral byte code. Which of the following is needed by the $\text{JVM}$  for execution of Java Code?

  1. Class loader only
  2. Class loader and Java Interpreter
  3. Class loader, Java Interpreter and $\text{API}$
  4. Java Interpreter only

1 Answer

Position:
Show:

Related questions

1 1 vote
2 2 answers
3.0k
3.0k views
Arjun asked Jul 2, 2019
2,993 views
What is the output of the following JAVA program?public class Good { private int m; public Good (int m){this.m=m;} public Boolean equals (Good n) {return n.m==m;} public ...
0 0 votes
0 0 answers
2.4k
2.4k views
Arjun asked Jan 2, 2019
2,385 views
Consider the following recursive Java function $f$ that takes two long arguments and returns a float value :public static float f(long m, long n) { float result = (float)...
2 2 votes
1 1 answer
2.0k
2.0k views
Misbah Ghaya asked Jul 28, 2016
2,005 views
Which method is called first by an applet program ? start( ) run( ) init( ) begin( )
1 1 vote
1 answers 1 answer
3.4k
3.4k views
Misbah Ghaya asked Jul 28, 2016
3,399 views
Converting a primitive type data into its corresponding wrapper class object instance is called BoxingWrapping InstantiationAutoboxing