The last one is audio, the third one is animation and the first one is graphics so
        
                    
             
        
        
        
Answer:
a) to persuade 
she is doing this to propose an idea to the boss of the company
 
        
                    
             
        
        
        
Hi! 
The 2016 Olympics took place from August 5th, 2016 - August 21st, 2016.
        
                    
             
        
        
        
Try linking an email to your account, if it doesn’t work select forgot your password and you should receive an email where you can re make or change your password to something easier to remember. Are you using the same email account every time, this may also be the reason, if it is the same email they will not allow you to reuse it and it should tell you the email is already in use. Hope this helped
        
             
        
        
        
Answer:
public: virtual void print()=0;
Explanation:
An abstract class contains a pure virtual function. Pure virtual class cannot be instantiated but it can be subclassed and the subclass can provide an implementation of the function.
A virtual function declaration in the class is preceded by the virtual keyword. For example, virtual void print();
A pure virtual function declaration is followed by '=0;'
public: virtual void print()=0;