Q. | What is the proper syntax when using a message dialog box? |
A. | messagebox.show(“hi there”, “hi”) |
B. | messagebox.show(hi there, hi) |
C. | messagebox.show “hi there”, “hi” |
D. | messagebox.show hi there, hi |
Answer» a. messagebox.show(“hi there”, “hi”) |
Discussion