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 |
Why is method overloading not possible by changing the return type in java?
What is null statement?
Can string be considered as a keyword?
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 we use different return types for methods when overridden?
What are the types of casting?
Can a class be private?
What is stack class in java?
Write a program to show whether a graph is a tree or not using adjacency matrix.
Highest level event class of the event-delegation model?
In case of inheritance what is the execution order of constructor and destructor?
Mention some features of java?