Answer:
right click cell C6 then insert entire column. 
Type "Series Name"
Insert function to C7 = VLOOKUP (B7,$A$2:$B$4,2,FALSE)
Copy through C22
Select the range then select format and column width to change the width to 18.
 
        
             
        
        
        
with open('celcius.dat', 'r') as fIn, open('fahrenheit.dat', 'w') as fOut:
    for line in fIn:
        fahrenheit = 9.0 / 5.0 * float(line) + 32
        fOut.write("%.1f\n" % fahrenheit)
You can control the number of decimals in the formatting clause in the write statement.
 
        
             
        
        
        
Answer:
d. ICMP Echo Reply (type 0)
Explanation:
ICMP or internet control message protocol is an Internet layer protocol in the TCP/IP suite. It works together with routing devices like the router to send messages based on results sensed in the network.
The RFC 1122 has stated that the ICMP server and end user application be configured or installed in user devices, for receiving and sending ICMP echo request packets and reply. The process is called pinging.
For an attacker to implement ping of ping, he needs to confirm if the target user in live by sending an ICMP echo request packet type 8, to receive an ICMP echo reply type0.
 
        
             
        
        
        
Answer:
my dog chewed up the couch
Explanation:
 
        
                    
             
        
        
        
Answer:
Columns 
Explanation:
A spreadsheet may a explained as a tabular arrangement or arrays of cells which allows users to enter both numeric and string data for storage, manipulation and analysis. The spreadsheet program has both the vertical and horizontal cell arrangement with the vertical areas being reffered to as THE COLUMN which are labeled using alphabets arranged from A - AZ, AA - AZ, and so on to make up a total of 16384 columns on the Microsoft Excel spreadsheet program. Cells are located using a combination of column and row address. With row representing the horizontal area of the spreadsheet and labeled with digits. Therefore cells are usually refereed to as A1, (column A row 1) and so on.