Answer:the first IP when the traceroute is started is our IP. It is our private IP which is displayed because it is the first hop for the tracing of the route. Hence, our IP is shown in the first statement.
Explanation:
Based on the above, The two types of record access can the administrator grant are:
C. Read/Write
D. Read Only
<h3>What is read write access?</h3>
This is seen as a kind of device that can both act as a kind of input and output or moves and receive.
Note that it is also seen as digital file that can be updated and deleted and therefore, Based on the above, The two types of record access can the administrator grant are:
C. Read/Write
D. Read Only
Learn more about record access from
brainly.com/question/8798580
#SPJ1
// writing c++ function
int maximum ( int a , int b){
if(a>b)
return a;
else
return b;
}
//when this function will be called it will return the max of the integers sent.
//for example
int max = maximum ( 3,4)
//max variable will have 4 returned by the function