A process that defines what the user is permitted to do is known as __________.
A. identification
B. authorization
C. accountability
D. authentication
Answer: B
You might also like to view...
Which one of these principles is not required to define an object oriented language?
A. polymorphism B. inheritance C. multi-dimensional arrays D. data hiding
Journaling file systems reduces the likelihood of file corruptions.
a. true b. false
Critique the design of the dialog box below (DTUI6 Fig. 8.19) in the text. This dialog box is used to alert clinicians who try to prescribe the drug Warfarin, because it increases the risk of bleeding in patients already on Aspirin.
What will be an ideal response?
What will be the value of bonus after the following statements are executed?
``` int bonus, sales = 10000; if (sales < 5000) bonus = 200; else if (sales < 7500) bonus = 500; else if (sales < 10000) bonus = 750; else if (sales < 20000) bonus = 1000; else bonus = 1250; ``` a. 750 b. 1250 c. 500 d. 1000