The SQL is used to change a table's structure by:
The use of the SQL ALTER TABLE command.
<h3>How is it done?</h3>
The SQL ALTER TABLE command is known to be that which is often used to alter the structure of an existing table.
It is known to help one to be able to add or delete columns, make or destroy indexes, alter the kinds of existing columns, rename columns or the table itself.
Note that It can also be used to alter the comment for any kind of table and type of the table therein.
Learn more about SQL from
brainly.com/question/25694408
#SPJ1
Answer:
computer is used to create a voucher document
The statement that webrooming is when consumers physically inspect a product in a store to get a look and feel for it—and then buy it from an online store because it is cheaper to do so is false.
<h3>What is webrooming?</h3>
It should be noted that webrooming simply means the consumer practice for researching products online before buying theme in stores.
In this case, the main idea of webrooming isn't to buy it at stores because it's cheaper. Therefore, it's false.
Learn more about webrooming on:
brainly.com/question/14988432
#SPJ12
Answer:
#include <iostream>
using namespace std;
int main(){
float cookies=0;
float sugar=1.5;
float butter=1;
float flour=2.75;
cout<<"how many cookies do you want: "<<endl;
cin>>cookies;
float num = cookies/48;
cout<<num<<endl;
cout<< "to make " << cookies<<"cookies you need: "<<endl;
cout<<"sugar cups: "<<num*sugar<<endl;
cout<<"butter cups: "<<num*butter<<endl;
cout<<"flour cups: "<<num*flour<<endl;
return 0;
}