adplus-dvertising

Welcome to the Selection Structures MCQs Page

Dive deep into the fascinating world of Selection Structures with our comprehensive set of Multiple-Choice Questions (MCQs). This page is dedicated to exploring the fundamental concepts and intricacies of Selection Structures, a crucial aspect of Visual Basic. In this section, you will encounter a diverse range of MCQs that cover various aspects of Selection Structures, from the basic principles to advanced topics. Each question is thoughtfully crafted to challenge your knowledge and deepen your understanding of this critical subcategory within Visual Basic.

frame-decoration

Check out the MCQs below to embark on an enriching journey through Selection Structures. Test your knowledge, expand your horizons, and solidify your grasp on this vital area of Visual Basic.

Note: Each MCQ comes with multiple answer choices. Select the most appropriate option and test your understanding of Selection Structures. You can click on an option to test your knowledge before viewing the solution for a MCQ. Happy learning!

Selection Structures MCQs | Page 2 of 7

Q11.
__________ operator reverses the truth value of the operation.
Discuss
Answer: (c).NOT
Q12.
__________ operator returns true, if all the sub-conditions are true.
Discuss
Answer: (a).AND
Q13.
__________ operator returns true, if any of the sub-condition is true.
Discuss
Answer: (b).OR
Q14.
And operator checks both the sub-conditions whereas AndAlso operator does __________
Discuss
Answer: (a).Short-circuit evaluation
Q15.
And operator checks both the sub-conditions whereas OrElse operator does __________
Discuss
Answer: (a).Short-circuit evaluation
Q16.
In the below statement when true is returned?
If str=”USE” Xor strln=”USE” Then
Discuss
Answer: (b).When only one sub-condition is true
Q17.
Which logical operator does not allow us to combine two or more conditions?
Discuss
Answer: (c).NOT
Q18.
What will be in Msg after the following code is evaluated?
If 5*3>3^2 AndAlso True OrElse False Then
Msg=”Hi”
Else
Msg=”Bye”
Endif
Discuss
Answer: (a).Hi
Q19.
What will be in Msg after the following code is evaluated?
If 3>6 AndAlso 7>4 then
   Msg=”Hi”
Else
   Msg=”Bye”
EndIf
Discuss
Answer: (b).Bye
Q20.
What will be in Msg after the following code is evaluated?
If 5*3 OrElse 3^2 Then
   Msg=”Hi”
Else
   Msg=”Bye”
EndIf
Discuss
Answer: (a).Hi
Page 2 of 7

Suggested Topics

Are you eager to expand your knowledge beyond Visual Basic? We've curated a selection of related categories that you might find intriguing.

Click on the categories below to discover a wealth of MCQs and enrich your understanding of Computer Science. Happy exploring!