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”
 
        
             
        
        
        
It’s obviously C.Signaling your intent by using your blinkers also known as the lights at the back of your car!
        
                    
             
        
        
        
Answer:
- def Lambda(strList):
 -     return list(filter(lambda s: (s.startswith("e")), strList))
 - 
 - print(Lambda(["meaning", "cart", "engine", "egg"]))
 
Explanation:
The solution code is written in Python 3.
Lambda function is an anonymous function. It is a function without any name and it is started with keyword lambda. To write a lambda function to filter the string started with an 'e', we can write a lambda expression, s.startswith("e") that work on one input strList. If any word from strList started with letter "e", the word will be added into a list generated by filter function. At the end, the Lambda function will return the list of strings as output. 
When we test the Lambda function using the sample string list (Line 4), we shall get ['engine', 'egg'] printed to terminal.
 
        
             
        
        
        
Make your own name for your anime and your own powers it’s really not that hard bud
        
             
        
        
        
I guess the correct answer is the Enter key
Οn cοmputеr kеybοards, thе еntеr kеy in mοst casеs causеs a cοmmand linе, windοw fοrm, οr dialοg bοx tο οpеratе its dеfault functiοn. This is typically tο finish an "еntry" and bеgin thе dеsirеd prοcеss, and is usually an altеrnativе tο prеssing an ΟK buttοn.