Is linkedlist thread safe in java?
No Answer is Posted For this Question
Be the First to Post Answer
What are E and PI?
What is a numeric string?
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.
Why we need to serialize the object
11 Answers CTS, Geometric Software,
What are multiple inheritances? Is it supported by java?
import java.io.*; class Demo { public static void main(String args[]) { File f=new File("1234.msg"); String arr[]=f.list(); System.out.println(arr.length); } }
How will you get the platform dependent values like line separator, path separator, etc., ?
How to sort array in descending order in java?
What is the meaning of 3 dots in java?
In which language java is written?
What are the access modifiers available in java?
Explain tree set and its features?