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.
 
        
             
        
        
        
the following C++ function will return true if the given non - negative number is multiple of 5 or 3 else it will return false.
bool function( int x ){
// variable to check if it is multiple of both or not
int number =0;
if(3%x == 0){
number++;
}
if(5%x == 0){
number++;
}
// Now returning by deciding 
if( number <=1)
 return true;
else
return false
}
 
        
             
        
        
        
VIRUS I SERIOUSLY DONT KNOW THOUGH
        
             
        
        
        
Nand stands for "not and". The truth table for a nand is:
a b | a nand b
0 0 |      1
0 1 |      1
1 0 |      1
1 1 |      0
Hopefully this helps you answer your question.
        
             
        
        
        
Salutations!
<span>Which is an example of fixed expense?
Rent is an example of fixed expense, It doesn't matter whether you sell a widget or produce thousand of them, you must still pay the rent in any </span><span>circumstances.
</span>
Hope I helped.