Circled plus sign adds another worksheet
        
             
        
        
        
Answer:
In Python:
import os.path
from os import path
fname = input("Filename: ")
if path.exists(fname):
 with open(fname) as file_in:
  lines = []
  for line in file_in:
  	lines.append(line.rstrip('\n'))
 f = open("stat.txt","r+")
 f.truncate(0)
 f = open("stat.txt", "a")
 f.write("Names\tTotal\tSubjects\tAverage\n")
 for i in range(len(lines)):
  rowsum = 0; count = 0
  nm = lines[i].split()
  for j in nm:
  	if (j.isdecimal()):
    count+=1
    rowsum+=int(j)
  average = rowsum/count
  f.write(nm[0]+"\t %3d\t %2d\t\t %.2f\n" % (rowsum, count, average))
 f.close()
else:
 print("File does not exist")
Explanation:
See attachment for explanation where comments were used to explain each line
 
        
             
        
        
        
I would say A. She reads the entire paragraph, then rewrites it in her own words, and then checks to make sure her version is not too similar to the text from the article. 
All the other ones are a little too obvious.
Hope this helps you, baii <33
        
                    
             
        
        
        
<span>He served from 2000-2007 as chairman of the board of the Internet Corporation for Assigned Names and Numbers (ICANN), an organization he helped form. </span>Cerf<span> is the co-designer of the TCP/IP protocols and the architecture of the </span>Internet<span>.</span>