Questions
Consider the following financial information pertaining to a firm in a particular year: Rev 1,000 COGS...

Consider the following financial information pertaining to a firm in a particular year:

Rev

1,000

COGS

400

R&D

50

SGA (excl. Depr)

100

Depreciation

60

Interest Exp

20

Taxes

110

Dividends

130

Change in Inventory

-25

Change in Acct. Pay.

15

Change in Acct. Rec.

30

Change in Cash/Secu.

0

Plant & Equip (new)

225

Shares Issued

N/A

Change in Debt

N/A

  1. Using this information, please calculate and report the following items:

Gross Profit

EBIT

NI

Operating CF

Investing CF

Free CF

  1. Also, using only one sentence, remark on additional financing requirements (if any).

Answer

In: Finance

Write an assembly program that demonstrates multiplication operation in 80x86 assy languuage

Write an assembly program that demonstrates multiplication operation in 80x86 assy languuage

In: Computer Science

Why is World War II referred to as the “Good War?” How did historically disenfranchised groups...

Why is World War II referred to as the “Good War?” How did historically disenfranchised groups contribute to the war effort, and why were their contributions important? ESSAY QUESTION PLEASE ANSWER FULLY

In: Psychology

Cherry Blossom Products Inc. produces and sells yoga-training products: how-to DVDs and a basic equipment set...

Cherry Blossom Products Inc. produces and sells yoga-training products: how-to DVDs and a basic equipment set (blocks, strap, and small pillows). Last year, Cherry Blossom Products sold 8,900 DVDs and 4,450 equipment sets. Information on the two products is as follows:

   DVDs    Equipment Sets

Price    $7.80    $25.40

Variable cost per unit    $3.60 $15.40

Total fixed cost is $60,720.

Required:

1. What is the sales mix of DVDs and equipment sets?

2. Compute the break-even quantity of each product.

In: Accounting

In R syntax, I have created a vector called: “ all_numbers <- c(10:21, seq(21:30)) “ but...

In R syntax, I have created a vector called: “ all_numbers <- c(10:21, seq(21:30)) “

but how do i create a variable “eleventh” that contains 11th element in ‘all_numbers' and also create a vector ‘some_numbers’ that contains 2nd through the 5th elements of ‘all_numbers’ ?

In: Computer Science

You need to write a program that reads in two integers from cin and outputs an...

You need to write a program that reads in two integers from cin and outputs an horribly inefficent calculation of the median value.

First count from the first number to the second, but stop one short.

Then, count from that number back towards the first, again stopping one short.

Continue until you reach a single number.

Enter 3 and 9

solution:

3456789

987654

45678

8765

567

76

6

In: Computer Science

Write a program that accepts as input the mass, in grams, and density, in grams per...

Write a program that accepts as input the mass, in grams, and density, in grams per cubic centimeters, and outputs the volume of the object using the formula: volume = mass / density.

Format your output to two decimal places.

** Add Comments

In: Computer Science

Two friends are considering opening a driving range for golfers. Because of the growing popularity of...

  1. Two friends are considering opening a driving range for golfers. Because of the growing popularity of golf, they estimate such a range could generate rentals of 20,000 buckets at $3 a bucket the first year, and that rentals will grow at 7% a year thereafter. The price will remain a $3 per bucket.

            Equipment requirements include:

                        Incorporated fee                        $2,500

                        ball dispensing machine             $2,000

                        ball pick-up vehicle                    $8,000

                        tractor and accessories                $8,000

            All the equipment is 7-year ACRS property and is expected to have a salvage value of 10% of cost after 8 years.

  1. Stocking a small shop selling tees, visors, gloves, towels, sun-block, etc., plus a checking account for the business make net working capital needs $3,000 to start. This amount is expected to grow at 5% per year.

            Annual fixed operating costs are expected as follows:

                        Land lease                                 $12,000

                        Water                                       1,500

                        Electricity                                 3,000

                        Labor                                       30,000

                        Seed & Fertilizer                       2,000

                        Gasoline                                   1,500

                        Equipment maintenance             1,000

                        Insurance                                  1,000

                        Other                                        1,000

                        Total                                         $53,000

Expenditures for balls and baskets, initially $4,000, are expected to grow at 7% per year. The relevant tax rate is 15% and the required return is also 15%. The project is to be evaluated over an 8-year life. Should the friends proceed?

In: Accounting

1. The three categories of the accounting equation are: 2. Companies need a way to organize...

1. The three categories of the accounting equation are:

2. Companies need a way to organize their accounts so they use a chart of accounts. Accounts starting

with 1 are usually Assets, 2 – Liabilities, 3 – Equity, 4 – Revenues, and 5 – Expenses. The second

and third digits in account numbers indicate:

3. A chart of accounts and a ledger are similar in that they both list the account names and account

numbers of the business. A ledger, though, provides the following:

4. With a double-entry you need to record the dual effects of each transaction. Every transaction affects

at least ____ accounts.

5. A T-account is a shortened form of each account in the ledger. The debit is on the ____ side, credit on

the _____ side, and the account name is shown on _____.

In: Accounting

C++, Take this 3 pseudocode and transform them into C++ then implement them making a quick...

C++, Take this 3 pseudocode and transform them into C++ then implement them making a quick sort program using the function of the pseudocode that you changed to C++, also in the main the user need to put the array that he wants to do quick sort with. plz comment everything you do in details this is for a presentation

1. A first draft of pseudocode for the quick sort algorithm follows:

// Sorts theArray[first..last].
quickSort(theArray: ItemArray, first: integer, last: integer): void
if (first < last)
{
Choose a pivot item p from theArray[first..last]
Partition the items of theArray[first..last] about p
// The partition is theArray[first..pivotIndex..last]
quickSort(theArray, first, pivotIndex - 1) // Sort S 1
quickSort(theArray, pivotIndex + 1, last) // Sort S 2
}
// If first >= last, there is nothing to do

2. Pseudocode for function sortFIrstMidLast

if (theArray[first] > theArray[mid])
Interchange theArray[first] and theArray[mid]
if (theArray[mid] > theArray[last])
Interchange theArray[mid] and theArray[last]
if (theArray[first] > theArray[mid])
Interchange theArray[first] and theArray[mid]

3. The following pseudocode describes the partitioning algorithm for an array of at least four entries:
// Partitions theArray[first..last].
partition(theArray: ItemArray, first: integer, last: integer): integer
// Choose pivot and reposition it
mid = first + (last - first) / 2
sortFirstMiddleLast(theArray, first, mid, last)
Interchange theArray[mid] and theArray[last – 1]
pivotIndex = last - 1
pivot = theArray[pivotIndex]
// Determine the regions S 1 and S 2
indexFromLeft = first + 1
indexFromRight = last - 2
done = false
while (not done)
{
// Locate first entry on left that is ≥ pivot
while (theArray[indexFromLeft] < pivot)
indexFromLeft = indexFromLeft + 1
// Locate first entry on right that is ≤ pivot
while (theArray[indexFromRight] > pivot)
indexFromRight = indexFromRight - 1
if (indexFromLeft < indexFromRight)
{
Move theArray[firstUnknown] into S1
Interchange theArray[indexFromLeft] and theArray[indexFromRight]
indexFromLeft = indexFromLeft + 1
indexFromRight = indexFromRight - 1
}
else
done = true
}
// Place pivot in proper position between S 1 and S 2 , and mark its new location
Interchange theArray[pivotIndex] and theArray[indexFromLeft]
pivotIndex = indexFromLeft
return pivotIndex

In: Computer Science

In a one-page, document, identify a change of people, structure or technology at your job (or...

In a one-page, document, identify a change of people, structure or technology at your job (or former job- you may omit the name if you wish).

Be sure to:

  • Describe the change. What was it?
  • What were the reasons for the change?
  • Identify internal and external forces influencing the change Describe management’s efforts to communicate and implement the change.
  • How did employees react to the change?
  • What were the results associated with this change?
  • In your opinion, did management experience the results they were hoping for? Why or why not?

In: Operations Management

Explain how the KMV model predicts bankruptcy probability?

Explain how the KMV model predicts bankruptcy probability?

In: Finance

QUESTION 1 Select the correct statement(s) regarding signals observed in the time and frequency domains, a....

QUESTION 1

  1. Select the correct statement(s) regarding signals observed in the time and frequency domains,

a. signals that contain information typically appear as an aperiodic amplitude signal in the time domain, and will have a bandwidth in the frequency domain

b. signals that appear periodic in the time domain (e.g., sinusoidal) will be associated with asingle frequency in the frequency domain

c. signals containing greater amounts of information will typically have a larger bandwidth in the frequency domain compared to signals containing less information

d. all statements are correct

10 points   

QUESTION 2

  1. Digital signals representing information in the time domain never have an associated bandwidth in the frequency domain. Therefore digital communications are popular with service providers.

True

False

10 points   

QUESTION 3

  1. In the time domain, a carrier wave can be represented by the sinusoidal wave formula: c(t)=A*cos(2πft ± φ). What do the variables in this equation represent?

a. amplitude, frequency, time, power

b. peak power, frequency bandwidth, time, signal source

c. amplitude, frequency, time, phase angle

d. ASIN, fading, clock cycle, phase

In: Computer Science

write a 3 page paper on why ethics is important in our life, and what are...

write a 3 page paper on why ethics is important in our life, and what are the 3 components of business erhics, describe those 3 component and give a appropriate example.

In: Operations Management

Chiptech, Inc., is an established computer chip firm with several profitable existing products as well as...

Chiptech, Inc., is an established computer chip firm with several profitable existing products as well as some promising new products in development. The company earned $1 per share last year and just paid out a dividend of $.50 per share. Investors believe the company plans to maintain its dividend payout ratio at 50%. ROE equals 20%. Everyone in the market expects this situation to persist indefinitely.


a.

What is the market price of Chiptech stock? The required return for the computer chip industry is 15%, and the company has just gone ex-dividend (i.e., the next dividend will be paid a year from now, at t = 1). (Round your answer to 2 decimal places.)


  Market price $


b.

Suppose you discover that Chiptech’s competitor has developed a new chip that will eliminate Chiptech’s current technological advantage in this market. This new product, which will be ready to come to the market in two years, will force Chiptech to reduce the prices of its chips to remain competitive. This will decrease ROE to 15%, and, because of falling demand for its product, Chiptech will decrease the plowback ratio to .40. The plowback ratio will be decreased at the end of the second year, at t = 2: The annual year-end dividend for the second year (paid at t = 2) will be 60% of that year’s earnings. What is your estimate of Chiptech’s intrinsic value per share? (Hint: Carefully prepare a table of Chiptech’s earnings and dividends for each of the next three years. Pay close attention to the change in the payout ratio in t = 2.) (Round your answer to 2 decimal places.)


  Book value per share $


No one else in the market perceives the threat to Chiptech’s market. In fact, you are confident that no one else will become aware of the change in Chiptech’s competitive status until the competitor firm publicly announces its discovery near the end of year 2. (Hint: Pay attention to when the market catches on to the new situation. A table of dividends and market prices over time might help.)


c-1.

What will be the rate of return on Chiptech stock in the coming year (i.e., between t = 0 and t = 1)? (Do not round intermediate calculations. Round your answer to 2 decimal places.)


  Rate of return %  


c-2.

What will be the rate of return on Chiptech stock in the second year (i.e., between t = 1 and t = 2)? (Negative value should be indicated by a minus sign. Do not round intermediate calculations. Round your answer to 2 decimal places.)


  Rate of return %  


c-3.

What will be the rate of return on Chiptech stock in the third year (i.e., between t = 2 and t = 3)? (Do not round intermediate calculations. Round your answer to 2 decimal places.)


  Rate of return %  

In: Finance