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.)

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]

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      0x00000000000000310x7efff724c020: 0x804b225521e64cdc      0x4022321ebbe1e2c90x7efff724c030: 0xd411852de60e6fea      0x000000000000005a0x7efff724c040: 0x0000000000000031      0x00000000000000200x7efff724c050: 0xc470dfa326757a74      0xa5d1c56086f01a290x7efff724c060: 0x0000000000000020      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] This memory dump shows the state of the heap after a block was allocated for a malloc request.  What are the first 8 bytes of user payload data in this allocated block? Enter the value in hex, starting with 0x and with all letters lowercase. [first]

Penn owns 100% of the capital stock of both Senn and Tenn. S…

Penn owns 100% of the capital stock of both Senn and Tenn. Senn purchases merchandise inventory from Tenn at 120% of Tenn’s cost. During 20X4, merchandise that cost Tenn $60,000 was sold to Senn. Senn sold all of this merchandise to unrelated third-party customers for $82,000 during 20X4. In preparing combined financial statements for 20X4, Penn’s accountant disregarded the common ownership of Senn and Tenn. By what amount was unadjusted revenue overstated in the combined income statement for 20X4?

Consider the following gdb output: Program received signal S…

Consider the following gdb output: Program received signal SIGSEGV, Segmentation fault.0x000055555555cde5 in get (p=0x5797b6f91c87dac8) at mm.c:7777        return (*(size_t*)(p));(gdb) bt#0  0x000055555555cde5 in get (p=0x5797b6f91c87dac8) at mm.c:77#1  0x000055555555ce46 in get_alloc (bp=0x5797b6f91c87dac8) at mm.c:90#2  0x000055555555d16c in coalesce (bp=0x7efff7c002f0) at mm.c:152#3  0x000055555555d643 in mm_free (ptr=0x7efff7c002f0) at mm.c:296#4  0x000055555555acd7 in eval_mm_valid (trace=0x55555557a500, ranges=0x55555557a4e0) at mdriver.c:1186#5  0x00005555555584f4 in run_tests (num_tracefiles=24, tracedir=0x555555562080 “./traces/”, tracefiles=0x555555573a30,     mm_stats=0x555555574110, speed_params=0x7fffffffdec0) at mdriver.c:278#6  0x0000555555558ced in main (argc=1, argv=0x7fffffffe0b8) at mdriver.c:505(gdb) x/20gx 0x7efff7c002d00x7efff7c002d0:    0xbbcf56d0b26abd59    0x00000000000000200x7efff7c002e0:    0xa868c806db382820    0x00000000000000500x7efff7c002f0:    0x27cbd3e6758d7f64    0xc5e596a23619ba1e0x7efff7c00300:    0x32822deb7c00f30b    0xcb834d67406dc72b0x7efff7c00310:    0x02da0ce4b34110cc    0x952e1e8a6939f3c60x7efff7c00320:    0x862f935bfd112e11    0xb68d49e9c2c69c5a0x7efff7c00330:    0x0000000000000051    0x00000000000000300x7efff7c00340:    0x0a6eb91058083189    0x822fff98e760e1ab0x7efff7c00350:    0x5dbb93b11802f355    0x00000000000000000x7efff7c00360:    0x0000000000000030    0x0000000000000cb0 Dereferencing what address led to the segmentation fault? Enter the value in hex, starting with 0x and with all letters lowercase. [address] What is the address of the payload space of the block being freed? Enter the value in hex, starting with 0x and with all letters lowercase. [free_payload] What is the address of the footer of the previous block (relative to the block being freed)? Enter the value in hex, starting with 0x and with all letters lowercase. [footer_ptr] What value is in the footer of the previous block (relative to the block being freed)? Enter the value in hex, starting with 0x and with all letters lowercase. [footer_val]

Based on the given information, prepare the consolidation en…

Based on the given information, prepare the consolidation entries to eliminate inter-corporate bond holdings. Please use the following accounts for your entries. Accounts bonds payable investment in Penn bond gain on bond retirement or loss on bond retirement   Consolidation Entry Account Debit Credit [Account1] [Debit1] [Credit1]      [Account2] [Debit2] [Credit2]      [Account3] [Debit3] [Credit3]  

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      0x00000000000000210x7efff724c020: 0x5dd631b4ff8fd5e2      0xa8b8a0fa409d624d0x7efff724c030: 0x0000000000000021      0x00000000000000310x7efff724c040: 0x14704f8a5d791845      0xa1f6d94b963e0b3b0x7efff724c050: 0xc470dfa326757a74      0xa5d1c56086f01a290x7efff724c060: 0x0000000000000031      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] If mm_sbrk is called at this point, what address will it return? Enter the value in hex, starting with 0x and with all letters lowercase. [sbrk] This memory dump shows the state of the heap after a block was allocated for a malloc request.  What are the first 8 bytes of user payload data in this allocated block? Enter the value in hex, starting with 0x and with all letters lowercase. [first]