What are the allowed, non-Unicode letter characters that
can be used as the first character of an identifier?
Answers were Sorted based on User's Feedback
Answer / ranganathkini
Currency symbol such as $ and _ (underscore)
| Is This Answer Correct ? | 2 Yes | 0 No |
Differentiate constructor and a method and how are it be used?
Is null a string?
What is the byte order of byte buffer?
what is difference between prepare stetement and callable starement with example?
Explain jvm, jre, and jdk?
What is ‘has a’’ relationship in java?
What is final modifier?
I want my class to be developed in such a way that no other class (even derived class) can create its objects. Define how can I do so?
When a thread is executing a synchronized method , then is it possible for the same thread to access other synchronized methods of an object ?
What will be the output of the program? public class Test { public static void main(String args[]) { ArrayList<String> list = new ArrayList<String>(); list.add("2"); list.add("3"); list.add("4"); list.add("5"); System.out.println("size :"+list.size()); for(int i=0;i<list.size();i++) { list.remove(i); } System.out.println("size after:"+list.size()); } }
Can an object be garbage collected while it is still reachable?
When is finally block not called?