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 4 of 7

Q31.
When a selection structure’s true part or false part contains another selection structure, the inner selection structured is referred to as __________
Discuss
Answer: (d).Nested selection structure
Q32.
Most common error that occur in selection structure is __________
Discuss
Answer: (a).Logical error
Q33.
__________ refers to the process of checking your algorithm while seated at your desk.
Discuss
Answer: (a).Disk-checking
Q34.
What will be the content of num, after the code execution; if before code execution num has value 90?
If num<=100
    num=num*2;
ElseIf num>500
   Num=num*3;
Endif
Discuss
Answer: (c).180
Q35.
What will be the content of num, after code execution; if before code execution num has value 1000?
If num<=100
    num=num*2;
ElseIf num>500
   Num=num*3;
Endif
Discuss
Answer: (c).3000
Q36.
What will be the content of num, after code execution; if before code execution num has value 200?
If num<=100
    num=num*2;
ElseIf num>500
   Num=num*3;
Endif
Discuss
Answer: (b).200
Q37.
What will be the content of Text after the code is executed with id=2?
If id==1 Then
    Text=”Janet”;
Elseif id==2 OrElse id==3 Then
   Text=”Mark”
ElseIF id==4 Then
    Text=”Jerry”
Else
  Text=”Sue “;
EndIf
Discuss
Answer: (b).Mark
Q38.
What will be the content of Text after the code is executed with id=4?
If id==1 Then
    Text=”Janet”;
Elseif id==2 OrElse id==3 Then
   Text=”Mark”
ElseIF id==4 Then
    Text=”Jerry”
Else
  Text=”Sue “;
EndIf
Discuss
Answer: (c).Jerry
Q39.
What will be the content of Text after the code is executed with id=8?
If id==1 Then
    Text=”Janet”;
Elseif id==2 OrElse id==3 Then
   Text=”Mark”
ElseIF id==4 Then
    Text=”Jerry”
Else
  Text=”Sue “;
EndIf
Discuss
Answer: (d).Sue
Q40.
A nested selection structure can be contained in ____________________ of another selected structure.
Discuss
Answer: (d).Both in truth and in false part
Page 4 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!