People who make goods and services are called PRODUCERS.
They are called producers because they produce the goods and services needed by the consumers.
Consumers are people who requires the goods and services provided by the producers.
Answer: Interest rate risk
Explanation:
Interest rate risk is described as the potential for investment loss which result from a change in interest rates. The increase in interest rate declines tell value if a bond or other fixed-income investment, the change that occurs in these bond price is known as duration. Generally, it is the risk that arises for bond owners from fluctuating interest rates. The interest rate risk of a bond depends on how sensitive it's price is to interest rate changes in the market
Answer:
$ 4.02
Explanation:
Take two packs ×3 and it = 6 then take 6 × 67 and you get $4.02
Answer:
b. bait pricing
Explanation:
Bait pricing strategy is one that is aimed at attracting customers by presenting a price that is lower than the actual value of a product. Usually the product is limited in quantity and when buyers come in they are convinced to buy something else.
This is considered an illegal means of marketing.
I'm the given instance when the customer got to the dealership the salesperson can't find that particular car on the lot, saying maybe it was sold this morning before he got in. The salesperson offers a higher-priced car.
This is bait pricing strategy.
The correct answer for the for loop is:
for (int i=1; i<200; i++){
if ((i%2)==0 && (i%3)==0){
cout << i << " ";
}
}
Python offers three options for running the loops. For iterating repeatedly through a sequence, use a for loop (that is either a list, a tuple, a dictionary, a set, or a string). This functions more like an iterator method seen in other object-oriented programming languages and is less like the for keyword found in other programming languages. The for loop allows us to run a series of instructions once for each element of a list, tuple, set, etc. There is no need to set an indexing variable before using the for loop.
Write a for loop that prints, in ascending order, all the positive integers less than 200 that are divisible by both 2 and 3, separated by spaces.
Learn more about loops here:
brainly.com/question/25955539
#SPJ4