First questions Flashcards
Explain in windows DNS server what is Primary, Secondary and Stub zone?
Primary Zone:
In this, the file is saved as normal text file with filename (.dns)
Secondary Zone:
It maintains a read-only copy of zone database on another DNS server. Also, it acts as a back-up server to the primary server by providing fault tolerance and load balancing
Stub Zone:
It consists of a copy of name server and SOA records which is used for reducing the DNS search orders.
What is Intellimirror?
User data management, software installation and maintenance
What is MSI.dll?
File used for Windows to install components. Errors can occur during app installation.
Explain what is the primary function of the domain controller?
Primary function of the domain controller is to validate users to the networks, it also provide a catalog of Active Directory Objects.
Explain what is the way to configure the DHCP server such that it allocates the same IP address to certain devices each time the address is removed?
To configure the DHCP server, you can create a reservation for the device. To create a reservation, you must know the MAC hardware address of the device. To determine the MAC address for a network device you can use the ipconfig or nbs tat command line utilities.
Explain what is the difference between a thread and a computer process?
Computer Process: In computing, a process is an instance of a computer program that is executed sequentially by a computer system which can run several computer programs concurrently.
Thread: A thread is a several executable program that work together as a single process. For instance, one thread might send an error message to the user; another might handle error signals while the third thread might be executing the original action.
Explain what is INODE?
INODE holds the metadata of files; INODE is a pointer to a block on the disk, and it is unique.
In simple words, it is a unique number allocated to a file in UNIX-like OS.
Explain what is RAID?
Redundant Array of Independent Disks.
It is a strategy for building fault tolerance and increase the storage capacity. On separate drives it allows you to combine one or more volumes so that they are accessed by a single drive letter
How would you connect Active Directory to other third party directory services?
LDAP
Explain what is the major difference between NTFS ( New Technology File System) or FAT (File Allocation Table) on a local server?
For local users FAT (File Allocation Table) and FAT32 provides security, while NTFS ( New Technology File System) provides security for domain users as well as local users. NTFS provides file level security which is not possible through FAT32.
What are the three states of processes?
running, ready, or waiting.
A process
Waiting, Vs. Ready states of processes
Waiting: Waiting for some external event to occur such as user input or a disk access) Ready state (i.e., waiting for permission to use the processor)
What is a thread?
A thread is a single sequence stream within in a process.
What is deadlock?
Deadlock is a situation when two or more processes wait for each other to finish and none of them ever finish.
What are the necessary conditions for deadlock?
Mutual Exclusion: There is a resource that cannot be shared.
Hold and Wait: A process is holding at least one resource and waiting for another resource which is with some other process.