You need to see an image, but here's some possible answers.
operating system.
program.
spreadsheet.
freeware.
groupware.
shareware.
application software.
bundled software.
software system. ...
package. ...
sofware (related) ...
hardware (related) ...
software program. ...
software-hardware (related) ...
pc-based (related)
<h2><u><em>
Bryannasalaz</em></u></h2>
 
        
             
        
        
        
Answer:
Split Infection
Explanation:
In the split infection technique, each time the file is opened either by the user or the system operating system, the virus copy itself into another file on the same system and unload malicious payloads to perform some actions. While this is ongoing, the virus erase file from the user hard drive and might even go as formatting the hard disk drive.
 It should be noted that the virus cannot transfer itself from one computer to another
 
        
             
        
        
        
I am deeply sorry for the experience that you have received, I am disappointed in myself for letting this happen. If it would be possible I would like to make it up to you. Again, I am deeply sorry that this happened. 
Sincerely *enter full name*
I am not sure if you have any multiple choice options but I hope this works xx
        
             
        
        
        
convention writing is beneficial to public speaking because writing conventions such as spelling,punctuation,capitalization and grammar help make a student content clear and understandable audience can finish reading without having to stop to try to figure out what was actually intended,the value of learning these writing becomes clear.<span />
        
                    
             
        
        
        
Answer:
Hi there Foodalexandre! The question is good to revise knowledge on the concepts of classes and inheritance. Please find the answer with explanation below.
Explanation:
We can use a number of different object-oriented programming languages to implement this solution in, such as Java, C++, Ruby, etc. I have chosen to use Python as the language to implement because of the ease with which it can be used. First, I have defined the Vehicle class based on the description from the question, where the constructor (the __init__ method) initializes the door count and the engine sound, and the original Move() method belonging to the Vehicle class is defined. Then I define the Car class which inherits from the Vehicle class making it inherit the Vehicle properties, and initialize the Car class to have door count of 4 and engine sound as 'rrrrrr'. Defining the Move() method again in the Car class overrides the one in the Vehicle class, and the RoadTrip() method is added to return the string as requested in the question.  
class Vehicle(object):   
  def __init__(self, door_count, engine_sound):     
    door_count: door_count      
    engine_sound: engine_sound    
  def Move()
:
    return ‘rrrrrr’  
class Car(Vehicle):   
  def __init__(self, door_count, engine_sound):     
    super().__init__(4, ‘rrrrrr’)   
  def Move():     
    return ‘vrumm’    
  def RoadTrip()
:    
    return “Not a care in the world”