0 votes
in JAVA by
What are constants and how to create constants in java?

Constants are fixed values whose values cannot be changed during the execution of program. We create

constants in java using final keyword.

Ex : final int number =10;

final String str=”java-interview –questions”

1 Answer

0 votes
by

Constants are fixed values whose values cannot be changed during the execution of program. We create

constants in java using final keyword.

Ex : final int number =10;

final String str=”java-interview –questions”

Related questions

0 votes
asked Jun 17, 2019 in JAVA by reins.robin
0 votes
asked Jun 16, 2019 in JAVA by reins.robin
...