August 25, 2024

OOPS

Question 112 java is a___language. This means that you must be explicit about what type of data you are working with A Weakly typed B strongly […]
August 25, 2024

OOPS

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 […]
August 25, 2024

OOPS

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 […]
August 25, 2024

OOPS

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[ ] [ […]