The following is a partial trial balance for General Lighting
Corporation as of December 31, 2021:
| Account Title | Debits | Credits |
| Sales revenue | 3,000,000 | |
| Interest revenue | 93,000 | |
| Loss on sale of investments | 29,000 | |
| Cost of goods sold | 1,320,000 | |
| Loss on inventory write-down (obsolescence) | 330,000 | |
| Selling expense | 430,000 | |
| General and administrative expense | 215,000 | |
| Interest expense | 92,000 | |
There were 300,000 shares of common stock outstanding throughout
2021. Income tax expense has not yet been recorded. The income tax
rate is 25%.
Required:
Prepare a single-step income statement for 2021, including EPS disclosures.
Prepare a multiple-step income statement for 2021, including EPS disclosures.
In: Accounting
1. The following probability distribution represents the number of people living in a Household (X), and the probability of occurrence (P(X)). Compute the Expected Value (mean), the Variance and the Standard Deviation for this random variable. Show Your Calculations for the Mean.
X 1 2 3 4 5
P(X) .30 .33 .24 .08 .05
2. Use the binomial formula to compute the probability of a student getting 7 correct answers on a 10 question Quiz, if the probability of answering any one question correctly is 0.84. SHOW YOUR WORK.
3. Submit your answers to the following binomial questions. You may use the appendix table B #5 to answer parts (a) and (b). According to a government study, 15% of all children live in a household that has an income below the poverty level. If a random sample of 15 children is selected:
a) what is the probability that 5 or more live in poverty?
b) what is the probability that 5 live in poverty?
c) what is the expected number (mean) that live in poverty? What is the variance? What is the standard deviation?
In: Math
We are now going to count the amount of ATPs that fat, sugar, and ethanol can produce per equivalent carbons. In this case, 12 carbons. We will compare sucrose, lauric acid, and six molecules of ethanol.Sucrose is cleaved to glucose and fructose by sucrase.How many ATP is produced from the COMPLETE oxidation of sucrose in the muscle. Assume 1NADH=3 ATP, 1FADH2=2ATP and 1 GTP= 1ATP
In: Biology
Presented below is Oxford Ltd.’s income statement for 20x5:
|
Sales (37020 units) |
$893630 |
|
|
Variable costs |
-358325 |
|
|
Contribution Margin |
535305 |
|
|
Fixed Expenses |
-196705 |
|
|
Operating Income |
338600 |
|
|
Income tax expense |
-142212 |
|
|
Net Income |
$196388 |
How many units must Oxford Ltd. sell in order to generate net
income equal to $266223?
In: Accounting
QUESTION THREE
Discuss the following capital structure theories and their implication to the value of the firm.
In: Finance
Code in C++, create the erase function shown in int main()
/* Use of dynamic memory to implement dynamic array (like vector) */
#include <iostream>
using namespace std;
class MyVector {
private:
int* arr; //only stores ints
int size;
int cap;
public:
MyVector() : arr{nullptr} {}; // Default constructor;
~MyVector(); // Destructor: Cleans up stuff. Here deletes arr
void push(int ele); // inserts element into vector
friend ostream& operator <<(ostream& os, MyVector& v);
};
int main()
{
MyVector vec;
vec.push(1); //should store 1 in the vec
vec.push(2); // should store 2 into the vec
vec.push(10); // should print all elements
vec.erase(0) // Erase element at position 0
cout << vec << endl; // should print remaining elements
}
MyVector::~MyVector() // Destructor
{
delete[] arr;
cout << "Destroyed vector" << endl;
}
ostream& operator <<(ostream& os, MyVector& v)
{
for(int i = 0; i < v.size; i++)
os << v.arr[i] << " ";
return os;
}
void MyVector::push(int ele)
{
// Check if arr == nullptr. If yes, dynamically create an array of elements. Insert ele into array
if (arr == nullptr) {
cap = 2;
arr = new int[cap];
arr[0] = ele;
size = 1;
}
else {
// Check if there is space
if (size < cap) {
arr[size] = ele;
size++;
}
else {
int* temp = arr;
arr = new int[2*cap];
for (int i = 0; i < cap; i++)
arr[i] = temp[i];
delete[] temp;
cap = 2*cap;
arr[size] = ele;
size++;
}
}
}
In: Computer Science
How would you explain diversity in the workplace?
What are the benefits of diversity in the workplace?
Are there different ways to manage diversity in the workplace?
Challenges a supervisor face to manage workplace diversity?
In: Operations Management
A leech would not have
a notochord.
segmentation.
a ventral nerve cord.
a coelom.
mesoderm.
In: Biology
Exercise 19.
Repeat Exercise 3. with the contestant pulling the block of ice
with a rope over his shoulder at the same angle above the
horizontal as shown in Figure 5.7(b).
In: Physics
in java
A NavigableSet is a set that stores it’s element in
order. Say we have a bunch of items
and we want to store them in order but we don’t want any
duplicates. Write a generic
class that implements a structure that does that.
In: Computer Science
C data structure
Initially, we do not need to do any error checking - we can assume that the input postfix expression is syntactically correct.
Input
The input is a string that represents a postfix expression. To simplify the problem, your calculator will be restricted to operating on single-digit non-negative integers. Only the following characters are allowed in the string:
the operators '+', '-'. '*', and '/'
the digits '0' through '9'
the space (blank) character ' '
Example input:
7 8 5 * +
Processing
To handle spaces in the input, need to make one minor addition to the algorithm
if (ch is a blank)
ignore it
end if
Program should ask the user to enter a text file with postfix expression on a single line. we can either read the line one character at a time, or can read the line into a string and then process the string one character at a time. Your program should then print the value of the expression. program should include a loop so that the user can evaluate multiple postfix expressions. Your output might look like:
Enter postfix expression:
5 8 9 + *
The value of the expression is result of postfix
More expressions (Y or N)? Y
Enter postfix expression:
9 5 /
The value of the expression is 1
More expressions (Y or N)? N
program should perform integer calculations only(single digit only). Do not use floating-point (float or double) variables for your calculations.
--------------------------------------------------------------------------------------------------------------------
Second part would be interesting in this part we have to do error checking after calculator thoroughly tested.
Error checking
1). Invalid character in the input expression- if the error occurs, print an error message stating that an invalid character was encountered.
2) Stack is empty when the algorithm needs to remove an operand- this happens when the expression has too many operators or when the operators and operands are not ordered correctly. We call this a malformed expression, if this occurs, print an error message indicating that the expression is malformed.
3). When the loop in the algorithm ends, there should be exactly one value left on the stack and it is the value of input expression. If the input contained too many operands, there will be more than one value left on the stack. If you remove what should be the result of the expression and the stack is not empty, then the expression was malformed and should print error message indicating.
In all cases, if an error occurs do not try to continue processing the input string and do not try to print the value of the expression. Just print the error message. Do not end application- just ask user if he wants to try another expression.
In: Computer Science
Number of spacecraft that visited both Jupiter and Saturn but neither Uranus nor Neptune:
(Please explain for a rating. Thanks!)
In: Physics
In: Computer Science
1) 1.95 moles of HBr in 250.0 mL flask is consumed in 1.00 minutes in the gas phase reaction 2 HBr(g) → H2(g) + Br2(g) at 150°C. The rate of reaction is __________ M∙s-1.
|
3.85 |
||
|
0.0650 |
||
|
0.0169 |
||
|
0.260 |
||
|
0.0860 |
2)The reaction A → C is found to be zero order. Which of the following will give a linear plot?
|
(A) vs. time |
||
|
ln(A) vs. time |
||
|
1/(A) vs. time |
||
|
None of these will be linear. |
3)Which of the following is not a colligative property?
|
depression of solvent vapor pressure upon addition of a solute to a solvent |
||
|
elevation of the boiling point of a solution upon addition of a solute to a solvent |
||
|
depression of the freezing point of a solution upon addition of a solute to a solvent |
||
|
an increase in the osmotic pressure of a solution upon the addition of more solute |
||
|
the increase of reaction rates with increase in temperature |
4)
Yeast and sugar are added to champagne to give the sparkle of carbonation. Under what conditions is carbon dioxide gas most soluble?
|
low temperature, high pressure |
||
|
low temperature, low pressure |
||
|
high temperature, low pressure |
||
|
high temperature, high pressure |
||
|
none of these |
5)
In general, the solubility of ________ in water decreases as temperature increases.
|
liquids |
||
|
solids |
||
|
gases |
||
|
none of these |
6) In a solution, the solvent is:
|
always water |
||
|
the substance in the greatest amount |
||
|
the substance that is dissolved |
||
|
always a gas |
In: Chemistry
A long answer question will require one to three paragraphs
Describe and compare the phenomena of genes that follow polygenic inheritance, multiple alleles, codominance, and incomplete dominance?
In: Biology