Question 114 What correction is required for following Java code snippet to compile? int[]x=new int[10]; for(int P=0;P<=X.length();P++) X[P]=5; A X[P]=5 should be X(p)=5 B P<=X.length() should […]
Question 115 What is garbage collection in the context of java? A The java virtual machine(JVM) checks the output of any java program and deletes anything […]
Question 116 Which of the following java statement declare and allocate a 2-dimensional array integers with four rows and five columns? A int array[ ] [ […]
Question 129 Parent class of all java classes is____ A Java.lang.system B Java.lang.object C Java.lang.class D Java.lang,reflect.object OOPSJAVAKVS 22-12-2018 Part-B Question 129 Explanation: public class Object: […]