Answer:
In Python:
def sumLastPart(n,thelist):
    sumlast = 0
    lent = len(thelist)
    lastN = lent - n
    for i in range(lastN,lent):
        sumlast+=thelist[i]
    return sumlast
Explanation:
This defines the function
def sumLastPart(n,thelist):
This initializes the sum to 0
    sumlast = 0
This calculates the length of the list
    lent = len(thelist)
This calculates the index of the last n digit
    lastN = lent - n
This iterates through the list and adds up the last N digits
<em>    for i in range(lastN,lent):</em>
<em>        sumlast+=thelist[i]</em>
This returns the calculated sum
    return sumlast
 
        
             
        
        
        
Answer: Configure a response for external senders.
Explanation:
Since Kylee wants to ensure that when a particular client sends her an email while she is on vacation, then the email will be forwarded to a coworker for immediate handling, then she should configure a response for external senders.
It should be noted that the response will not be configured for internal senders as it isn't from a co-worker but rather meant for a client. Therefore, the correct option is A.
 
        
             
        
        
        
Answer: C. Semantic Search Engines
Explanation: 
Semantic search is simply search with meaning. It is designed to locate information based on the nature and meaning of Web content, not simple keyword matches (like in lexical searches)
 
        
             
        
        
        
Answer:
warehouse
Explanation:
A bit similar to a database, a data warehouse is a collection or large store of data from different sources that businesses and organization can use to make intelligent business decisions. The data sources for a data warehouse are typically databases from different vendors and architectures.
Data warehouses are typically data repositories used by organizations for data analysis and reporting purposes. 
 
        
             
        
        
        
Answer:
In Python:
numberOfWholeSlices = int(22/7)
print(numberOfWholeSlices )
Explanation:
For each friend to get a whole number of slices, we need to make use of the int function to get the integer result when the number of slices is divided by the number of people.
So, the number of slice is: 22/7
In python, the expression when assigned to numberOfWholeSlices  is:
numberOfWholeSlices = int(22/7)
Next, is to print the calculated number of slices
print(numberOfWholeSlices )