August 29, 2024

OOPS

Question 141 Which of these events will be generated if we close an applet’s window? A ActionEvent B ComponentEvent C AdjustmentEvent D WindowEvent OOPSPropertiesNielit Scientific Assistance […]
August 29, 2024

OOPS

Question 143 Which of the following is true about interfaces in java? 1. An interface can contain following type of members. …public,static,final fields(i.e., constants) …default and […]
August 29, 2024

OOPS

Question 144 Which of the following is false about abstract classes in java? A If we derive an abstract class and do not implement all the […]
August 29, 2024

OOPS

Question 145 Give the output #include using namespace class Base1 { public: ~Base1() { cout<<“Base1’s destructor”<<enl; }; class Base2 { public: ~Base1() { cout<<“Base2’s destructor”<<enl; }; […]