Questions
For the next 7 questions, please refer to the following information. Mr. Cherry owns a gas...

For the next 7 questions, please refer to the following information.

Mr. Cherry owns a gas station on a highway in Vermont. In the afternoon hours, there are, on average, 30 cars per hour passing by the gas station that would like to refuel. However, because there are several other gas stations with similar prices on the highway, potential customers are not willing to wait—if they see that all of the pumps are occupied, they continue on down the road.
The gas station has three pumps that can be used for fueling vehicles, and cars spend four minutes, on average, parked at a pump (filling up their tank, paying, etc.).

f. What is the utilization of the pumps?

  • A. 0.63
  • B. 0.83
  • C. 0.53
  • D. 0.73

g. How many pumps should it have to ensure that it captures at least 98 percent of the demand that drives by the station?

  • A. 6
  • B. 2
  • C. 4
  • D. 8

In: Operations Management

Compute the YTM: Pros Inc has a bond Coupon: 5.0% Term 5 yrs Currently sells for...

Compute the YTM:

Pros Inc has a bond
Coupon: 5.0%
Term 5 yrs
Currently sells for $957.35
semiannual; payments

In: Finance

The following two technologies provide support for SCM (supply chain management). For each of the following...

The following two technologies provide support for SCM (supply chain management). For each of the following two technologies, provide an example and explain how each example could help to improve Target’s SCM:

(i) Electronic data interchange (EDI) which is a communication standard that enables business partners to exchange routine documents electronically. (Section 11.7, p. 319-320).

(ii) Extranets, which link business partners over the Internet by providing them access to certain areas of each other’s corporate intranets. (Section 11.7, p. 321-322).

In: Operations Management

Create a form that has the following fields: Name Address City Country (Please Select Country, US,...

Create a form that has the following fields:

  • Name
  • Address
  • City
  • Country (Please Select Country, US, Canada)
  • State/Province (Drop Down List)
  • Postal Code
  • Submit Button

Create two arrays of objects, one for US States, one for Canadian Provinces. The object should contain Name and Abbreviation. You don’t need to do all the states or provinces, just a few to make sure your code works. (3 OF EACH)

When the user selects either US or Canada, populate the drop down using the array of object. The first, default option should be “Please Select State” or “Please Select Province” depending on the selected country.

On Submitting the form, validate all form fields. Validate the Postal Code according to the rules for the selected country… US or Canada. You should do JavaScript Validation even if you use HTML5 controls

Follow good practices for JavaScript

Use the appropriate form controls from all the available form controls – HTML and HTML5.

Make the form accessible by using labels.

THIS IS TO DONE USING HTML/HTML5 AND JAVASCRIPT

In: Computer Science

What are some of the key characteristics of unknown sample of an aqueous solution containing an...

What are some of the key characteristics of unknown sample of an aqueous solution containing an ionic compound?

Specific questions:

1. Given that the cation is from Group 1A, what is the identity of the group 1A metal ion in your solution?

2. Given that the ionic compound contains either chloride or hydroxide, how can you determine which? (Two pieces of evidence are required and one must be related to solubility rules)

3. What is the concentration of your solution? (Your unknown sample is known to be about 1 M, but you need to determine the concentration to 3 significant figures using titration. You should plan ahead so that you know approximately what volume of your sample you will need in order to use approximately 25 mL of 0.100 M sulfuric acid for the titration).

I'm confused as to how I would go about figuring out these things when even actual information.

In: Chemistry

You are going to value Lauryn’s Doll Co. using the FCF model. After consulting various sources,...

You are going to value Lauryn’s Doll Co. using the FCF model. After consulting various sources, you find that Lauryn's has a reported equity beta of 1.5, a debt-to-equity ratio of 0.4, and a tax rate of 30 percent. Assume a risk-free rate of 5 percent and a market risk premium of 7 percent. Lauryn’s Doll Co. had EBIT last year of $46 million, which is net of a depreciation expense of $4.6 million. In addition, Lauryn's made $6.25 million in capital expenditures and increased net working capital by $3.6 million. Assume the FCF is expected to grow at a rate of 3 percent into perpetuity. What is the value of the firm?

In: Finance

Sam's Construction had a balance in its allowance for doubtful accounts at the end of 2014...

Sam's Construction had a balance in its allowance for doubtful accounts at the end of 2014 of $44,500. Sam reported credit sales of $5,000,000 in 2014 and wrote off receivables of $43,000 during 2014. At the end of the year, Sam estimates un-collectible accounts receivable based on the year-end aging using the assumptions provided at left.

What should the balance be in Sam's Construction allowance for doubtful accounts as of December 31,2015?

As of December 31, 2015 Estimated
Days Past Due Receivables Uncollectible
0-30 days past due 300,000 2.50%
31-60 days past due 125,000 9.00%
61-90 days past due 55,000 23.00%
90+ days past due 15,000 65.00%
495,000
Allowance for doubtful accounts at 12/31/14 44,500
Write-offs in 2015 43,000
2015 Sales 5,000,000

In: Accounting

Based on A. Nilsson's (2016) 'The Psychology of Worldviews' what are some of the psychological characteristics...

Based on A. Nilsson's (2016) 'The Psychology of Worldviews' what are some of the psychological characteristics of worldviews, and how do those affect us? How do those influence our cultural, social, political, and relational beings? How do we find out our own worldviews from Arthur Nilsson's (2016) Psychology of Worldviews?

In: Psychology

C Programming Please modify this code to display the "guess" value from the calculation and the...

C Programming

Please modify this code to display the "guess" value from the calculation and the "iterations" it took to complete. Please also add the input to the program.

Input: Program will prompt the user to provide the desired decimal-place accuracy, in the range of [1-15], inclusive. User prompt must clearly indicate what is a valid input. User input must be validated - ensuring that the value entered is an integer in the above range.

Sample output for one perfect number would look something like:

This may take up to 30 seconds to complete...

Perfect number: 6 = 1 + 2 + 3;

Initial “guess” = 2.0

Expected square root of 6 = 2.4494897...

Computed square root of 6 = 2.4494897...

reached in 8 iterations

using threshold of 0.0000...

for 12 decimal-place accuracy

#include <stdio.h>

int square(int n)

{

  

int a = n;

int b = 1;

int count = 0;

int e = 0.000001;

while(a - b > e)

{

a = (a + b)/2;

b = n/a;

++count;

}

  

return a;

}

int main(void) {

// your code goes here

int sum=0,p,i,j =0;

int arr[4],k;

printf("\n Perfect numbers between 1 and 100 are: ");

for(i= 1; i<= 10000; i++){

p=1;

while(p<=(i/2)){

if(i % p == 0)

sum=sum+p;

p++;

}

if(sum==i)

{

arr[j] = i;

printf("%d\t",arr[j]);

++j;

}

sum=0;

  

}

k = sizeof(arr) / sizeof(int);

for(int l = 0;l<k;l++)

{

printf("\nthe perfect number is %d\n",arr[l]);

printf("expected squareroot is %lf\n",sqrt(arr[l]));

printf("computed square root is %lf\n",square(arr[l]));

}

return 0;

}

In: Computer Science

discuss technology convergence and content convergence

discuss technology convergence and content convergence

In: Operations Management

At an F-Stop of 22, will your image have deep focus, or shallow depth-of-field? (Cameras)

At an F-Stop of 22, will your image have deep focus, or shallow depth-of-field? (Cameras)

In: Computer Science

How much should you deposit into a bank account annually in order to buy a property...

How much should you deposit into a bank account annually in order to buy a property that you expect to cost $231400 in 4 years if the account pays 3% annual interest? You are able to deposit $1355 quarterly into a bank account that is paying 14% annually. How much will you be able to accumulate after 8 years? (Express your answer as a positive number and to two decimal places.)

In: Finance

Outline one possible process for implementing a plan for environmental sustainability. Please select no more than...

Outline one possible process for implementing a plan for environmental sustainability.

Please select no more than three significant phases in implementation.

using Process analysis.

1) one thesis statement

2) three-sentence outlines

3) 1 body paragraph

4) 1 conclusion

In: Psychology

What are some forms of treatment available to those suffering from opioid addiction..?

What are some forms of treatment available to those suffering from opioid addiction..?

In: Psychology

Measuring and evaluating performance is important to managers. They need to explore how individual and performance...

Measuring and evaluating performance is important to managers. They need to explore how individual and performance measures and other measures can be combined to create a better tool for measuring past performance and driving the future achievement of strategic goals. The book lists a few different methods of performance measures, which include Lagging indicators, Leading indicators, Non-financial measures, Bench-marking, and Best practices. If you had a choice, pick one of these 5 measures, explain why you would use it over the others, and how you would implement it.

In: Operations Management