What is the value of the MsgBoxStyle.OKCancel?

A. 0
B. 1
C. 2
D. 3

Answer: B

Computer Science & Information Technology

You might also like to view...

When you remove someone from your friends list, you defriend him or her

Indicate whether the statement is true or false

Computer Science & Information Technology

Given that Marcy worked 42 hours (Hours = 42) last week and earns $10.00 an hour (Rate = 10), how much did Marcy earn last week, before taxes (TotalPay)?

```If (Rate >=10) AND (Hours <=40) Then TotalPay = Hours * Rate Else TotalPay = (40 * Rate) + (Hours – 40) * Rate * 1.5 End If``` a. $ 500 b. $ 420 c. $ 430 d. $ 650

Computer Science & Information Technology