Answer:
Yes, the purpose of a database in a way is to stop people from using spreadsheets but, it is also so much more.
Explanation:
<u>Databases</u> are a vastly improved form of a spreadsheet. They allow Computer Scientists to automatize a company's information. Giving them the ability to instantly add, retrieve, and modify specific information within a database of hundreds or even thousands of entries. All this with little or no human input. Thus saving a company time and money as opposed to using a regular spreadsheet which requires manual input from an employee.
I hope this answered your question. If you have any more questions feel free to ask away at Brainly.
Well, in texas the sales tax is 8.25%
So I'll use that example.
<span>(A)
</span>sales tax = 8.25% of $59.99
= (8.25/100) * $59.99
= $4.95
<span>
(B)
</span>Price with tax = selling price + sales tax
= $59.99 + $4.95
= $64.94
<span>
</span>
An "Address" record also know as "host" record
Answer:
All three of them are linear Data Structures.
A stack is a FILO(First In Last Out) or LIFO(Last In First Out) type data structure means first inserted element will be the last one to be removed form the stack.Insertion and Deletion is from one end only called head.
ex:-A stack of books on the shelf.
A queue is FIFO(First In First Out) type means the first inserted element will be the first one to be removed.In queue insertion is from the back or tail and removal of elements is done form the front.
ex:-A queue at the ticket counter.
In array each element stored is given an index, by which we can be access the element very easily. We can use this index to modify or store element at that index of the array. i.e any object can be accessed with the right index, unlike queue and stack.
We can access only the front and back in the queue.In stack we can access only the top but in array we can access any element with the index.