JAVA Constructors and Methods In which area of memory, the system stores parameters and local variables whenever a method is invoked? Array Stack Storage Area Heap Array Stack Storage Area Heap 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() throws IOException{} examians() throws IOException{} void examians() {} throws IOException void examians(void) throws IOException{} void examians() throw IOException{} void examians() throws IOException{} examians() throws IOException{} void examians() {} throws IOException void examians(void) throws IOException{} void examians() throw IOException{} ANSWER DOWNLOAD EXAMIANS APP
JAVA Constructors and Methods What is Math.floor(3.6)? 4.0 3.0 3 4 4.0 3.0 3 4 ANSWER DOWNLOAD EXAMIANS APP
JAVA Constructors and Methods The implicit return type of a constructor is There is no return type. A class object in which it is defined. void None of these There is no return type. A class object in which it is defined. void 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 8 Compile fail due to error on line no 2 None of these Compile fail due to error on line no 9 15 Compile fail due to error on line no 8 Compile fail due to error on line no 2 None of these Compile fail due to error on line no 9 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();}} Compilation Error Animal Wild Wild Animal Runtime Exception Compilation Error Animal Wild Wild Animal Runtime Exception ANSWER DOWNLOAD EXAMIANS APP