C. schedule.
Outlook adds your appointment to your schedule folder.
data declaration means a variable which contain data value and it can be declared as integer, float, character, double, boolean (data types).
example:
int r;
char name;
float g;
double k= 23.34;
Answer: c) Return on investment (ROI)
Explanation:
Return on investment (ROI) is defined as term that measures the performance of single investment efficiency or numerous investment plans. It evaluates and assess plan of investment in form of ratio or percentage.
- Return of investment(ROI) plan is calculated through dividing the return of investment by investment cost.
- Other options are incorrect because cash return on capital invested ,carried forward(CF) and BI (business intelligence) are not used for calculating the investment plan through cost and benefit.Thus, the correct option is option(c)
Answer:
def corresponding_of_lists(lst1, lst2):
c = ""
corresponding_list = []
if (lst1 is None) or (lst2 is None):
return None
else:
for i in lst1:
for j in lst2:
c = "(" + str(i) + "," + str(j) + ")"
corresponding_list.append(c)
return corresponding_list
Explanation:
- Create a function called corresponding_of_lists that takes two lists as parameter
- Initialize an empty list to hold the corresponding values
- Check if any of the lists are null, if they are return None
- Otherwise, get the corresponding elements and put them into the corresponding_list
Return the corresponding_list