What are the latest versions in JAVA related areas?
Answers were Sorted based on User's Feedback
Answer / neha ankam
passing string as an argument to switch statement in jdk7
| Is This Answer Correct ? | 0 Yes | 0 No |
Are arrays primitive data types?
What language is pass by reference?
Which of these methods belong to Thread & Object class? join, yield, sleep, wait, notify
Is list thread safe in java?
What is the collection interface?
What is the size of string?
Difference between Web-based applications,Client- Server applications and Distributed applications?
When is the finally clause of a try-catch-finally statement executed?
What are the four integer types supported by java?
If I will write String s=new String("XYZ"); String s1=new String("XYZ"); if(s.equals(s1)){ sop("True"); } else{ sop("False"); } This program will give me "True". But When I am creating my own class suppose class Employee{ public Employee(String name); } Employee e= new Employee("XYZ"); Employee e1 = neew Employee("XYZ"); if(e.equals(e1)){ sop("True"); } else{ sop("False"); } Then it will give the output as "False". Can I know what is happening internally?
What is an iterator java?
What are constants?