Java is a ……….. language

A. weakly typed
B. strongly typed
C. moderate typed
D. None of these

Answer: Option B

 

Definition:

Java is a strongly typed programming language because every variable must be declared with a data type. A variable cannot start off life without knowing the range of values it can hold, and once it is declared, the data type of the variable cannot change.

Examples:

The following declaration is allowed because the variable has “hasDataType” is declared to be a boolean data type:


boolean hasDataType;

For the rest of its life, hasDataType can only ever have a value of true or false.

Leave a Comment