Answer:
Microsoft Excel
Explanation:
Microsoft Excel is a Microsoft application package. It is a spreadsheet application used to analyse and manipulate data. It has columns which are referred to fields and rows also known as records.There are various features in excel that used to create statistical and graphical esctasies and data presentations.
It can be used to create template for CVs/resumes, Bank draft, receipts and invoice etc.
Answer:
i believe background lighting
Answer:
c)Banana * daco;
Explanation:
To declare an variable pointer we use * symbol after writing it's type.For example int *.Then we write the name of the variable since the name of the variable is daco.The class is a user defined data type so instead of writing any data type we will write class name then the * then name of the variable.
Banana * daco; which matches the option c Banana* daco;
Answer:
quicksort.cpp
void quickSort(int arr[], int left, int right) {
int i = left, j = right;
int tmp;
int pivot = arr[(left + right) / 2];
/* partition */
while (i <= j) {
while (arr[i] < pivot)
i++;
while (arr[j] > pivot)
j--;
if (i <= j) {
tmp = arr[i];
arr[i] = arr[j];
arr[j] = tmp;
i++;
j--;
}
};
/* recursion */
if (left < j)
quickSort(arr, left, j);
if (i < right)
quickSort(arr, i, right);
}
Answer:
XaaS
Explanation:
XaaS combines one or three main services in cloud computing, which are SaaS, IaaS, and PaaS. XaaS is a service not commonly used but is emerging quick and fast. XaaS is often generalized as a term that means the delivery of “anything-as-a-service.” Rather than providing solutions locally within a company, XaaS uses cloud computing technology to offer services. Xaas includes anything from an organization renting computing solutions over the internet through the cloud to a web programmer opening up an editor in his browser without the need to install the editor on his computer. Services ordered over the internet and purchased according to the needs of the consumer is referred to as XaaS.