int Java Keyword with Examples Key points about int Keyword The int keyword is used to declare a variable as a numeric type. For example, int a = 10; A int variable is a signed 32-bit type that has a range from –2,147,483,648 to 2,147,483,647. The Integer class is a wrapper class for the int primit...