GradePack

    • Home
    • Blog
Skip to content
bg
bg
bg
bg

GradePack

Penn acquired 100% of Senn on January 2, 20X4. During 20X4,…

Penn acquired 100% of Senn on January 2, 20X4. During 20X4, Penn sold goods to Senn for $700,000 that cost Penn $500,000. Senn still owned 40% of the goods ($280,000) at the end of the year. Cost of goods sold was $1,000,000 for Penn and $990,000 for Senn. What was the consolidated cost of goods sold? (Hint: Penn COGS + Senn COGS – inter-company COGS.)

Read Details

Information for Questions 37 to 40 Inter-company Debt Transa…

Information for Questions 37 to 40 Inter-company Debt Transaction On December 31, 20X4, Senn paid $188,000 to purchase $200,000 of the outstanding bonds from a third-party investor issued by Penn. The bonds mature on December 31, 20X8, and were originally issued at par. The bonds pay interest annually on December 31st of each year, and the interest was paid to the prior investor immediately before Senn’s purchase of the bonds. When entering your answers,  round them to the nearest dollar, enter them as numbers with no decimal places and no dollar ($) signs, and enter the numbers with or without the comma separator (e.g., either 28,374 or 28374). If a question is asking about an amount for which there is no entry, you must enter a 0. Blanks are marked as incorrect. For partial credit, do the following: After stating your answers, use the partial credit question that follows to show how you arrived at them (e.g., 13,000 [= 7,000 from ” ” + 6,000 from ” “]). Include any explanations or logic you used to arrive at your answers.

Read Details

While developing a customer support software application in…

While developing a customer support software application in the “Soft Systems” company based in North Virginia Technology Park, the software developer, Tom, suspects a possible vulnerability that can leak customers’ private data. His manager, Jim, wants the new application released asap. Tom is trying to convince Jim to delay the release of the software application until proper software testing is conducted. Discuss briefly some legal and ethical arguments that Tom can present to Jim?  (Answer in about 90 words)

Read Details

Note 1:  The following 6 questions show gdb memory dumps of…

Note 1:  The following 6 questions show gdb memory dumps of the heap from a malloc implementation with the following features: We always use headers and footers in all blocks, and they are equal to each other. The headers/footers contain the size of the block including the size of the header and footer and user payload space The headers/footers contain an alloc bit in the lowest bit to indicate if the block is allocated (1) or free (0) We use a prologue header/footer with the size of the prologue (i.e., 16 bytes) We use an epilogue header with a size of 0 The heap is initialized without any space between the prologue and epilogue (i.e., empty heap) When adding space at the end of the heap in malloc, we add the minimum necessary space to fit the user request while accounting for alignment issues malloc will split blocks into the minimum space for the user to leave the most free space for later use free will immediately coalesce neighboring blocks We use an implicit free list implementation (i.e., no explicit free list or segregated free list)

Read Details

Based on the given information, what is the consolidated net…

Based on the given information, what is the consolidated net income?

Read Details

Based on the following gdb memory dump of the heap, (gdb) x/…

Based on the following gdb memory dump of the heap, (gdb) x/14gx mm_heap_lo()0x7efff724c000: 0x0000000000000000      0x00000000000000110x7efff724c010: 0x0000000000000011      0x00000000000000500x7efff724c020: 0x5dd631b4ff8fd5e2      0xa8b8a0fa409d624d0x7efff724c030: 0x0000000000000020      0x00000000000000300x7efff724c040: 0x14704f8a5d791845      0xa1f6d94b963e0b3b0x7efff724c050: 0xc470dfa326757a74      0xa5d1c56086f01a290x7efff724c060: 0x0000000000000050      0x0000000000000001 How many free blocks are in the heap? Do not include the prologue/epilogue/padding in your count. [free] How many allocated blocks are in the heap? Do not include the prologue/epilogue/padding in your count. [alloc]

Read Details

Penn owns 100% of Senn. On January 1, 20X4, Penn sold equipm…

Penn owns 100% of Senn. On January 1, 20X4, Penn sold equipment with an original cost of $40,000 and a carrying amount of $24,000 to Senn for $36,000. Penn had been depreciating the equipment over a five-year period using straight-line depreciation with no residual value. Senn is using straight-line depreciation over three years with no residual value. In Penn’s December 31, 20X4, consolidating worksheet, by what amount should depreciation expense be decreased?

Read Details

Penn owns 80% of Senn’s common stock. On January 2, 2024, Pe…

Penn owns 80% of Senn’s common stock. On January 2, 2024, Penn sold to Senn for $40,000 equipment with a book value of $28,000. Senn is depreciating the acquired equipment over a six-year useful lifespan using the straight-line method. How would the adjustments to compute the 2024 and 2025 consolidated income statements (ignoring tax) increase and/or decrease? Adjustment Choices Option Year 2024 Year 2025 A ($10,000) $2,000 B ($10,000) $0 C ($12,000) $2,000 D ($12,000) $0  

Read Details

static void* coalesce(void* curr){    void* prev = prev_payl…

static void* coalesce(void* curr){    void* prev = prev_payload_pointer(curr);    void* next = next_payload_pointer(curr);    uint64_t prev_alloc = get_alloc(get_header(prev));    uint64_t next_alloc = get_alloc(get_header(next));    uint64_t size = get_size(get_header(curr));    //case 1    if (prev_alloc && next_alloc) {        return curr;    }    //case 2    else if (prev_alloc && !next_alloc) {        size += get_size(get_header(next));        set([case2_header], pack(size, 0));        set(get_footer(next), pack(size, 0));        return [case2_ret];    }    //case 3    else if (!prev_alloc && next_alloc) {        size += get_size(get_header(prev));        set([case3_header], pack(size, 0));        set(get_footer(curr), pack(size, 0));        return [case3_ret];    }    //case 4    else {        size += get_size(get_header(prev)) + get_size(get_header(next));        set([case4_header], pack(size, 0));        set(get_footer(next), pack(size, 0));        return [case4_ret];    }}

Read Details

In computing the non-controlling interest’s share of consoli…

In computing the non-controlling interest’s share of consolidated net income, how should the subsidiary’s net income be adjusted for inter-company transactions?

Read Details

Posts pagination

Newer posts 1 … 37,373 37,374 37,375 37,376 37,377 … 93,251 Older posts

GradePack

  • Privacy Policy
  • Terms of Service
Top