Critical Thinking QuestionsCase 5-2Eric had a small reference card that he keeps handy to remind him which MsgBoxButton arguments values translate to which buttons in the dialog box, but then he lost the card. He calls over to you for help in reminding him what values correspond to what.Eric wants your help in remembering which of the following options corresponds to a dialog box that alerts the user to an error and offers the OK and Cancel buttons. What do you tell him?
a. MsgBox("User name is missing", 0 Or 32, "User Name Error")c. MsgBox("User name is missing", 1 Or 64, "User Name Error")b. MsgBox("User name is missing", 0 Or 48, "User Name Error")d. MsgBox("User name is missing", 1 Or 16, "User Name Error")

What will be an ideal response?


Answer: D

Computer Science & Information Technology

You might also like to view...

Suppose an ArrayList list contains {"red", "red", "green"}. What is the list after the following code?

``` String element = "red"; for (int i = 0; i < list.size(); i++) if (list.get(i).equals(element)) { list.remove(element); i--; } ``` a. {"red", "red", "green"} b. {"red", "green"} c. {"green"} d. {}

Computer Science & Information Technology

Design the Add Customer Web page for Sludge’s auto. Include a profile that would allow Sludge’s to send the customer an email if a certain part becomes available.

What will be an ideal response?

Computer Science & Information Technology

Match each item with a statement below.

A. A connectionless protocol that uses IP to get packets from one computer to another. B. A connectionless protocol used for sending and receiving requests between the client and server on a network. C. A protocol used to generate IP error messages. D. A protocol used to send e-mail in user-level client applications. E. A virtual terminal protocol for connecting to a remote computer. F. A protocol used to map a fully qualified domain name with an IP address. G. A connection-oriented protocol responsible for keeping track of packets and reassembling them into a single file after they have all arrived. H. A protocol used to move files from one computer to another efficiently and accurately. I. A protocol that handles the delivery of data as packets.

Computer Science & Information Technology

The ____ coordinates the functions of various hardware components and determines the types and brands of application software you can use.?

A. ?virtual memory B. ?device driver C. ?platform D. ?form factor

Computer Science & Information Technology