Q:
Abby has received a request for a data set of actual data for testing a new app that is being developed. She does not want the sensitive elements of the data to be exposed. What technology should she use?
A:
Masking
 
        
             
        
        
        
Answer:
The program written in Python is as follows:
<em>See Explanation section for line by line explanation</em>
for n in range(100,1000):
      isum = 0
      for d in range(1,n):
            if n%d == 0:
                  isum += d
      if isum == n * 2:
            print(n)
Explanation:
The program only considers 3 digit numbers. hence the range of n is from 100 to 999
for n in range(100,1000):
This line initializes sum to 0
      isum = 0
This line is an iteration that stands as the divisor
      for d in range(1,n):
This line checks if a number, d can evenly divide n
            if n%d == 0:
If yes, the sum is updated
                  isum += d
This line checks if the current number n is a double-perfect number
      if isum == n * 2:
If yes, n is printed
            print(n)
<em>When the program is run, the displayed output is 120 and 672</em>
 
        
             
        
        
        
Answer:
true
Explanation:
when you pause a recording it will temporarily stop but, when you hit record again it will continue where you left off
 
        
             
        
        
        
Answer:
Argument
Explanation:
<u>Argument</u> - A set of connected ideas, supported by examples, made by a writer to prove or disprove a point.
 
        
                    
             
        
        
        
Communication comes in lots of types, therefore, it also has lots of goals and purposes. One of the purpose of communication is to satisfy instrument goals. Instrument goals here refers to the goal that focuses on convincing others to act in an appropriate way. This is most applicable in situations when someone had to deal with others.