INTERVIEW QUESTION FOR ANDROID
No Answer is Posted For this Question
Be the First to Post Answer
What is ‘is-a ‘ relationship in java?
Why should we use singleton pattern instead of static class?
How do you clear an arraylist in java?
what are the rules to use try catch finally?
What is t in generics in java?
Where is stringbuffer stored?
If you are given the name of the function at run time how will you invoke the function?
What is the output of the following Java program? class Main { public static void main(String args[]){ final int i; i = 10; System.out.println(i); } } 10. What is the output of the following Java program? class Main { public static void main(String args[]){ final int i; i = 10; System.out.println(i); } }
What is the default access specifier for variables and methods of a class?
Is a case study a method or methodology?
what are the uses of Class class and what it returns? explain it with the example code.
Why do we create public static method in java?