define fall through in java
Answers
Answered by
3
In program, multiple cases are available,so control needs to execute specific case block for given switch value. If break statement is not applied at end of case then control enters next Case for excution. This process is called fall through
Similar questions