JAVA Constructors and Methods The variables declared in a class for the use of all methods of the class are called instance variables reference variables None of these objects instance variables reference variables None of these objects ANSWER DOWNLOAD EXAMIANS APP
JAVA Constructors and Methods What is the expected output?class Animal {Animal() {System.out.println("Animal");}}class Wild extends Animal{Wild() {System.out.println("Wild");super();}}public class Test {public static void main(String args[]) {Wild wild = new Wild();}} Wild Animal Compilation Error Animal Wild Runtime Exception Wild Animal Compilation Error Animal Wild Runtime Exception 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? 5 0 0 0 0 8 5 8 5 0 0 0 0 8 5 8 ANSWER DOWNLOAD EXAMIANS APP
JAVA Constructors and Methods What will be the return type of a method that not returns any value? void double None of these int void double None of these int ANSWER DOWNLOAD EXAMIANS APP
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.5 1.0 0.0 10.0 0.5 1.0 0.0 10.0 ANSWER DOWNLOAD EXAMIANS APP
JAVA Constructors and Methods public class MyClass{ }For the above class(MyClass) what is the correct way of declaring constructor? public MyClass(){} MyClass(){} 1 and 3 MyClass(void) {} public MyClass(void){} public MyClass(){} MyClass(){} 1 and 3 MyClass(void) {} public MyClass(void){} ANSWER DOWNLOAD EXAMIANS APP