Describe Active Directory - what it is, what it contains, and how it is organized.

What will be an ideal response?


Active Directory is a database that is used to store information about resources such as user accounts, computers, and printers. It groups resources at different levels (hierarchies) for local and universal management. Active Directory also provides a centralized means to quickly find a specific resource through indexing.

Computer Science & Information Technology

You might also like to view...

Suppose list is a LinkedList that contains 1 million int values. Analyze the following code:

``` A: for (int i = 0; i < list.size(); i++) sum += list.get(i); B: for (int i: list) sum += i; ``` a. Code fragment A runs faster than code fragment B. b. Code fragment B runs faster than code fragment A. c. Code fragment A runs as fast as code fragment B.

Computer Science & Information Technology

Explain how access control lists might be implemented.

What will be an ideal response?

Computer Science & Information Technology

Which of the following do you use when you want a user to jump to different parts of your video?

A. Scenes B. Navigation points C. Hyperlinks D. Multi-state objects

Computer Science & Information Technology

Out of the striping options available for the EBS volumes, which one has the following disadvantage : 'Doubles the amount of I/O required from the instance to EBS compared to RAID 0, because you're mirroring all writes to a pair of volumes, limiting how much you can stripe.' ?

A. Raid 5 B. Raid 6 C. Raid 1 D. Raid 2

Computer Science & Information Technology