Ace - AI Tutor
Ask Our Educators
Textbooks
My Library
Flashcards
Scribe - AI Notes
Notes & Exams
Download App
samuel berger

samuel b.

Divider

Questions asked

BEST MATCH

2 of 2 REQUIREMENT 2: Prepare a partial income statement for 20 Y 4 starting with Income from Continuing Operations Before Tax, adjusted for any above the line changes (Hint: You calculated this in Requirement 1). Assume a tax rate of 30%. Income from Continuing Operations Before Tax _(_())_(_()) _(_())_(_()) _(_())_(_()) _(_())_(_()) _(_())_(_()) _(_())_(_()) _(_())_(_()) _(_())_(_()) _(_())_(_()) _(_())_(_()) _(_())_(_()) _(_())_(_()) Net Income (Loss) $340,200 CHAPTER 3 IN-CLASS ACTIVITY | PAGE 1 REQUIREMENT 3: Prepare any necessary 20 Y 4 prior period adjustment journal entries for the four transactions listed on Page 1. Assume a tax rate of 30%. If a prior period adjustment is not needed, simply note "N/A" for not applicable. At the beginning of 20 Y 2 , the corporation purchased equipment for $74,000 (salvage value of $14,000 ) that had a useful life of 6 years. The bookkeeper used straight-line depreciation for 20Y2, 20Y3, and 20 Y 4 but incorrectly used a 10-year useful life in determining the deprecation amount. A severe storm with torrential rains destroyed an onsite warehouse due to flooding. This resulted in an unusual pre-tax loss of $15,000. Vanpop disposed of its consumer division during 20Y4. The division generated a $155,000 pre-tax loss on operations during the year but provided a $230,000 pre-tax gain on disposal. Assume that this transaction meets the criteria for discontinued operations. The corporation decided to change its cost flow method of inventory from average cost to the FIFO method. The effect of this change on prior years is to increase 20 Y 2 income by $86,000 and increase 20 Y 3 income by $65,000 before taxes. The FIFO method was used for 20 Y 4.

View Answer
divider
BEST MATCH

Becoming a Teacher, 10th edition by Forrest W. Parkay and Beverly Hardcastle Stanford, Saddle River, N.J.: Pearson Prentice Hall.

View Answer
divider
BEST MATCH

This security standard is internationally recognized as the standards for sound security practices and is focused on the standardization and certification of an organizations information security management system (ISMS).

View Answer
divider
BEST MATCH

Graphing Strategy Final Version 1. Analyze f(x). Find the domain of f. Find the intercepts. Find asymptotes. 2. Analyze f'(x). Find the [Select] for f' and the [Select] of f. Construct a sign chart for f'(x) to determine the intervals on which ƒ is [Select] . Find [Select] of f. 3. Analyze f"(x). Find the [Select] for f"(x). Construct a sign chart for f"(x), determine the intervals on which ƒ is increasing and decreasing , and find the [Select] of f. 4. Sketch the graph of f. Draw asymptotes and locate intercepts, local maxima and minima, and inflection points. Sketch in what you know from steps 1-3. Plot additional points as needed and complete the sketch.

View Answer
divider
BEST MATCH

Place a control button in the worksheet that calls a VBA macro that processes the following sales data (your final code should work with data sheets that have more or fewer regions and more or fewer months of data). Write your code so that it runs on the active worksheet. Where "Month" is in cell A3 and in cell A1 is your name. Using cell A3 as an anchor cell, code the following tasks in VB (Do NOT use For Next Loops): Find out the number of regions with data Find out the number of months with data Format the header (Region 1,..., Region 4) so that they are horizontally centered, have green background, bold, italic and black text. Add the word "Total" two columns after the last region in the data and on the same row of the header row. Center the text horizontally and make the background yellow, bold, italic and blue color. Using R1C1 notation place a formulas under the header "Total" with the sum of the sales in the regions for each of the months in the data. Format the numbers for the total using the NumberFormat = " 0 " property for a range. Use an input box to ask for the number of months in the moving average of total sales. Get the response to the input box in a string variable and check for a numeric value. If it is not a numeric value, show a message box and stop the program. If the user enters a valid number but it cannot be used because it exceeds the number of months available to calculate an average, then show a message box stating “Number in Moving Average is ##. This number cannot be greater than ##” and stop the program. 8. Clear the column where the moving averages of total sales are going to be. That is, clear the column that is three columns to the right of the last column with the sales data. (A moving average is the average of the previous months. For example, if the moving average is for 3 months, the first moving average that can be calculated is for the 4-th month and is equal to the average of the previous three months. The average of the 2nd, 3rd and 4th months is the moving average for the 5-th month, etc.) Note that the last moving average is the predicted sales for one month after the last month with data (Oct- 14 in this example). 9. If the number of months in the moving average specified in the input box is less than or equal to the number of months of data then use the fromulaR1C1 property to calculate the moving average corresponding to the first month where the moving average can be calculated (i.e., if number of months in the moving average is 4, then the first month for which the moving average can be calculated is month 5). Then copy this equation to all subsequent months until one month past the last month in the data. (Alternatively, you can specify the formulaR1C1 property to all the months that will have a calculated moving average.) 10. Format the numbers for the moving averages using the NumberFormat = “0.00” property for a range. 11. Label this column “Moving Average (#)” where # is the number of months in the moving average specified in the input box. Format this header with left-justified horizontal alignment, blue, bold and italic text. 12. In column A, label the row that is two rows after the last row of data with the word “Avg”. Center the text horizontally, make the font bold, italic and blue color and background yellow. 13. Using a string address extracted from a range defined using Range(Range(), Range()).Address to construct a formula to calculate the average over all months for Region 1 and place it under the column for Region 1 and on the same row where the word “Avg” was entered. Copy the cell with formula to calculate the average for the first region to the other three regions. (Note: if you prefer doing steps 13 a different way, it is ok.) 14. Format the numbers for the averages using the NumberFormat = “0.00” property for a range. For your records print the VB code using the task descriptions above as comments to your code to document the code. Add a worksheet named “forms” with the following (where the number in the moving average can be any valid number): Input box used to ask for the number of months in the moving average and the two message boxes. (use to place an image onto clipboard and then to paste or alternatively you can use the “snipping tool”). The first line in your code should have “Option Explicit” and your second line should be a comment statement with your name. Place a control button in the worksheet that calls a VBA macro that processes the following sales data (your final code should work with data sheets that have more or fewer regions and more or fewer months of data). Write your code so that it runs on the active worksheet. Month Region 1 Region 2 Region 3 Region 4 Jan-13 1351 383 1432 1519 Feb-13 1218 617 1467 1504 Mar-13 1694 873 1092 1137 Apr-13 1652 636 1096 1227 May-13 1301 574 1355 1170 Jun-13 1264 451 978 1696 Jul-13 1073 945 958 1113 Aug-13 1512 567 1038 1501 Sep-13 1752 515 1397 1378 Oct-13 1664 704 938 1601 Nov-13 1657 477 904 1381 Dec-13 1359 510 1210 1188 Jan-14 1801 317 1158 1158 Feb-14 1509 552 1332 1598 Mar-14 1329 828 1432 1636 Apr-14 1337 807 1399 1317 May-14 1052 341 1178 1327 Jun-14 1708 992 1495 1331 Jul-14 1596 524 1058 1103 Aug-14 1535 897 1272 1371 Sep-14 1856 628 1023 1414 Where Month is in cell A3 and in cell A1 is your name. Using cell A3 as an anchor cell, code the following tasks in VB (Do NOT use For Next Loops): 1. Find out the number of regions with data 2. Find out the number of months with data Format the header (Region 1, ..., Region 4) so that they are horizontally centered, have green background, bold, italic and black text. 4 Add the word Total two columns after the last region in the data and on the same row of the header row. Center the text horizontally and make the background yellow, bold, italic and blue color. Using R1C1 notation place a formulas under the header Total with the sum of the sales in the regions for each of the months in the data. 6. Format the numbers for the total using the NumberFormat = 0 property for a range. 7. Use an input box to ask for the number of months in the moving average of total sales. Get the response to the input box in a string variable and check for a numeric value. If it is not a numeric value, show a message box and stop the program.

View Answer
divider
BEST MATCH

A collection of cells in the CNS with a similar function is called a peduncle tract nerve nucleus ganglion

View Answer
divider
BEST MATCH

11b) Three children of masses m₁ = 30kg, m₂ = 20kg, and m₃ = 40kg are balanced on a seesaw. Child m₁ and m₂ are each 2.25m from the pivot of the seesaw. A) How far is kid m₁ from the pivot so they are in balance? B) What is the force from the pivot on the seesaw?

View Answer
divider
BEST MATCH

Example 3: A \( 1.50 \mathrm{~m} \) long pendulum is lifted \( 30^{\circ} \) above its equilibrium point. Calculate the maximum speed of the pendulum.

View Answer
divider
BEST MATCH

E6.13 (LO 3, 4, 5) (Determine effect of cost formulas on liquidity.) The following comparative cost information is available for Kingswood Limited: Average Inventory Cost of Goods Sold FIFO Average cost $222,500 227,500 $750,000 735,000 Kingswood's current assets are $450,000, exclusive of inventory. Its current liabilities are $350,000. Instructions a. Calculate Kingswood's inventory turnover ratio assuming the company uses (1) FIFO and (2) average cost to determine the cost of the ending inventory.

View Answer
divider
BEST MATCH

Quina is cooking fish for a group of travelers. Quina has 78 huge fish, and each fish can feed 3 travelers.

View Answer
divider