Answer:
in Google type play Store and you will get the app and then click on that word install and it will get installed 
Explanation:
hope this helps 
 
        
             
        
        
        
guess its d drivers , since u said wen it gets outdated
 
        
                    
             
        
        
        
Answer:
- def getLargest(number_list):
 -     new_list = []
 - 
 -     for x in number_list:
 -         if(isinstance(x, int)):
 -             new_list.append(x)
 - 
 -     largest = max(new_list)
 - 
 -     return largest  
 
Explanation:
Firstly, create a function <em>getLargest()</em> that take one input parameter, <em>number_list</em>. 
The function will filter out the float type number from the list by using <em>isinstance() </em>method (Line 5). This method will check if a current x value is an integer. If so, the x value will be added to <em>new_list</em>. 
Next, use Python built-in <em>max</em> function to get the largest integer from the <em>new_list </em>and return it as output.
 
        
             
        
        
        
Answer:
The answer is Hub
Explanation:
A hub, also called a network hub, is a common connection point for devices in a network. Hubs are devices commonly used to connect segments of a LAN. The hub contains multiple ports. When a packet arrives at one port, it is copied to the other ports so that all segments of the LAN can see all packets.