Question: Provided below is a select case statement. Which of the following if statements can be used to replace the select case statement? select case number
Provided below is a select case statement. Which of the following if statements can be used to replace the select case statement?
select case number
case
display Group
case
display Group
case else
display Group unknown
endselect
a
if number then
display Group
else
if number then
display Group
else
display Group unknown
endif
endif
b
if number then
display Group
else
if number then
display Group
endif
else
display Group unknown
endif
endif
c
if number then
display Group
else
if number then
display Group
else
if number OR then
display Group unknown
endif
endif
endif
d
if number then
display Group
endif
if number then
display Group
endif
if number OR then
display Group unknown
endif
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
