<u>Answer:</u>
<em>Newspapers</em>
<u>Explanation:</u>
<em>The process of giving advertisement is one way to promote product. A product become famous only because of advertisement only. </em>
Business people spend lots of money in advertisements so that in turn it would give good returns. <em>It is not necessary that always advertisement has to be given for all the product</em>.
Mostly new products needs mobilization, next during festivals the dress <em>purchase will be heavy so people will get attracted towards it and buy in the shop which advertises, etc.</em>
Answer:
edit filter query
Explanation:
plz give branilest hope this helps
Answer:
The very first command contains an error.
Explanation:
The create query is used to create the table in the database. The syntax of the create query is :
create table tablename(column1 datatype,column2 datatype ........columnn datatype);
So there is a keyword table is missing in the given query.
so it is incorrect query.
INSERT INTO vehicletype VALUES (1,"truck","Ford",2000); This query is correct.
SELECT * FROM vehicletype; This query is also correct.
Answer:
work with numbers and text.
Explanation:
Spreadsheets can help organize information, such as alphabetizing a list of names or ordering records, and calculate and analyze information using mathematical formulas.
Answer:
A data structure if I'm correct.
Explanation:
The computer would need to know when one command is over, as you can write code like this,
ellipse(20, 20, 20, 20);fill(255, 0, 240);
and without the semicolon it would end up looking like this,
ellipse(20, 20, 20, 20)fill(255, 0, 240)
and the computer would not know when you've stopped creating the circle and when you've started to color it.