What is difference between synchronize and concurrent collection in java?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More Core Java Interview Questions

What methods are called, When we navigate from one applet to another applet?

1 Answers  


Functionality of JVM?

7 Answers   Infosys,


What is better- service oriented or batch oriented solutions?

0 Answers   Amdocs,


What is the benefit of abstract class?

0 Answers  


Can a class be declared as protected?

0 Answers  


What is the difference between error and an exception?

0 Answers  


Does garbage collection guarantee that a program will not run out of memory?

1 Answers  


enlist some features of jdk.

0 Answers  


Is it possible to write JAVA program without including any of the packages,such as "import java.io.*"; bcoz I instantly wrote a code without "import..." statement and runned the program on command Line & it worked. the code is: class Person { String name; int age; Person(String s,int a) { name = s; age = a; } accept() { System.out.println(name+"Hi!!!!!"); System.out.println(age); } } class Demo { public static void main(Strings args[])throws IOException { String name = args[0]; int age = Integer.parseInt(args[1]); Person p = new Person(name,age); p.accept(); } }

3 Answers  


can any body tell me? does advance java and j2ee both are same.

4 Answers   CTS, Infosys,


How the interruptible method gets implemented?

0 Answers  


Explain about version control?

0 Answers  


Categories