Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

1. (TCO 9) A(n) _____ application calls on the operating system to perform input

ID: 3769748 • Letter: 1

Question

1. (TCO 9) A(n) _____ application calls on the operating system to perform input/output functions, whereas a(n) _____ application reacts to event notifications from the operating system. (Points : 3)        console, Windows
       GUI, Windows
       Windows, console
       Windows, GUI

       if
(ckBoxBurger.isChecked)
   {
       listBoxOrder.Items.Add("Burger");
   }

       if (ckBoxBurger.Checked)
   {
       listBoxOrder.Add("Burger");
   }

       if (ckBoxBurger.isChecked())
   {
       listBoxOrder.Text = "Burger";
   }

       if (ckBoxBurger.Checked)
   {
       listBoxOrder.Items.Add("Burger");
   }

Question 3. 3. (TCO 9) Because _____ inherit members from the Control class, they both have the methods Show() and Hide(). (Points : 3)        Buttons and Events
       TextBoxes and Events
       RadioButtons and Forms
       ListBoxes and ComboBoxes

Explanation / Answer

1. console, Windows

3.3 ListBoxes and ComboBoxes

4.4 Frame

5.5 Click()

6.6 Text

7.7 listHolidays.Items.Add(“Labor Day”);

8.8 string str = lblFirstName.getText();

9.9 GroupBox, CheckBox

10.10
if
(ckBoxBurger.isChecked)
{
listBoxOrder.Items.Add("Burger");
}