The answers are /var/lib/dhcpd/dhcpd.leases & /var/lib/dhcpd/dhcpd6.leases
In order to look up ipv4 and ipv6 dhcp leases, The two files that should be viewed are /var/lib/dhcpd/dhcpd.leases & /var/lib/dhcpd/dhcpd6.leases
Answer:
The answers are: it is used to enable fast DNS queries and It can help reduce the amount of network traffic generated by DNS servers.
Explanation:
Because a DNS server can resolve a query from tis local data sends a recursive qyery to a root server.
Answer:
Name.
Explanation:
The constructor in the class must have the same name as the class.Constructors are used to initialize the object when created.There are basically three types of constructors which are as following:-
- Default Constructor.
- Parameterized Constructor.
- Copy Constructor.
Default Constructor:-This constructor is already present in the class when the class is defined.It does not have any arguments.
Parameterized Constructor:-As the name suggests this constructor have parameters that are used to initialize the object.
Copy Constructor:-This constructor is called whenever an object is copying the values of other object.For example:-
There is already an object present with name obj1.
class obj2=obj1;