Click on the following icon
in order to copy its contents into a spreadsheet.)
|
Balance Sheet Accounts of Roman Corporation |
||
|
Account |
Balance 12/31/2016 |
Balance 12/31/2017 |
|
Accumulated depreciation |
$2,030 |
$2,668 |
|
Accounts payable |
$1,797 |
$2,070 |
|
Accounts receivable |
$2,479 |
$2,690 |
|
Cash |
$1,307 |
$1,095 |
|
Common stock |
$4,990 |
$4,990 |
|
Inventory |
$5,807 |
$6,038 |
|
Long-term debt |
$7,799 |
$8,192 |
|
Plant, property, and equipment |
$8,407 |
$9,195 |
|
Retained earnings |
$1,384 |
$1,098 |
Balance sheet. From the following balance sheet accounts in the popup window,
,a. construct a balance sheet for 2016 and 2017.
b. list all the working capital accounts.
c. find the net working capital for the years ending 2016 and 2017.
d. calculate the change in net working capital for the year 2017.
a. construct a balance sheet for 2016 and 2017.
Complete the balance sheet for 2016 below: (Round to the nearest dollar.)
|
Roman Corporation |
|||||||||
|
Balance Sheet as of December 31, 2016, and December 31, 2017 |
|||||||||
|
ASSETS |
2016 |
2017 |
LIABILITIES |
2016 |
2017 |
||||
|
Current assets |
Current liabilities |
||||||||
|
$ |
$ |
||||||||
|
$ |
Total current liabilities |
$ |
|||||||
|
$ |
$ |
||||||||
|
Total current assets |
$ |
Total liabilities |
$ |
||||||
|
Fixed assets |
OWNERS’ EQUITY |
||||||||
|
$ |
$ |
||||||||
|
$ |
$ |
||||||||
|
$ |
Total owners’ equity |
$ |
|||||||
|
TOTAL LIABILITIES AND |
|||||||||
|
TOTAL ASSETS |
$ |
OWNERS’ EQUITY |
$ |
||||||
Choose from any list or enter any number in the input fields and then click Check Answer.
In: Finance
A major overhaul of the Federal Tax structure was enacted at the end of 2017, effective beginning with the 2018 tax year. This assignment consists of calculations to gauge effects on situations as described.
In all cases, for this assignment, assume that the tax being calculated is for a “Married couple filing jointly” who do not itemize deductions, and have no other additions, subtractions, or any tax situations not specifically stated. Complete the table below, finding the difference between the tax due in 2016 and 2018 (all numbers should be rounded to whole dollars). When your table is complete, save this document and either submit it as an attachment via email or turn in a hard copy in class – this assignment is due no later than Monday, April 23rd.
Up to (8) “extra credit” points will be added to your score for Current Event Assignment #2.
|
income |
40,000 |
120,000
|
500,000 |
|
|
total no of additional dependents |
0 |
3 |
2 |
|
|
dependents under 17 |
0 |
1 |
2 |
|
|
2016 |
standard deduction amount |
|||
|
2016 |
dollar amount of exemptions |
|||
|
2016 |
taxable income |
|||
|
2016 |
gross tax amount |
|||
|
2016 |
child tax credit amount |
|||
|
2016 |
final amount of tax due |
|||
|
2018 |
standard deduction amount |
|||
|
2018 |
dollar amount of exemptions |
|||
|
2018 |
taxable income |
|||
|
2018 |
gross tax amount |
|||
|
2018 |
child tax credit amount |
|||
|
2018 |
final amount of tax due |
|||
|
difference in amount of tax due, 2018 vs 2016 |
||||
In: Accounting
Comparative Earnings per Share
Lucas Company reports net income of $5,125 for the year ended December 31, 2016, its first year of operations. On January 4, 2016, Lucas issued 9,000 shares of common stock. On August 2, 2016, it issued an additional 3,000 shares of stock, resulting in 12,000 shares outstanding at year-end.
During 2017, Lucas earned net income of $16,400. It issued 2,000 additional shares of stock on March 3, 2017, and declared and issued a 2-for-1 stock split on November 3, 2017, resulting in 28,000 shares outstanding at year-end.
During 2018, Lucas earned net income of $23,520. The only common stock transaction during 2018 was a 20% stock dividend issued on July 2, 2018.
If required, round your final answers to two decimal places.
Required:
In: Accounting
Comparative Earnings per Share
Lucas Company reports net income of $5,125 for the year ended December 31, 2016, its first year of operations. On January 4, 2016, Lucas issued 9,000 shares of common stock. On August 2, 2016, it issued an additional 3,000 shares of stock, resulting in 12,000 shares outstanding at year-end.
During 2017, Lucas earned net income of $16,400. It issued 2,000 additional shares of stock on March 3, 2017, and declared and issued a 2-for-1 stock split on November 3, 2017, resulting in 28,000 shares outstanding at year-end.
During 2018, Lucas earned net income of $23,520. The only common stock transaction during 2018 was a 20% stock dividend issued on July 2, 2018.
If required, round your final answers to two decimal places.
Required:
In: Accounting
Convert this java code from hashmap into arraylist.
import java.io.*;
import java.util.*;
public class Solution {
public static void main(String[] args) throws IOException {
Scanner sc = new Scanner(System.in);
HashMap labs = new HashMap();
while (true) {
System.out.println("Choose operation : ");
System.out.println("1. Create a Lab");
System.out.println("2. Modify a Lab");
System.out.println("3. Delete a Lab");
System.out.println("4. Assign a pc to a Lab");
System.out.println("5. Remove a pc from a Lab");
System.out.println("6. Quit");
int choice = sc.nextInt();
String name=sc.nextLine();
switch (choice) {
case 1:
System.out.println("Enter Lab name (i.e. LAB A or LAB B) : ");
name = sc.nextLine();
labs.put(name, new Lab(name));
break;
case 2:
System.out.println("Enter name of lab to modify : ");
name = sc.nextLine();
if (labs.containsKey(name)) {
System.out.println("Enter new name to modify : ");
String name2 = sc.nextLine();
Lab lab = labs.get(name);
labs.remove(name);
labs.put(name2, lab);
} else {
System.out.println("Invalid name");
}
break;
case 3:
System.out.println("Enter name of lab to delete : ");
name = sc.nextLine();
if (labs.containsKey(name)) {
Lab lab = labs.get(name);
System.out.println("Total pc in this lab are : " + lab.pc_count);
labs.remove(name);
} else {
System.out.println("Invalid name");
}
break;
case 4:
System.out.println("Enter name of lab to assign a pc : ");
name = sc.nextLine();
if (labs.containsKey(name)) {
if (labs.get(name).pc_count >= 50) {
System.out.println("cannot assign more pc");
} else {
labs.get(name).pc_count++;
}
} else {
System.out.println("Invalid name");
}
break;
case 5:
System.out.println("Enter name of lab to assign a pc : ");
name = sc.nextLine();
if (labs.containsKey(name)) {
if (labs.get(name).pc_count <= 0) {
System.out.println("cannot remove pc");
} else {
labs.get(name).pc_count--;
}
} else {
System.out.println("Invalid name");
}
break;
case 6:
return;
default:
System.out.println("Invalid choice choose again.");
break;
}
}
}
static class Lab {
String name;
int pc_count;
Lab(String name) {
this.name = name;
pc_count = 0;
}
}
}In: Computer Science
Wildhorse Company has provided information on intangible assets
as follows.
● Wildhorse incurred research and development costs in 2017 as
follows.
| Materials and equipment |
$150,000 |
|
| Personnel |
281,000 |
|
| Indirect costs |
21,000 |
|
|
$452,000 |
Wildhorse estimates that these costs will be recouped by December
31, 2020. The materials and equipment purchased have no alternative
uses.
● A patent was purchased from Sandhill Company for $810,000 on
January 1, 2016. Wildhorse estimated the remaining useful life of
the patent to be 10 years. The patent was carried in Sandhill’s
accounting records at a net book value of $1,790,000 when Sandhill
sold it to Wildhorse.
● During 2017, a franchise was purchased from Clinton Company for
$371,000. In addition, 5% of revenue from the franchise must be
paid to Clinton. Revenue from the franchise for 2017 was
$1,240,000. Wildhorse estimates the useful life of the franchise to
be 10 years and takes a full year’s amortization in the year of
purchase.
● On January 1, 2017, because of recent events in the field,
Wildhorse estimates that the remaining life of the patent purchased
on January 1, 2016, is only 5 years from January 1, 2017.
Prepare a schedule showing the intangibles section of Wildhorse’s balance sheet at December 31, 2017. (Enter account name only and do not provide descriptive information.)
|
WILDHORSE COMPANY |
||||||
|---|---|---|---|---|---|---|
|
select an opening section name Current AssetsCurrent LiabilitiesIntangible AssetsLong-term InvestmentsLong-term LiabilitiesProperty, Plant and EquipmentStockholders' EquityTotal AssetsTotal Current AssetsTotal Current LiabilitiesTotal Intangible AssetsTotal LiabilitiesTotal Liabilities and Stockholders' EquityTotal Long-term InvestmentsTotal Long-term LiabilitiesTotal Property, Plant and EquipmentTotal Stockholders' Equity |
||||||
|
enter an account title |
$enter a dollar amount |
|||||
|
enter an account title |
enter a dollar amount | |||||
|
select a closing section name Current AssetsCurrent LiabilitiesIntangible AssetsLong-term InvestmentsLong-term LiabilitiesProperty, Plant and EquipmentStockholders' EquityTotal AssetsTotal Current AssetsTotal Current LiabilitiesTotal Intangible AssetsTotal LiabilitiesTotal Liabilities and Stockholders' EquityTotal Long-term InvestmentsTotal Long-term LiabilitiesTotal Property, Plant and EquipmentTotal Stockholders' Equity |
$enter a total amount for this section | |||||
eTextbook and Media
List of Accounts
Prepare a schedule showing the income statement effect (related to expenses) for the year ended December 31, 2017, as a result of the facts above. (Enter account name only and do not provide descriptive information.)
|
WILDHORSE COMPANY |
||||
|---|---|---|---|---|
|
select an opening name for section one Research and Development CostsAmortization of Franchise for 2017Amortization of Patent for 2017Total Charged against IncomePatent from Sandhill CompanyFranchise from Clinton CompanyPayment to Clinton Company: |
||||
|
select an account title Amortization of Patent for 2017Patent from Sandhill CompanyAmortization of Franchise for 2017Franchise from Clinton CompanyTotal Charged against IncomeResearch and Development CostsPayment to Clinton Company |
$enter a dollar amount |
|||
|
select an opening name for section two Amortization of Franchise for 2017Research and Development CostsPayment to Clinton CompanyAmortization of Patent for 2017Franchise from Clinton CompanyTotal Charged against IncomePatent from Sandhill Company: |
||||
|
select an account title Total Charged against IncomeFranchise from Clinton CompanyResearch and Development CostsAmortization of Patent for 2017Patent from Sandhill CompanyPayment to Clinton CompanyAmortization of Franchise for 2017 |
$enter a dollar amount |
|||
|
select an account title Payment to Clinton CompanyPatent from Sandhill CompanyTotal Charged against IncomeFranchise from Clinton CompanyAmortization of Franchise for 2017Research and Development CostsAmortization of Patent for 2017 |
enter a dollar amount | |||
|
enter a subtotal of the two previous amounts |
||||
|
select an account title Total Charged against IncomeAmortization of Franchise for 2017Franchise from Clinton CompanyPatent from Sandhill CompanyResearch and Development CostsPayment to Clinton CompanyAmortization of Patent for 2017 |
enter a dollar amount | |||
|
select a closing name for this statement Franchise from Clinton CompanyPayment to Clinton CompanyPatent from Sandhill CompanyTotal Charged against IncomeResearch and Development CostsAmortization of Franchise for 2017Amortization of Patent for 2017 |
$enter a total amount for this statement | |||
In: Accounting
You are the CSCO for Swashbuckler Enterprises (SE). You CEO just left your office and she is not happy. She thinks all the SCM department does is spend, spend, spend and never creates value for the firm. Furthermore, she holds up the Marketing department as the primary source of revenue and hence, customer effectiveness. In order to exonerate the SCM department and ultimately, your own name, you have decided to run the numbers on your most recently concluded negotiation (Q4 of 2016) to show once and for all how SCM can create value. In this negotiation, you were able to get your supply base to reduce the COGS by 8%. Assignment: Using the numbers below , answer the questions below. Table 1 Earnings and Expenses for Q4. 2016: Pre-negotiation Sales $9,250,000 Cost of Goods Sold $8,500,000 Profit $750,000
1. What is the new COGS after the 8% negotiated reduction?
2. What is the resulting new profit?
3. What is the difference between the old and new profit, both in terms of dollar amount and percentage?
4. What is the resulting new contribution to profit, per dollar of sales?
5. How much does the Marketing department need to increase sales in order to match the same increase in profit? NOTE: Round your answers up Your SCM department has been able to negotiate an additional 4% reduction in the COGS. Using the sales figure from Table 1 and your answers to questions 1-3, answer the following.
In: Finance
|
The following transactions and adjusting entries were completed by a local delivery company called Fast Delivery. The company uses straight-line depreciation for delivery vehicles, double-declining-balance depreciation for buildings, and straight-line amortization for franchise rights. |
| January | 2 | , 2015 |
Paid $179,000 cash to purchase a small warehouse building near the airport. The building has an estimated life of 20 years and a residual value of $3,700. |
| July | 1 | , 2015 |
Paid $47,000 cash to purchase a delivery van. The van has an estimated useful life of five years and a residual value of $9,400. |
| October | 2 | , 2015 |
Paid $700 cash to paint a small office in the warehouse building. |
| October | 13 | , 2015 | Paid $100 cash to get the oil changed in the delivery van. |
| December | 1 | , 2015 |
Paid $84,000 cash to UPS to begin operating Fast Delivery business as a franchise using the name The UPS Store. This franchise right expires in five years. |
| December | 31 | , 2015 |
Recorded depreciation and amortization on the delivery van, warehouse building, and franchise right. |
| June | 30 | , 2016 |
Sold the warehouse building for $143,000 cash. (Record the depreciation on the building prior to recording its disposal.) |
| December | 31 | , 2016 |
Recorded depreciation on the delivery van and amortization on the franchise right. Determined that the franchise right was not impaired in value. |
| Required: |
|
Prepare the journal entries required on each of the above dates. (If no entry is required for a transaction/event, select "No Journal Entry Required" in the first account field. Do not round intermediate calculations.) |
In: Accounting
Question 4
StorageTek Corporation gathered the following information from its accounting records for the year ended December 31, 2016, prior to adjustment:
bad debts at 3% of net credit sales.
entry is recorded.
Storage Tek Corporation.
In: Accounting
On January 4, 2016, Spandella Company purchased 168,000 shares of Filington Company directly from one of the founders for a price of $27 per share. Filington has 560,000 shares outstanding, including the shares acquired by Spandella Company. On July 2, 2016, Filington paid $717,000 in total dividends to its shareholders. On December 31, 2016, Filington reported a net income of $963,000 for the year. Spandella uses the equity method in accounting for its investment in Filington.
Required:
| A. | Provide the Spandella Company journal entries for the transactions involving its investment in Filington Company during 2016. Refer to the Chart of Accounts for exact wording of account titles. |
| B. | Determine the December 31, 2016, balance of the Investment in Filington Company Stock account. |
In: Accounting