<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:
Written in Python
for count in range(88, 42,-2):
print(count,end=' ')
Explanation:
The programming language is not stated.
However, I used python to answer the question.
First, we need to loop from 88 to 44 with a difference of -2 in each term.
This is implemented as
for count in range(88, 42,-2):
Which means to start at 88 and ends at 42 - (-2) which is 44 with an increment of -2
Next, is to print the current iterating value;
This is implemented using print(count)
However, since all values are to be printed on a line, there's a need t modify the statement as: print(count,end=' ')
Answer:
Its C that is the answer hahahahha