The tab key moves the cursor to the next field in the tab order, which is set by the programmer.
Answer: (C) Response controls
Explanation:
According to the given question, the response control is not the necessary element while handling the users or customer data as compared to all the other given options that is individual participation, data minimization and the purpose specification.
- The response control is basically used for exchange the data or any information in an organization but the main disadvantage is that they share all the response and information as they not wait for the request from the users.
- The all the three other given options expect response control are the important element for handling the customer data as it helps in maintaining the Personal information.
Therefore, Option (C) is correct answer.
RAM stands for Random Access Memory
ROM stands for Read Only Memory
Computers need RAM because RAM is the place in the computers, where the operating system, application programs, and data (in current use) are stored that way the computers processor can easily reach it. ROM is memory that can not be changed by a program or the user. ROM has its memory even after it is turned off. ROM is an example of telling your computer how to start up.
Sorry that was kinda long. Hope this helps you out! Have an AWESOME rest of your day!
Answer:
Algorithm:
1. Declare variables "cost","state_tax" and "federal_tax".
2.Initialize these variables.
3.Create a variable "cust_money".
3.1 Ask user to give money.
3.2 Assign this to "cust_money".
4. Calculate total_tax=state_tax+federal_tax
4.1 Calculate total_to_be_paid=cost(1+total_tax)
5. Calculate change_to_give= cust_money-total_to_be_paid
6.Print the change_to_give
7. End the program.
Explanation:
Declare variables and initialize "cost" with initial cost of item, "state_tax" with state tax and "federal_tax" with federal tax on the item. Ask user to give money and assign it to "cust_money". calculate the total tax=state+federal tax. Then calculate the total to be paid for item as cost*(1+total tax). Subtract the total paid from customer money and print the change to give user.