What are keywords ? Give an example.
22 Likes
Keywords are reserved words that have a special meaning to the Java compiler. Example: class, public, int, etc.
Answered By
14 Likes
Consider the array given below:
char ch[] = {'A','E','I','O', 'U'};
Write the output of the following statements:
System.out.println(ch[0]*2);: