The storage that is used to store data in the computer's memory that can be used by a program later when executing instructions is variables.
<h3>What is variables?</h3>
Variables can be defined as the way or process in which data or information are store in a computer memory.
Data or information that may likely change or be altered are often stores in a computer memory storage called variables and this store data can be retrieve later for use by a program when executing instruction on the computer system.
Inconclusion the storage that is used to store data in the computer's memory that can be used by a program later when executing instructions is variables.
Learn more about variables here:brainly.com/question/23931018
Answer:
ALTER TABLE Products
ADD Products_price float(5,2) DEFAULT 9.99,
ADD Adding_time datetime;
Explanation:
So at first we need to use ALTER TABLE statement, when we use this statement we also need to provide the table name. In this case, i assume it is 'Products'.
Then, as per question, we need to add two columns.
The first one is 'product_price' and it contains decimal points. So, we need to use ADD statement and give a column name like 'Prodcuts_price' and its datatype 'float' because it contains decimal or floating points. so, for 3 digits on the left and 2 digits on the right, it makes a total of 5 digits. So, we need to declare it like this. (5,2) it means a total of 5 digits and 2 after the decimal point. after that, we need to set our Default value using the DEFALUT statement. so DEFAULT 9.99. it will set the default value to 9.99 for existing products.
And for our next column, we give its a name like 'Adding_time' then it's datatype 'datetime' because it will contain date and times.
Answer:
Explanation:dhjyfxdhnjfddhjnvcdfg
The acceptable use policy is known to be a policy that is made up of practices that all its users need to agree to in order to be able to make use of such network or other resource.
The items are:
- Social media page .
- Internet address, applications.
- Accessing private or confidential information.
<h3>What is an acceptable use policy?</h3>
An acceptable use policy (AUP) is known to be document that is said to tell about the constraints as well as the practices that a user need to agree to be able to access a given corporate network or the Internet.
Therefore, The acceptable use policy is known to be a policy that is made up of practices that all its users need to agree to in order to be able to make use of such network or other resource.
Learn more about acceptable use policy from
brainly.com/question/2625500
#SPJ1