JAVA Constructors and Methods What will be the return type of a method that not returns any value? void double int None of these void double int None of these ANSWER DOWNLOAD EXAMIANS APP
JAVA Constructors and Methods What is the output for the below code ?1. public class A{2. int add(int i, int j){3. return i+j;4. }5. }6. public class B extends A{7. public static void main(String argv[]){8. short s = 9;9. System.out.println(add(s,6));10. }11.} 15 Compile fail due to error on line no 9 Compile fail due to error on line no 2 None of these Compile fail due to error on line no 8 15 Compile fail due to error on line no 9 Compile fail due to error on line no 2 None of these Compile fail due to error on line no 8 ANSWER DOWNLOAD EXAMIANS APP
JAVA Constructors and Methods What is the output for the below code?public class Test{ public static void printValue(int i, int j, int k){ System.out.println("int"); } public static void printValue(byte...b){ System.out.println("long"); } public static void main(String... args){ byte b = 9; printValue(b,b,b); }} Compilation fails long Compilation clean but throws RuntimeException None of these int Compilation fails long Compilation clean but throws RuntimeException None of these int ANSWER DOWNLOAD EXAMIANS APP
JAVA Constructors and Methods Which of these is a legal definition of a method named examveda assuming it throws IOException, and returns void. Also assume that the method does not take any arguments. Select the one correct answer. void examians(void) throws IOException{} void examians() throws IOException{} examians() throws IOException{} void examians() throw IOException{} void examians() {} throws IOException void examians(void) throws IOException{} void examians() throws IOException{} examians() throws IOException{} void examians() throw IOException{} void examians() {} throws IOException ANSWER DOWNLOAD EXAMIANS APP
JAVA Constructors and Methods What is Math.floor(3.6)? 4.0 4 3.0 3 4.0 4 3.0 3 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(void){} MyClass(){} public MyClass(){} MyClass(void) {} 1 and 3 public MyClass(void){} MyClass(){} public MyClass(){} MyClass(void) {} 1 and 3 ANSWER DOWNLOAD EXAMIANS APP