Computer Science, asked by vandanamishra90582, 6 months ago

The keywords ____ and goto cannot be used in Java.​

Answers

Answered by santy2
0

Answer:

The keyword Const

The keywords Const and goto cannot be used in Java

Const is not used and has no function in Java although is reserved as a keyword in java.

Explanation:

Const in full is a constant

A constant is a variable whose value cannot change once it has been assigned.

Java doesn't have built-in support for constants.

A constant can make our program more easily read and understood by others.

In Java to declare any variable as constant we use Static and Final modifiers

Similar questions