1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
Rina8888 [55]
3 years ago
9

Which of the following statements is false? Select one: a. because manufacturing plants and warehousing can be very expensive to

lease or build, companies are hesitant to close them, b. the initial focus in facility location is on a region, c. poorly located facilities negatively impact logistical efficiency, d. all of them are true e. poorly located facilities do not impact logistical effectiveness,
Business
1 answer:
AfilCa [17]3 years ago
5 0

<u>Answer</u>:

(E) Poorly located facilities do not impact Logistical effectiveness.

This statement is false

<u>Explanation</u>:

First, we need to know what are the located facilities. In located facilities, we can say that facilities are placed in such a way to minimise transportation cost while considering other factors like your organisation shouldn't be placed just in front of the competitive organisation and there shouldn't be any harmful substance near your organization. Now we will talk about logistical effectiveness, it basically tells us how smoothly our Enterprise conducts the operation. If there is poorly located facilities it will surely affect the effectiveness of our Enterprise.

You might be interested in
The group of retired executives that work with small businesses as advisors on a wide range of issues is called the:
VLD [36.1K]

Answer:

Service Corps of Retired Executives (SCORE

Explanation:

The SCORE is a non profit organization. Their members are retired executives who are engaged with the provision of free consultation and counseling services and also giving advices to entrepreneurs and small business owners.

This organization has offices in most parts of the united states and their services can be rendered in person or online. Their counseling services are in all areas and the client bears no charges.

7 0
2 years ago
Laurel, Inc., and Hardy Corp. both have 6 percent coupon bonds outstanding, with semiannual interest payments, and both are curr
stealth61 [152]

Answer:

A. If interest rates suddenly rise by 2 percent, what is the percentage change in the price of these bonds?

Laurel, Inc. = -8.11%

Hardy Corp. = -18.91%

B. If interest rates were to suddenly fall by 2 percent instead, what would the percentage change in the price of these bonds be then?

Laurel, Inc. = +8.98%

Hardy Corp. = +25.49%

Explanation:

bonds with 6% semiannual coupons, sold at par $1,000

Laurel, Inc. bond maturity in 5 years

Hardy Corp. bond maturity in 18 years

the current price of a bond is the sum of the present value of its face value and coupons. I will use an annuity table to calculate PV of face value and an ordinary annuity table for the coupons:

Laurel, Inc.

market rate 4% = ($1,000 x 0.8203) + ($30 x 8.9826) = $820.30 + $269.48 = $1,089.78, % change = 89.78/1,000 = 8.98%

market rate 8% = ($1,000 x 0.6756) + ($30 x 8.1109) = $675.60 + $243.33 = $918.93, % change = -81.07/1,000 = -8.11%

Hardy Corp.

market rate 4% = ($1,000 x 0.4902) + ($30 x 25.489) = $490.20 + $764.67 = $1,254.87, % change = 254.87/1,000 = 25.49%  

market rate 8% = ($1,000 x 0.2437) + ($30 x 18.908) = $243.70 + $567.24 = $810.94, % change = -189.06/1,000 = -18.91%  

3 0
3 years ago
When merchandise purchased on account is returned under the perpetual inventory system, the buyer would debit a. Inventory b. Pu
Keith_Richards [23]

Answer:

Accounts payable

Explanation:

In accounting, the term accounts payable refers to the money that is owed by a business to its suppliers, in other words, it refers to the business' short-term debts.

When merchandise is purchased on account and it is returned under the perpetual inventory system, the buyer would then debit accounts payable since it is money that the company would owe to the buyer.

4 0
3 years ago
You have $65 in your savings account at the beginning of a month. The bank pays you
wel

Answer:

$0.15

Explanation:

Interest is calculated using the formula below.

I = P x i x t

where I = interest

P= principal amount.

i=interest rate

t=time

Interest is given as an annual percentage. A 2.75 % interest will translate to 2.75/100 divided by 12 monthly interest. Therefore, the applicable interest rate is 0.00229 %

interest for the month will be

i=$65 x 0.00229 x 1

=$0.14895

=$0.15

3 0
3 years ago
Write the AddressList method newBusiness. This method searches addresses for an existing business with an identical address (i.e
max2010maxim [7]

Answer:

See explaination

Explanation:

// Address.java

public class Address {

/**

* The name of the business

*/

private String name;

/**

* The name of the street the business is on

*/

private String street;

/**

* The street number of the business

*/

private int number;

/**

* Constructs an Address that represents a business with name nm,

* at number no on the street st

*/

public Address(String nm, String st, int no)

{

name = nm;

street = st;

number = no;

}

/**

* Returns the name of the business

*/

public String getName()

{

return name;

}

/**

* Returns the name of the street on which the business is located

*/

public String getStreet()

{

return street;

}

/**

* Returns the street number of the business

*/

public int getNumber()

{

return number;

}

}

//end of Address.java

//AddressBook.java

import java.util.ArrayList;

import java.util.List;

public class AddressBook {

/**

* The list of business addresses. No two businesses in the list

* can have the same address (both the same street and street number)

*/

private List<Address> addresses;

/**

* Constructs an empty AddressBook

*/

public AddressBook()

{

addresses = new ArrayList<Address>();

}

/**

* atparam st the name of a street

* atreturn a list with the names of each business with an address on that street

*/

public List<String> onStreet(String st)

{

// create an empty output list of names of business

List<String> businessName = new ArrayList<String>();

// loop over the list of addresses

for(int i=0;i<addresses.size();i++)

{

// if ith street of address = nm, add the name of the business to the output list

if(addresses.get(i).getStreet().equalsIgnoreCase(st))

businessName.add(addresses.get(i).getName());

}

return businessName; // return the list

}

/**

* Searches for an existing business with an identical address (street and number

* both match). Updates the record to an address with name nm, street st and number no.

* If no entry already exists adds a new address to the end of the list with these parameters.

*

* atparam nm the name of the business

* atparam st the street the business is on

* atparam no the street number of the business

* atreturn the index of where the business address is on the list

*/

public int newBusiness(String nm, String st, int no)

{

// loop over the list of addresses

for(int i=0;i<addresses.size();i++)

{

// if ith index addresses match the street and number of the input st and no

if((addresses.get(i).getStreet().equalsIgnoreCase(st)) && (addresses.get(i).getNumber() == no))

{

addresses.remove(i); // remove the ith address from list

addresses.add(i, new Address(nm,st,no)); // add a new address with the input name, street and number at ith index

return i; // return the index i

}

}

// if no address match, add the business at the end of the list

addresses.add(new Address(nm,st,no));

return addresses.size()-1; // return the last index

}

}

//end of AddressBook.java

5 0
3 years ago
Other questions:
  • Burns Company reported $1,161.405 million in net income in 2021. On January 1, 2021, the company had 409 million shares of commo
    11·1 answer
  • ​First-line managers are typically those who​ ________.
    10·1 answer
  • SSS is a local restaurant serving the needs of college​ students, faculty, and staff. The manager is considering adding a websit
    7·1 answer
  • For something to have value, it must _____________.
    10·1 answer
  • g Let D1 represent the demand curve for premium seats to the Broadway hit Hamilton, and let S1 represent the supply curve for th
    14·1 answer
  • If Dakota Company issues 1,500 shares of $6 par common stock for $75,000,
    7·1 answer
  • Most child care providers will never find themselves caring for a child with asthma.
    11·1 answer
  • consider in the market for fire extinguishers that there is an external benefit of $10 per extinguisher. What type of externalit
    8·1 answer
  • You are the manager of a firm that sells its product in a competitive market at a price of $50. Your firm's cost function is C =
    11·1 answer
  • Websites not only give us information, but they also inspire designers in their layouts, illustrations, images, typefaces, and c
    9·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!