Answer:
(C) Log Analysis
Explanation:
Log Analysis is a computer management system that logs records. This log analysis records everything, so if there is an ongoing problem, it will be recorded. Once its recorded and known, a solution can be provided.
Answer:
Explanation:
CODE:
import java.io.*;
class Test
{
public static void main(String[] args) {
File file = new File("input.txt");
try{
BufferedReader b = new BufferedReader(new FileReader(file));
String line;
while ((line = b.readLine()) != null)
{
for(int i=0;i<line.length();i++)
{
char c=line.charAt(i);
if((c>='A' && c<='Z') || (c>='a' && c<='z') || (c>='0' && c<='9')) //check if char is digit or alphabet
System.out.print(c);
else
System.out.println("\n"+c);
}
}
}
catch(Exception e)
{
System.out.println(e);
}
}
}
Answer:
The project should be rejected because the costs are larger than the benefits.
Explanation:
EAW = equivalent annual worth = equivalent annual benefit - equivalent annual cost
equivalent annual cost = ($6,150,000 x 12%) + $115,000 = $853,000
equivalent annual benefit = $775,000
EAW = $775,000 - $853,000 = -$78,000
since the EAW is negative, then the project should not be carried out.
Another way to calculate this is by dividing benefits by costs. If the answer is 1 or higher, then the project should be accepted:
B/C = $775,000 / $853,000 = 0.9086 ≤ 1, project rejected
C Variable Cost Fixed
D Variable Cost VariableA) Choice C B) Choice D C) Choice A D) Choice B
Answer:
The correct answer is letter "B": Choice D.
Explanation:
Fixed costs are business expenses that do not change when production levels increase or decrease. These are one of two types of business expenses and the other is variable costs. Variable costs change with increases or decreases in production volume. Then:
1)The wages paid to the taco makers and other employees - Variable Costs
2)Materials (e.g., cheeses, salsa, tomatoes, lettuce, taco shells, etc.) used to make the tacos - Variable Costs
Answer:
Structural policy
Explanation:
This is an example of what is known as structural policy.
There are times where the problem of an economy get to be more and also last longer than inadequate demand. This problem can be caused by government policies or sometimes private practices that cause an impediment on the efficient production of goods and Also services. In other to fix a problem such as this, changes have to be made to the economy. Such changes is what is regarded as structural policy.
b. nonphysical constraints
c. bottleneck activities
d. work order
Answer:
The correct answer is letter "B": nonphysical constraints.
Explanation:
According to the Theory of Constraints (TOC) a constraint is a limiting factor that does not enable companies to perform their work at their maximum capacity for their goals' achievement. In the same sense, nonphysical constraints are not material factors negatively influencing employees' actions. Wages cuts, reduction of benefits, unclear lines of command are examples of that kind of constraint.
a. Compute Selma's accrual basis gross receipts for 2015.
b. Selma paid cash for all of the purchases. The total amount paid for merchandise in 2020 was $1,300,000. At the end of 2019, she had merchandise on hand with a cost of $150,000. At the end of 2020, the cost of merchandise on hand was $300,000. Compute Selma's gross income (profit) from merchandise sales for 2015.
Answer:
a. $1,350,000
b. $200,000
Explanation:
The computation is shown below;
a. Accrual basis gross receipts for the year 2015 is
= Cash receipts + account receivable from year 2015 - collection in account receivable - proceeds of bank loan
= $1,400,000 + $250,000 - $200,000 - $100,000
= $1,350,000
b. Now the Gross income or profit is
As we know that
Gross profit is
= Sales - cost of goods sold
= $1,350,000 - ($1,300,000 + $150,000 - $300,000)
= $1,350,000 - $1,150,000
= $200,000
Selma's accrual basis gross receipts for 2015 would be $1,350,000, and her gross income (profit) from merchandise sales for the same year would be $200,000.
To calculate Selma's accrual basis gross receipts for 2015, we need to adjust her cash receipts, which totals up to $1.4 million. The receipts include $200,000 that was actually earned in 2014 (collected in 2015) and a $100,000 bank loan that does not count as earned revenue. So, we subtract these from the total receipts: $1,400,000 - $200,000 - $100,000 = $1,100,000. And we add the amounts receivable at the end of 2015 which is $250,000. So, Selma's accrual basis gross receipts for 2015 is $1,350,000 ($1,100,000 + $250,000).
For the second part of your question, Selma's gross income (profit) from merchandise sales for 2015 can be computed by calculating the cost of goods sold (COGS) and subtracting this from the gross receipts calculated above. Start by adding the cost of merchandise on hand at the end of 2019 ($150,000) to the purchases made in 2020 ($1,300,000). This gives us a presupposed cost of goods available for sale. We then subtract the cost of the merchandise on hand at the end of 2020 ($300,000). The COGS is, therefore, $1,150,000. Subtraction the COGS from the gross receipts gives us a gross income of $200,000 ($1,350,000 - $1,150,000).
#SPJ3