Which DNS zone category contains PTR records that map IP addresses to names and is named after the IP network address of the computers whose records it contains?
A. Primary zone
B. Forward lookup zone
C. Secondary zone
D. Reverse lookup zone
Answer: D
You might also like to view...
When setting up an Office 365 account for a business, the person who creates and manages the account is designated as the Office 365 ________
Fill in the blank(s) with correct word
In ____ computer science, researchers study the logical and mathematical properties of problems and their solutions.
A. theoretical B. scientific C. practical D. logical
int [ ] anArray = new int [10];int [ ] anotherArray = {6, 7, 4, 5, 6, 2, 3, 5, 9, 1}; How could all values of anotherArray be totaled?
A. foreach(int val in anotherArray) total += val; B. for (int i = 0; i < anotherArray.Length; i++) total += anotherArray; C. Array.Sum(anotherArray) D. all of the above
Declarations with _____ scope can be referenced throughout the schema file.
A. global B. local C. wide D. full