August 25, 2024OOPSQuestion 8 Consider the following JAVA program : public class First { public static int CBSE (int x) { if (x < 100) x = CBSE […]
August 25, 2024OOPSQuestion 7 Given the array of integers ‘array’ shown below : What is the output of the following JAVA statements ? int [ ] p = […]
August 25, 2024OOPSQuestion 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, 2024OOPSQuestion 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 […]