Multiple choice technology programming languages In a switch construct the execution will continue till a match case is found a match case is found and break is encountered will continue till default none Reveal answer Fill a bubble to check yourself B Correct answer Explanation In a switch statement, execution continues through all cases after a match until a break statement is encountered. This 'fall-through' behavior means without break, multiple case blocks execute sequentially.