Answer:
a.Susan is wrong, and Mary is free to disclaim warranties.
Explanation:
According to the Magnuson-Moss Act the seller of a product may or may not provide warranty on a product. But is warranty is provided the following conditions must be met.
- The seller must provide a full or limited warranty.
- The coverage of the warranty must be stated
- Warranty must be available to the customers, so that they can read it before making a purchase.
So Mary can choose to disclaim all warranties on her products, not making her liable for any defects found in them. But if she wants to provide warranty it must be written and follow the conditions stated above.
Answer:
D) Usage
Explanation:
Usage barriers or obstacles to use are basically reasons why a customer will cease purchasing a good or service, or might even return a purchased good just after purchasing it. Sometimes enthusiastic customers may falsely believe that a product is easy to handle and use, while it's not, e.g. a Sedgeway that initially had very high sales but then they plummeted. Usage barriers result in high customer churn.
In this case, some users might actually believe that eating a small amount for one day and exercising for a couple of hours will radically change their body structure. The bad thing is that after a few days they will realize that it was all a lie, and they will get either frustrated or mad.
Answer:
The answer is:
- Dr Interest receivable 303
- Cr Interest revenue 303
Explanation:
The total interest Sheffield Company will charge during the four months is $1,212, equivalent to $303 per month. Since only one month has passed since the debt was made, Sheffield should record revenue for one month interest:
- Dr Interest receivable 303
- Cr Interest revenue 303
Answer and Explanation:
Martial Law is a state in which a territory is occupied by a country's military forces to restore or impose order under certain emergencies. Some rights such as the right to free transit, speech, and protection could be suspended during the time the Martial Law lasts.
Rumors of Martial Law arose in the U.S. as a result of the COVID-19 Coronavirus spread (2020). Quarantine has been declared worldwide and different countries have imposed Martial Law to control the number people infected by the disease but not particularly in the U.S. In most metropolis it would be necessary since the closest people live the highest the risk of infection but that is not the case of most states in the U.S. Therefore, it is unlikely a Martial Law will be enacted.
Answer:
Here, The Manager class is a child class of Employee class. There is an “Is-A” relationship between the manager and employee classes. Here Manager class extends from Employee class. That means Manager “is an” Employee.
It means Manager class objects will have the fields of the Employee class but it cannot access them on its own as my Name, my Title and my Age are declared private. It has to use super keyword and super class methods and constructors to access those fields. But, Manager class can access mySalary on its own because it is declared protected. As a sub class object can call super class methods ( which are public and protected ), the sub class objects can access those field indirectly by using super class constructors and methods. It means the Manager class cannot directly control the Employee class fields without using Employee class constructors and methods.