JAVA Constructors and Methods Determine output of the following program.public class Test{ public static void main(String args[]){ System.out.println( Math.floor( Math.random( ) ) ) ; }} 0.0 1.0 10.0 0.5 0.0 1.0 10.0 0.5 ANSWER DOWNLOAD EXAMIANS APP
JAVA Constructors and Methods In which area of memory, the system stores parameters and local variables whenever a method is invoked? Array Heap Storage Area Stack Array Heap Storage Area Stack ANSWER DOWNLOAD EXAMIANS APP
JAVA Constructors and Methods Given the following piece of code:class Person{ public int number;}public class Test{ public void doIt(int i , Person p){ i = 5; p.number = 8; } public static void main(String args[]){ int x = 0; Person p = new Person(); new Test().doIt(x, p); System.out.println(x + " " + p.number); }}What is the result? 0 0 5 8 5 0 0 8 0 0 5 8 5 0 0 8 ANSWER DOWNLOAD EXAMIANS APP
JAVA Constructors and Methods What will be the result of compiling and running the given code?class A{ int b=10; private A(){ this.b=7; } int f(){ return b; }}class B extends A{ int b;}public class Test{ public static void main(String[] args){ A a = new B(); System.out.println(a.f()); }} None of these Prints 10 Prints 0 Compilation Fails Prints 7 None of these Prints 10 Prints 0 Compilation Fails Prints 7 ANSWER DOWNLOAD EXAMIANS APP
JAVA Constructors and Methods public class MyClass{ }For the above class(MyClass) what is the correct way of declaring constructor? 1 and 3 MyClass(void) {} MyClass(){} public MyClass(void){} public MyClass(){} 1 and 3 MyClass(void) {} MyClass(){} public MyClass(void){} public MyClass(){} ANSWER DOWNLOAD EXAMIANS APP
JAVA Constructors and Methods The main method should be static for the reason It can be accessed easily by the class loader. It can be executed without creating any instance of the class. It can be accessed by every method or variable without any hindrance. None of these It can be accessed easily by the class loader. It can be executed without creating any instance of the class. It can be accessed by every method or variable without any hindrance. None of these ANSWER DOWNLOAD EXAMIANS APP