Identify the invalid java keyword in the below list
integer
float
char
double
Correct Answer : A
integer is not a keyword. To declare a number as integer, the keyword to be used is int.
float is a keyword for floating point number, char is for character group and double is keyword for another type in floating point group.