Answer:
The TAB key
Explanation:
Sam would use the TAB key, located on the left side of the keyboard, to move around his document to add stops and format its information properly.
Pressing the TAB key will introduce a tab code in his document, which is like moving ahead by a certain number of spaces (5,6, 10 spaces for example, depending on the configuration of the document), but without using spaces, using a tab which is a much better option to position, align things up.
 
        
             
        
        
        
Answer:
public class Main
{
 public static void main(String[] args) {
     int carYear = 1995;
     
     if(carYear < 1967)
         System.out.println("Probably has few safety features.");
     if(carYear > 1971)
         System.out.println("Probably has head rests.");
     if(carYear > 1992)
         System.out.println("Probably has anti-lock brakes.");
     if(carYear > 2002)
         System.out.println("Probably has tire-pressure monitor.");
     
 }
}
Explanation:
The code is in Java.
Initialize the carYear
Use if statements to handle year before 1967, after 1971, after 1992 and after 2002. 
Print the required message for each if statement
 
        
             
        
        
        
Answer:
C. Accept the risk
Explanation:
The first option is close but might not be suitable for a small company considering it's cost.
The second option which is to spend fifty thousand dollars per year on a data loss prevention solution is projected to cost you more than the risk. 
The third option isn't specific and lacks a course of action.
 
        
             
        
        
        
Answer:
computer virus is an spreading disease in a computer 
Explanation
a virus can be spread through many ways by servers , wifi ,and the cloud
so its better to have an safe and secure firewall by your domain or you could use cloud computing to test viruses
it also can spread pretty fast so u better have a good antivirus
 
        
             
        
        
        
Answer:
To see who reads the file, open “Windows Event Viewer”, and navigate to “Windows Logs” → “Security”. There is a “Filter Current Log” option in the right pane to find the relevant events. If anyone opens the file, event ID 4656 and 4663 will be logged.