Answer:
To create a console that is suitable for children and families. 
 
        
                    
             
        
        
        
Answer:
=(A4+B4+C4+D4+E4)/5
Explanation:
If we want to have the average of the passengers, first we must sum all the revenue and then divide it with passenger quantity.
In this particular example, I made the formula with 5 passengers, I sum the 5 revenues and then I divide with 5 passengers if there are more passengers we must sum all of them, and divided all of them, for example:
=(A4+B4+C4+D4+E4+F4)/6
 
        
             
        
        
        
Answer:
a store owner would calculate a mean to see the how much a person spends
Explanation:
 
        
             
        
        
        
Answer:
d) consumer misbehavior
Explanation:
This is an example of consumer misbehavior. What Lena is doing is not technically piracy or illegal because HBO has created the family feature on their accounts for the account to be used by multiple people at the same time. Yet, the feature was not intended to be used by individuals that are not technically family or even under the same roof. Therefore, what Lena is doing goes against HBO's reason for this feature and sharing the account as Lena is doing is ultimately hurting HBO's streaming service.
 
        
             
        
        
        
Answer:
\n
Explanation:
readline() method is used to read one line from a file. It returns that line from the file.     
This line from the file is returned as a string. This string contains a \n at the end which is called a new line character. 
So the readline method reads text until an end of line symbol is encountered, and this end of line character is represented by \n.
For example if the file "abc.txt" contains the lines:
Welcome to abc file.
This file is for demonstrating how read line works.
Consider the following code:
f = open("abc.txt", "r")  #opens the file in read mode
print(f.readline()) # read one line from file and displays it
The output is:
Welcome to abc file.      
The readline() method reads one line and the print method displays that line.