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: A search engine normally consists of four components e.g. search interface, crawler (also known as a spider or bot),indexer, and database. The crawler traverses a document collection, deconstructs document text, and assigns surrogates for storage in the search engine index.
Explanation:
Spanish is the most language spoken in the highschool
Answer:
hixiysk. cuxhuzig u gufx6cugx6rzutze5zx7fh ug. guxt u ghost I s u gzuz6rc7fc7x6rx
Answer:
this solution was written in c programming language
Explanation:
#include <stdio.h>
int main(void)
{
int i, j, number;
/* ask user for numbers */
printf("Enter 5 numbers between 1 and 30: ");
/* repeat 5 times */
for (i = 0; i < 5; i++)
{
/* read in number */
scanf("%d", &number);
/* print that number of stars */
for (j = 0; j < number; j++)
{
printf("*");
}
/* bring cursor to next line */
printf("\n");
}
return 0;
}