QUIZ VISUAL C (TEST EXAM)
QUIZ VISUAL C (TEST EXAM)
MULTIPLE CHOICES
9. What type of software controls the internal operations of the computer’s hardware?
• Answer: The Operating System (OS).
10. What statement would you write to display Good Afternoon in a message box?
• Answer: MessageBox.Show(“Good Afternoon”);
11. What statement would you write to display your name in a message box?
• Answer: MessageBox.Show(“Your Name”);
// Replace “Your Name” with your actual name.
12. Briefly describe how the AND operator works.
• Answer:
Int age = 25;
Bool hasID = true;