In a discretionary access control model, who is in charge of setting permissions to a resource?
A. Owner of the resource
B. Administrator
C. Any user of the computer
D. Administrator and the owner
A. In the discretionary access control model (DAC), the owner of the resource is in charge of setting permissions. In a mandatory access control model, the administrator is in charge.
You might also like to view...
Use the ________ property along with the left, right and/or top property to precisely configure the position of an element.
a. position: absolute; b. position: relative; c. position: float; d. absolute: position;
Which of the following will check to see if a password contains a # sign, given that the character code for "#" is 37? The password is 8 characters long and is stored in a variable named pword.
a. ``` var check = false; for (j = 1; j < 7; j++) { if (pword.charCodeAt[j] == 37); check = true; } ``` b. ``` var check = false; for (j = 0; j < 8; j++) { if (pword.charCodeAt(j) == 37) check = true; } ``` c. ``` var check = false; for (j = 0; j <= 8; j++) { if (pword.charCodeAt()== 37) check = true; } ``` d. ``` var check = true; for (j = 1; j < 9; j++) { if (pword.charCodeAt(37)== "#") check = true; } ```
The ____ Tool lets you repair imperfections within a selected area using pixels from another area or by using a pattern.
a. Pattern b. Patch c. Clone d. Repair
How would you add a date filter to a PivotTable with these fields: Date, Category, Item, Unit Price, Number Sold, and Extended Price?
A) You must use a slicer with dates. B) drag Date to the ROWS area and group it. C) drag the Date field to the FILTERS area. D) remove Date from any PivotTable area