Computer Science, asked by biswa1234555, 1 year ago

in sqitch case , when the value of the switch is not satisfied , then the execution transfers to?

Answers

Answered by maddymax123456
4
when the value is not satisfied in switch case then the control goes to the default statement

hope it helps 
pls mark brainliest

biswa1234555: how can u explain
maddymax123456: u know na that with switch statement default keyword is also used
biswa1234555: so tell me how can we make a fall through condition using switch case
maddymax123456: to make a fall through condition u have to apply break statement after some cases
Answered by Gripex
2

In a switch case when the switch value dosenot respond to any case then the execution transfer to :

(a) a break statement ; (b) a default case ; (c) a loop ; (d) none

Answer : (a) a default case

Similar questions