Answer:
u needa be more clear sweet pee <3
Explanation:
Hello!
The factors that affect consumer demand for a product is the price and the person's income.
If the price of the product increases, the demand for the product will decrease. If the price of the product decreases, then the demand for the product will increase.
Demand is also affected by a person's income. The more money a person makes, the more money he has to spend on the product, which increases demand. If a person makes less money than he did before, demand for a product will decrease because he can no longer afford it.
I hope this helps you! Have a lovely day!
- Mal
Answer:
See explaination
Explanation:
In recent times and in the past, so many companies have been dealt with or bankrupted by disaster.
This disasters are in the form of floods, earthquake and tsunami. This has led to many companies across world to have faced problem. As Japan is particularly vulnerable to natural disaster because of its climate and topography let me take example of japan .The tsunami that struck Japan in March this year which has lead to a debt of worth nearly $8 billion due to failed businesses. A total of 341 firms in japan with a combined 6,376 employees has got affected by this disaster.
One of company that hit hard by these disaster is Toyota. Toyota is a Japanese multinational automotive manufacturer headquartered in Toyota, Aichi, Japan. Actually due to flood in thailand toyota has faced a big loss. As flood hit thailand the parts of vehicle which is produced in thailand has stopped . It leads to interruption in the supply chain of some Thailand made components.
This lead to suspension of production as thai made component was unavailable.It has been reported until the situation of thailand will be good toyota plants in Indiana, Kentucky and Ontario, Canada, will be shut down . And production rate at plant in North America will get slow down .This flood leads to a loss of 37500 vehicles .Due to this reason toyota was forced to open its plants in Southeast asian country just to enhance the production rate.Sales of vehicle has also got reduced in thailand . Hence toyota faced a total loss of 1.6 billion dollar.
In Nigeria, due to the insurgency of the Boko Haram, many companies have entirely stopped operations in some regions, this harsh realities leads to massive loss of revenue for such companies.
Answer:
Explanation:
Tech Social Media giant FB is one of those companies. Not long ago the ceo was brought to court to accusations that his company was selling user data. Turns out this is true and they are selling their users private data to companies all over the word. Once the news turned to something else, people focused on something new but the company still continues to sell it's users data the same as before. This is completely unethical as the information belongs to the user and they are not getting anything while the corporation is profiting.
Answer:
The code will be:
#include <stdio.h>
#include <stdlib.h>
main () {
double weight, shippingCharge, rate, segments;
int distance;
printf("Enter the weight: \n");
scanf("%lf", &weight);
printf("Enter the distance: \n");
scanf("%i", &distance);
if (weight <= 10) {
printf("Rate is $3.00 \n");
rate = 3;
} else {
printf("Rate is $5.00 \n");
rate = 5;
}
if (distance % 500 == 0) {
segments = distance / 500;
} else {
segments = distance / 500 + 1;
}
shippingCharge = rate * segments;
if (distance >1000) {
shippingCharge = shippingCharge + 10;
}
printf("Your shipping charge is $%lf\n", shippingCharge);
system ("pause");
}