Explain a situation where finally block will not be executed?
No Answer is Posted For this Question
Be the First to Post Answer
When we can access the static data member without creating the object what is the need of the object in java.
5 Answers Airhub, ssinformatics,
Write java code to print "Hello how are you" Thread1 should have "Hello" Thread2 should have "how are you" both the threads should start at the same time
What is “try and catch” in java
Write a java program for binary search?
garbate collector(GC)?
What modifiers are used with an inner class which is a member of an outerclass?
What is the difference between reader/writer and inputstream/output stream?
What is 3-tier model?
what are depricated methods in threads and explain the lifecycle methods
What is the difference between a choice and a list?
When throw keyword is used?
4.1 Supply contracts (in the form of comments specifying pre- and post conditions) for the enqueue() method of the LinkedQueue class given in the Appendix. (2) 4.2 Let Thing be a class which is capable of cloning objects, and consider the code fragment: Thing thing1 = new Thing(); //(1) Thing thing2 = thing1; //(2) Thing thing3 = (Thing) thing1.clone(); //(3) Explain how the objects thing2 and thing3 differ from each other after execution of the statements. (