What is yield () in java?
If there are two notepad opened and working on it . is this a process or thread? computer based Live Example to differentiate between Thread , Process , and Multi tasking ?
What causes memory leak in java?
What is the largest data type in java?
What is the epoch date?
Which java collection does not allow null?
Is ResultSet class?
5 Answers Bally Technologies, TCS,
11. static class A { 12. void process() throws Exception { throw new Exception(); } 13. } 14. static class B extends A { 15. void process() { System.out.println(”B”); } 16. } 17. public static void main(String[] args) { 18. new B().process(); 19. } What is the result? 1 B 2 The code runs with no output. 3 Compilation fails because of an error in line 12. 4 Compilation fails because of an error in line 15.
What are the Class Libraries ?
What method is used to specify a container's layout in java programming?
Compare java and python.
How do you take thread dump in java?
Can you extend singleton class?