<span>B. They provide viewers with a consistent visual reminder of their company.
This is a prevalent example of branding.</span>
        
             
        
        
        
True.
A conscise and informative subject line is necessary for a good email. The subject line should give the receiver a good idea what the topic is of the email. An informative subject line also helps the recipient to identify the email as an important message and not spam.
 
        
             
        
        
        
1 is A
2 is probably C or B but I don't use Unity so I can't help much with that one.
 
        
             
        
        
        
TThe while loop keeps going until count is greater than or equal to 10. 
count = 0, sum = 0
count = 2, sum =2
count = 4, sum = 6
count = 6, sum = 12
count = 8, sum = 20
count = 10, sum = 30
Now that count is equal to 10, it exits the while loop and the program ends. The values above complete your trace table.