Answer:
telnet
Explanation:
<h2><u>Fill in the blanks </u></h2>
Terminal emulation, especially the unprotected <u>telnet </u>protocol, should be blocked from any access to all internal servers from the public network.
 
        
             
        
        
        
Answer:
#include <stdio.h>
void printValues ( unsigned char *ptr, int count) // count is no of cells
{
  for(int i=0; i<count; i++) {
    printf("%d ", ptr[i]);
  }
}
int main ( )
{
  unsigned char data[ ] = { 9, 8, 7, 5, 3, 2, 1} ;
  printValues( data, sizeof(data)/sizeof(data[0]) );
}
Explanation:
Remember that the sizeof() mechanism fails if a pointer to the data is passed to a function. That's why the count variable is needed in the first place.
 
        
             
        
        
        
D. Rasterize
This answer makes the most since
        
                    
             
        
        
        
Answer:
# Code in Python
dictionary={'A':1,'B':2,'C':3,'D':4} 
other_dictionary={}
for keys in dictionary:
if dictionary[keys]&1==1: 
temp=dictionary[keys]*dictionary[keys]-10*10
other_dictionary[keys]=temp
else:
other_dictionary[keys]=dictionary[keys]
print(other_dictionary)  
assert other_dictionary
Explanation:
- Initialize a sample example dictionary  and other_dictionary.
- Do a binary comparision for checking odd number
.
- Update the the value stored in the dictionary to store the squared difference of the original value and '10'.
- For even: store the original value (from dictionary).
 
        
             
        
        
        
Answer:
The statement is as follows:
print("{0:,.1f}".format(number))
Explanation:
Required
Statement to print 1234567.456 as 1,234,567.5
To do this, we make use of the format keyword, and we set the print format in the process.
To round up number to 1 decimal place, we use the following format:
"{0:,.1f}"
To include comma in the thousand place, we simply include a comma sign before the number of decimal place of the output; i.e. before 1
"{0:,.1f}"
So, the print statement is:
print("{0:,.1f}".format(number))