Question

24. Identify the correct Select Case statement that checks the value of a variable intMyNum and assigns a value using the following guidelines: value 1 or 7 or 15 add

100 to the variable value 2 or 9 or 21 add 150 to the variable value 3 or 6 or 13 add 200 to the variable none of the above set txtOutput.Text to “Cannot find it" а. Select Case Value Case intMyNum = 1 Or 7 or 15 intMyNum += 100 Case intMyNum = 2 Or 9 or 21 intMyNum += 150 Case intMyNum= 3 Or 6 or 13 intMyNum += 200 Case else txtOutput.Text = "Cannot find it" End Case b. Select Case intMyNum Case value = 1, 7, 15 intMyNum += 100 Case value =2, 9, 21 intMyNum += 150 Case value = 3, 6, 13 intMyNum+= 200 Case else txtOutput.Text = "Cannot find it" End Case с.Select Case intMyNum Case 1, 7, 15 intMyNum += 100 Case 2, 9, 21 intMyNum += 150 Case 3, 6, 13 intMyNum += 200 Case else txtOutput.Text = "Cannot find it" End Case d.Select Case intMyNum Case value=1 Or value=7 or value=15 intMyNum += 100 Case value=2 Or value=9 or value=21 intMyNum += 150 Case value3 or value6 Or value13 intMyNum+= 200 Case else txtOutput.Text = "Cannot find it" End Case

Question image 1Question image 2Question image 3Question image 4Question image 5Question image 6Question image 7Question image 8Question image 9Question image 10Question image 11Question image 12Question image 13Question image 14Question image 15Question image 16Question image 17Question image 18Question image 19Question image 20Question image 21Question image 22Question image 23Question image 24Question image 25Question image 26Question image 27Question image 28Question image 29Question image 30Question image 31Question image 32Question image 33Question image 34Question image 35Question image 36Question image 37Question image 38Question image 39Question image 40Question image 41Question image 42Question image 43Question image 44Question image 45