tell me some common
Answers were Sorted based on User's Feedback
Answer / mayank
Simply use throws Exception in front of every method
| Is This Answer Correct ? | 0 Yes | 0 No |
Where the CardLayout is used?
Given: 11. public static void main(String[] args) { 12. Integer i = uew Integer(1) + new Integer(2); 13. switch(i) { 14. case 3: System.out.println(”three”); break; 15. default: System.out.println(”other”); break; 16. } 17. } ‘What is the result? 1 three 2 other 3 An exception is thrown at runtime. 4 Compilation fails because of an error on line 12.
Difference between static methods, static variables, and static classes in Java.
What is the base class of all exception classes in java?
Why java is object oriented?
Write a program to print 15 random numbers using foreach of java 8?
What is complexity in java?
What is a numeric digit?
What is parameter tag and what is its use?
Class A extends Class B but Class A also inherit Super Class Object so it is multiple inheritence give reason in support of your answer
Explain about anonymous inner classes in java?
Does sprintf allocate memory?