Wednesday, September 29, 2010
Advertising
Advertising it influences our tastes and go towards the purchase. Moreover, ultimately, consumers will be those who pay for advertising to buy products. The advertisements must distinguish between the idea and the treatment with which each person wants to take it as the interest to be given. In any case send a clear message because the people have diferents points of view and needs. They should not hide their intentions in the text because many people do not read. And the ads are also very important because we can arouse interest. There are many types of ads that attracts the attention of the customer then give us the desire to obtain and use them and later that you will buy them. They are excellent but need to pay attention because most of the time we buy and spend in other things that are less important that you need.
Subscribe to:
Post Comments (Atom)
Guillermo Umana Orozco
ReplyDeleteGuillermo Umaña Orozco
struct database {
int id_number;
int age;
float salary;
};
Guillermo Umana Orozco
Guillermo Umaña Orozco
int main()
{
database employee; //There is now an employee variable that has modifiable
// variables inside it.
employee.age = 22;
employee.id_number = 1;
employee.salary = 12000.21;
Guillermo Umana Orozco
Guillermo Umaña Orozco