...
August 25, 2024

OOPS

Question 7 Given the array of integers ‘array’ shown below : What is the output of the following JAVA statements ? int [ ] p = […]
August 25, 2024

OOPS

Question 165 Implicit return type of a class constructor is: A not of class type itself B class type itself C a destructor of class type […]
August 25, 2024

OOPS

Question 139 Which two are valid constructors for Thread? 1. Thread(Runnable r, String name) 2. Thread() 3. Thread(int priority) 4.Thread(Runnable r, ThreadGroup g) 5.Thread(Runnable r, int […]
August 25, 2024

OOPS

Question 125 Which constructor will be called by the following lines of code? (i) Student S1; (ii) Student S2=S1; A First copy constructor, then default constructor […]