When a GUI element (such as a Button) should no longer be accessible by the user, it should be .
a) deleted
b) hidden
c) disabled
d) All of the above.
c) disabled
Computer Science & Information Technology
You might also like to view...
When you purchase software in a box, reading the ________ is important to know if the software will function properly
A) system requirements B) shareware requirements C) EULA D) SaaS
Computer Science & Information Technology
What is accomplished by the call to sprintf in the code fragment below?
``` char ans[20]; int num = 40; sprintf(ans, "%d to %d", num, num + 10); ``` a. Nothing, the function name is misspelled. b. It returns as its value the string "40 to 50". c. It displays first the value of ans and then the string "40 to 50" (without the quote marks). d. It aborts because the value of ans is garbage. e. None of the above.
Computer Science & Information Technology