- Q Define Continuity of a function f(x,y) at a point (a,b)
- Q Explain what is a replica set?
- Q What is the Indian name for the planet Mercury?
- Q Have you ever starred in an amateur or professional video?
- Q G.N Bajpai committee is related to which of the following?
- Q What is the best way to win in monopoly? Is this possible in real life?
- Q Why do you feel that you are the best person for this job?
- Q What is the salivary digestive enzyme? Which type of food does it digest and into which smaller molecules does it transform the food?
- Q What is Radio Frequency Mathematics ?
- Q Name Donald Ducks father
- Q What will happen when you attempt to compile and run this program public class Outer{ public String name = "Outer"; public static void main(String argv[]){ Inner i = new Inner(); i.showName(); }//End of main private class Inner{ String name =new String("Inner"); void showName(){ System.out.println(name); } }//End of Inner class } 1) Compile and run with output of "Outer" 2) Compile and run with output of "Inner" 3) Compile time error because Inner is declared as private 4) Compile time error because of the line creating the instance of Inner