Skip to main content

Computing merchandising amounts and formatting income statements

Problem 5-4A Computing merchandising amounts and formatting income statements LO C2, P4 [The following information applies to the questions displayed below.] Valley Company's adjusted trial balance on August 31, 2013, its fiscal year-end, follows.DebitCredit Merchandise inventory$34,500 Other (noninventory) assets138,000 Total liabilities$39,848 K. Valley, Capital115,114 K. Valley, Withdrawals8,000 Sales235,980 Sales discounts3,610 Sales returns and allowances15,575 Cost of goods sold91,673 Sales salaries expense32,329 Rent expense—Selling space11,091 Store supplies expense2,832 Advertising expense20,058 Office salaries expense29,498 Rent expense—Office space2,832 Office supplies expense944 Totals$390,942$390,942On August 31, 2012, merchandise inventory was $27,842. Supplementary records of merchandising activities for the year ended August 31, 2013, reveal the following itemized costs. Invoice cost of merchandise purchases$101,430 Purchase discounts received2,130 Purchase returns and allowances4,869 Costs of transportation-in3,900References Section BreakProblem 5-4A Computing merchandising amounts and formatting income statements LO C2, P4 4. Required:1.Compute the company's net sales for the year. WorksheetDifficulty: MediumLearning Objective: 05-P4 Define and prepare multiple-step and single-step income statements. Problem 5-4A Part 1Learning Objective: 05-C2 Identify and explain the inventory asset and cost flows of a merchandising company. Problem 5-4A Part 2 2.Compute the company's total cost of merchandise purchased for the year. 05-P4 Define and prepare multiple-step and single-step income statements. Problem 5-4A Part 2Learning Objective: 05-C2 Identify and explain the inventory asset and cost flows of a merchandising company. Problem 5-4A Part 3 3.Prepare a multiple-step income statement that includes separate categories for selling expenses and for general and administrative expenses. WorksheetDifficulty: MediumLearning Objective: 05-P4 Define and prepare multiple-step and single-step income statements. Problem 5-4A Part 3Learning Objective: 05-C2 Identify and explain the inventory asset and cost flows of a merchandising company. Problem 5-4A Part 4 4.Prepare a single-step income statement that includes these expense categories: cost of goods sold, selling expenses, and general and administrative expenses.

Comments

Popular posts from this blog

Why was this movie important to hollywood? What was the feeling of it, the colors, techniques, theme, director, style, music, anything! What was special about Alfred Hitchcock and this film?

  Directions For this assignment, you will need to choose a topic or person from any of the various eras, movements or decades that we've discussed this semester and do a presentation on them using any media format you choose. (IM CHOOSING THE MOVIE PSYCHO-    Why was this movie important to hollywood? What was the feeling of it, the colors, techniques, theme, director, style, music, anything!  What was special about Alfred Hitchcock and this film? The subject matter doesn't have to be limited to an actor, director or filmmaker, but  the topic of your presentation could be on the inventions of any of the equipment, editing or filming techniques that you've learned about.  Basically, you can pick an area to cover and do your presentation on that.  The point is that you take a deeper dive into the subject by exploring information about it that may not have been  covered in this course.  It does have to...

Account Cost Systems and Cost Behaviors

  ACC501 Account Cost Systems and Cost Behaviors You are applying for a managerial position at an innovative and rapidly growing company. This is a dynamic company that wants an individual who adds value to the organization. Managers at this company wear many hats, so the position requires managing products, people, and financial aspects of running the company. As part of the interview process, you are required to make a presentation covering four different topics, one per module for this course. You choose the company and the new product that you want to showcase in your presentation. It can be real or fictitious (based on an industry). This is for background purposes only. The presentation is to showcase your abilities and what you can contribute to the organization. IBIS World (access on the Trident Portal through the Online Library > Additional Library Resources > IBISWorld link) and BizStats have estimates of cost of goods sold ...

Starting with this provided code, add the following functionality

1.Starting with this provided code, add the following functionality: Replace hardcoded strings “Zero”, “One”, “Two”, “Three” in the ArrayList based on user typed input (use Scanner or JOptionPane classes). The user will be prompted for the String to be stored in the ArrayList and then hit enter. The user will be able to continue to add items to the ArrayList until they just hit enter without typing anything. Once the user does this (hits enter without typing anything), the program will display all of the elements of the ArrayList, both the index and String values, in a table. It will do this via a single loop making use of an iterator method. 2. Starting with this provided code, add the following functionality: Use a Try/Catch block so that the exception is caught and the program exits a bit more gracefully. Save this file as TryCatch.java. (Be sure to rename the Public Class accordingly.) Starting with the provided code again (without the Try/Catch block), fix the code so that ...