Tamarisk Company is a multiproduct firm. Presented below is information concerning one of its products, the Hawkeye.
|
Date |
Transaction |
Quantity |
Price/Cost |
|||
| 1/1 | Beginning inventory | 2,600 | $17 | |||
| 2/4 | Purchase | 3,600 | 25 | |||
| 2/20 | Sale | 4,100 | 42 | |||
| 4/2 | Purchase | 4,600 | 32 | |||
| 11/4 | Sale | 3,800 | 46 |
(a)
Correct answer iconYour answer is correct.
Calculate average-cost per unit. (Round answer to 4 decimal places, e.g. 2.7613.)
| Average-cost per unit |
$ |
eTextbook and Media
Assistance Used
Attempts: 1 of 3 used
(b)
Incorrect answer iconYour answer is incorrect.
Compute cost of goods sold, assuming Tamarisk uses: (Round average cost per unit to 4 decimal places, e.g. 2.7631 and final answers to 0 decimal places, e.g. 6,548.)
| Cost of goods sold | ||||
| (a) | Periodic system, FIFO cost flow |
$ |
||
| (b) | Perpetual system, FIFO cost flow |
$ |
||
| (c) | Periodic system, LIFO cost flow |
$ |
||
| (d) | Perpetual system, LIFO cost flow |
$ |
||
| (e) | Periodic system, weighted-average cost flow |
$ |
||
| (f) | Perpetual system, moving-average cost flow |
$ |
In: Accounting
You receive an inheritance of a thirty-year annuity, which pays 1 at the end of the first year, 2 at the end of the second year, 1 at the end of the third year, 4 at the end of the fourth year, 1 at the end of the fifth year, etc. This pattern will continue such that 1 will be paid out at the end of 29th year and 30 will be paid out at the end of the 30th year. Find the present value of this inheritance if the annual effective interest rate is 4%(Answer: 120.17)
In: Finance
Given an unsorted array A of size N of integers, find a continuous sub-array which adds to the given number. Declare dynamic arrays and use only pointers syntax. (no [ ]'s or (ptr+1) stuff.
input will be the number of input values to enter followed by the sum to compare with. print out the continuous sub-array of values that are equal to sum or the message 'no sum ofund.'
there may be more than one sub-array to be found in a given input.
example:
input: 6 10 first number represents 6 values to enter and 10 is the sum
3 5 8 2 3 5 6 input values for the array.
output: 8 2 and 235 these are continuous sub-array values that sum to 10
your input data sets: i would create an input file for the following.
6 10
358235
8 20
5 10 -3 3 10 -3 4 14
6 12
8 5 3 3 7 7
9 15
3 8 4 3 10 2 3 8 2
6 12
8 5 3 3 4 5
20 30
10 12 8 5 15 5 10 8 2 4 6 9 1 7 6 3 2 7 15 18 20 5 3 2 7 9 3 2 1 8 5
In: Computer Science
CAN YOU CORRECT THIS CODE PLS.
Scanner in = new Scanner (System.in);
// EXAMPLE 1
System.out.println("****************** EXAMPLE 1 *****************"
);
int x = 4, y = 9;
int a = 99, b = -22;
if (x > y)
System.out.println("x > y");
if (x < y)
System.out.println("x < y");
if (x >= y)
System.out.println("x >= y");
if (a <= 10023)
System.out.println("a <= 10023");
if (b == y)
System.out.println("b == y");
if (b == 5)
System.out.println("b == 5");
if (x != 4)
System.out.println("x != 4");
System.out.println();
// EXAMPLE 2
System.out.println("****************** EXAMPLE 2 *****************"
);
boolean even = false;
x = 6;
if (x % 2 == 0)
even = true;
if (even)
System.out.println("x is even.");
if (even == true)
System.out.println("x is even.");
if (even == false)
System.out.println("x is not even.");
if (true)
System.out.println("This statement WILL output.");
if (false)
System.out.println("This statement will NOT output.");
System.out.println();
// EXAMPLE 3
System.out.println("****************** EXAMPLE 3 *****************"
);
System.out.print("Select an option:\n" +
" 1. Have Time\n 2. Work Hard\n" +
" 3. Socialize\n\n> ");
int choice = in.nextInt(); // user enters 2
if (choice == 1)
System.out.println("Here's time!");
else if (choice == 2)
System.out.println("Keep it up!");
else if (choice == 3)
System.out.println("Nice weather we're having!");
else
System.out.println("Well, you can't do all three.");
System.out.println();
// EXAMPLE 4
System.out.println("****************** EXAMPLE 4 *****************"
);
int grade = 90;
if (grade >= 90)
System.out.println("You got a A!");
if (grade >= 80)
System.out.println("You got a B!");
if (grade >= 70)
System.out.println("You got a C!");
System.out.println();
// EXAMPLE 5
System.out.println("****************** EXAMPLE 5 *****************"
);
a = 4;
if ( a== 4 ) {
System.out.println ( "a is equal to 4!" );
}
System.out.println();
// EXAMPLE 6
System.out.println("******************** EXAMPLE 6
*****************" );
b = 483;
if ( b == 4 )
System.out.println ( "b is equal to 4!" );
}
// EXAMPLE 7
System.out.println("********************* EXAMPLE 7
*****************" );
a = 483;
if( a == 4 ) {
System.out.println( "a is equal to 4!" );
System.out.println( "That's right -a is equal to 4!" );
if (a == 483 );
System.out.println ( "a is equal to 483!" );
System.out.println ( "That's right -a is equal to 483!" );
System.out.println();
}
// EXAMPLE 8
System.out.println("********************* EXAMPLE 8
*****************" );
b = 483;
if( b == 4 );
{
System.out.println ( "b is equal to 4!" );
}
System.out.println ( "That's right -b is equal to 4!" );
else if ( b == 483 )
{
System.out.println ( "b is equal to 483!" );
}
System.out.println ( "That's right -b is equal to 483!" );
System.out.println();
// EXAMPLE 9
System.out.println("********************* EXAMPLE 9
*****************" );
int number1, number2;
System.out.print ( "Enter first integer: ");
number1 = in.nextInt();
System.out.print ( "Enter second integer: ");
number2 = in.nextInt();
if (number1 == number2)
System.out.println( number1 + " == " + number2 );
if (number1 != number2)
SSystem.out.println( number1 + " != " + number2 );
if (number1 < number2)
System.out.println( number1 + " < " + number2 );
if (number1 > number2)
System.out.println( number1 + " > " + number2 );
if (number1 <= number2)
System.out.println( number1 + " <= " + number2 );
if (number1 >= number2)
System.out.println( number1 + " >= " + number2 );
System.out.println();
// EXAMPLE 10
System.out.println("********************* EXAMPLE 10
****************" );
grade = 65
String message;
if ( grade >= 60 ) {
message = "You passed";
}
else
message = "You failed";
System.out.println( message );
System.out.println();
}
}
In: Computer Science
The Firm in Question is Southwest Airlines.
The purpose of this assignment is to evaluate the financial condition and performance of the firm you and your CLC group members have selected for analysis.
Refer to Tables A-1 through A-5 in Appendix II of the text for the operational definitions of and formulas for numerous common financial ratios, including profitability, liquidity, leverage, activity, and shareholders' return. Using these formulas, complete at least one ratio from each of the five categories, though you may apply as many of the ratios for which you can find the required information in the firm's financial reports. On your calculations page, specify for which formulas you are solving.
In an assessment of approximately 250 words, address the following:
Considering today's financial climate, how likely is it that the organization could acquire the capital necessary to support an aggressive value-enhancement strategy? From where would that capital originate? Compared to current interest rates, what do you believe is a realistic interest rate the firm might incur? Which of the liquidity ratios will be impacted by the influx of capital, if borrowed?
| A-1 Profitability Ratios | ||
| return in total assets | ||
| 1 | 22.07 | |
| return on stockholders equity | ||
| 2 | 23 | |
| return on common equity | ||
| 3 | 30 | |
| operating profit margin | ||
| 4 | 13 | |
| net profit margin | ||
| 5 | 25.83 | |
| A-2 Liquidity Ratios | ||
| current ratio | ||
| 1 | 0.67 | |
| quick ratio | ||
| 2 | 0.61 | |
| investor to net working capital | ||
| 3 | 45 | |
| A-3 Leverage Ratios | ||
| debt to assets | ||
| 1 | 14.79 | |
| debt to equity | ||
| 2 | 0.27 | |
| long term debt to equity | ||
| 3 | 28.72 | |
| times interest earned | ||
| 4 | 0.39 | |
| fixed charge coverage | ||
| 5 | 69 | |
| A-4 Activity Ratios | ||
| inventory turnover | ||
| 1 | 33.22 | |
| fixed assets turnover | ||
| 2 | 0.86 | |
| total assets turnover | ||
| 3 | 0.18 | |
| accounts receivable turnover | ||
| 4 | 0.45 | |
| average collecting period | ||
| 5 | 17.67 | |
| A-5 Shareholders Return Ratios | ||
| dividend yield on common stock | ||
| 1 | 1.59 | |
| price earnings ratio | ||
| 2 | 12.65 | |
| dividend payout ratio | ||
| 3 | 0.16 | |
| cash flow per share | ||
| 4 | 7.4 | |
In: Finance
In Jackalopes, fur color is cream, yellow, brown or black. Three matings of true-breeding Jackalopes (P1 parents) gave information on how these fur color are inherited:
Cross P1 parents F1 offspring F2 offspring
(True-Breeding)
--------------------------------------------------------------------------------------------------------------
A Black x brown All black 3/4 black; 1/4 brown
B Yellow x brown All black 9/16 black; 3/16 brown; 3/16 yellow; 1/16 cream
C Black x yellow All black 3/4 black; 1/4 yellow
Fur color is inherited in the same way for all members of the Jackalope species and so, based on this data, how many genes control coat color?
| a. |
1 |
|
| b. |
2 |
|
| c. |
1 |
|
| d. |
3 |
In: Biology
Use a while(true) loop to ask the user the following 2 values
“Enter a value x “ “Enter a nonnegative integer n (enter negative
integer to quit): “
If the user enters a negative int for n, the while loop is broken
via the brake statement. Otherwise,
in the remaining part of the while loop, use a for loop to compute
the partial sum for the Riemann
zeta series for the geometric series, namely 1 + 2ˆ-x + 3ˆ-x + . .
. + nˆ-x.
Use the iomanip library in order to print the sum with 50 decimal
digits of precision.
Use the cmath library in order to access the pow function. For
example pow(3,-x) returns the value
of 3ˆ-x.
Sample output:
Enter a value x = 5
Enter a non-negative integer (enter negative integer to quit):
4
1 + 2^-5 + 3^-5 + 4^-5 =
1.0363417888374486519609263268648646771907806396484
Enter a value x = -5
Enter a non-negative integer (enter negative integer to quit):
4
1 + 2^5 + 3^5 + 4^5 = 1300
Enter a value x = 6
Enter a non-negative integer (enter negative integer to quit):
-2
C++.will like if correct,thank you.
In: Computer Science
For the following exercises, enter the data from each table into MS-Excel and graph the resulting scatter plots (Use a smoothing function). Determine whether the data from the table could represent a function that is linear, exponential, or logarithmic.
|
n |
1.25 |
2.25 |
3.56 |
4.2 |
5.65 |
6.75 |
7.25 |
8.6 |
9.25 |
10.5 |
|
f (n) |
5.75 |
8.75 |
12.68 |
14.6 |
18.95 |
22.25 |
23.75 |
27.8 |
29.75 |
33.5 |
|
x |
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
|
f (x) |
2 |
4.079 |
5.296 |
6.159 |
6.828 |
7.375 |
7.838 |
8.238 |
8.592 |
8.908 |
| m | 0 |
1 |
2 | 3 | 4 | 5 | 6 | 7 | 8 | 10 |
| F(m) | 10 | 12 | 14 | 16 | 18 | 20 | 22 | 24 | 26 |
28 |
|
y |
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
|
f (y) |
2.4 |
2.88 |
3.456 |
4.147 |
4.977 |
5.972 |
7.166 |
8.6 |
10.32 |
12.383 |
|
z |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
|
f (z) |
9.429 |
9.972 |
10.415 |
10.79 |
11.115 |
11.401 |
11.657 |
11.889 |
12.101 |
12.295 |
In: Computer Science
Concord Company is a multiproduct firm. Presented below is
information concerning one of its products, the Hawkeye.
|
Date |
Transaction |
Quantity |
Price/Cost |
|||
| 1/1 | Beginning inventory | 1,500 | $14 | |||
| 2/4 | Purchase | 2,500 | 21 | |||
| 2/20 | Sale | 3,000 | 35 | |||
| 4/2 | Purchase | 3,500 | 27 | |||
| 11/4 | Sale | 2,700 | 39 |
(b.) Compute cost of goods sold, assuming Concord uses:
(Round average cost per unit to 4 decimal places, e.g.
2.7631 and final answers to 0 decimal places, e.g.
6,548.)
| Cost of goods sold | ||||
| (a) | Periodic system, FIFO cost flow |
$ |
||
| (b) | Perpetual system, FIFO cost flow |
$ |
||
| (c) | Periodic system, LIFO cost flow |
$ |
||
| (d) | Perpetual system, LIFO cost flow |
$ |
||
| (e) | Periodic system, weighted-average cost flow |
$ |
||
| (f) | Perpetual system, moving-average cost flow |
$ |
In: Accounting
Splish Company is a multi product firm. Presented below is
information concerning one of its products, the Hawkeye.
|
Date |
Transaction |
Quantity |
Price/Cost |
|||
| 1/1 | Beginning inventory | 1,500 | $14 | |||
| 2/4 | Purchase | 2,500 | 21 | |||
| 2/20 | Sale | 3,000 | 35 | |||
| 4/2 | Purchase | 3,500 | 27 | |||
| 11/4 | Sale | 2,700 | 39 |
Compute cost of goods sold, assuming Splish uses:
(Round average cost per unit to 4 decimal places, e.g.
2.7631 and final answers to 0 decimal places, e.g.
6,548.)
| Cost of goods sold | ||||
| (a) | Periodic system, FIFO cost flow | $ | ||
| (b) | Perpetual system, FIFO cost flow | $ | ||
| (c) | Periodic system, LIFO cost flow | $ | ||
| (d) | Perpetual system, LIFO cost flow | $ | ||
| (e) | Periodic system, weighted-average cost flow | $ | ||
| (f) | Perpetual system, moving-average cost flow | $ |
In: Accounting