Answer:
The answer is "database"
Explanation:
The spreadsheet is an application program, that is used to organized, analysis, and store data in tabular format. It is also used to import data and provide a database in programming that is used to store data and other option is not correct that can be described as follows:
- Archive uses VBA that stands for "Visual Basic for Applications", it is used to store data in an archive file, that's why it is not correct.
- Document is a file that is used to store data, that's why it is not correct.
- Periodical use graph and bar charts to display data graphically, that's why it is not correct.
Answer:
See Explaination
Explanation:
SELECT TOP 10 VendorName AS Name, MAX(InvoiceDate) AS LastInvoice, SUM(InvoiceTotal) AS SumOfInvoices
FROM dbo.Vendors V JOIN dbo.Invoices I
ON V.VendorID = I.VendorID
WHERE PaymentDate IS NOT NULL
GROUP BY VendorName
ORDER BY SumOFInvoices desc;
Answer:
ROM (Acronym of Read-only memory. (video games))
Explanation:
REM PROGRAM TO DISPLAY AVERAGE OF TWO NUMBERS
CLS
INPUT “ENTER FIRST NUMBER”; A
INPUT “ENTER SECOND NUMBER”; B
INPUT “ENTER THIRD NUMBER”; C
AV = (A + B + C) / 3
PRINT “AVERAGE OF THREE NUMBERS”; AV
END
hope this helpz