When a document repository is down when you attempt to access it, the ISA principle Authentication is being violated. The authentication method is done during the log on phase and is performed by the ISA server which requests certificate. <span>The client then needs to send the appropriate client certificate to the server in order to be authenticated and to have access to the document.</span>
        
             
        
        
        
Kobe was the best basketball player R.I.P
 
        
             
        
        
        
Answer:
Step 1  - Open the View tab.
Step 2 - Open the Page Setup dialog box
Step 3 - Open the header and footer tool.
Step 4 - Click OK.
Explanation:
In order to access to the header and footer tools
Step 1  - Open the View tab.
Step 2 - Open the Page Setup dialog box
Step 3 - Open the header and footer tool.
Step 4 - Click OK.
 
        
             
        
        
        
The answer is B) A test team will test the software more thoroughly
        
             
        
        
        
Answer:
Explanation:
Let's do this in Python, first we need to convert the number into string in order to break it into a list of character, then we can replace the kth character with d. Finally we join all characters together, convert it to integer then output it
def setKthDigit(n, k, d):
 n_string = str(n)
 d_char = str(d)
 n_char = [c for c in n_string]
 n_char[k] = d_char
 new_n_string = ''.join(n_char)
 return int(new_n_string)