SELECT ONE OF THESE QUESTIONS TO ANSWER. MAKE SURE YOU CLEAR…
SELECT ONE OF THESE QUESTIONS TO ANSWER. MAKE SURE YOU CLEARLY IDENTIFY WHICH ONE GOT ANSWERED. 20 POINTS TOTAL. 1. You are an Iowa City pop music singer hoping to hit it big. You want to use a portion of a Taylor Swift song on the title track of your debut album. You meet with your lawyer, and they present the case over how you might be able to do so. What does that lawyer tell you? What precedents or arguments do they offer as evidence of what is possible? Let’s say you do want to use a snippet of the song. How much can you use, and what factors address that usage? Ultimately, knowing what you know now about copyright law, do you decide to take the chance and use it? Why or why not? 2. The First Amendment gives the press strong legal protections, and consequently, significant social and cultural power. In many ways, this sets up the press and journalism as holders of exceptional status, even among other powerful institutions. Using both legal precedent and philosophical arguments discussed in class and readings, chart the history of the press’ influence in the United States. Why did the founders give special respect toward the press? How has the Supreme Court, over time, shown an appreciation for that respect? What cases stand out the most in your opinion?
Read DetailsFill in the appropriate code: // Combines the current block…
Fill in the appropriate code: // Combines the current block with the previous block if it is free, and/or the next block if it is free// Returns a pointer to the payload space of the (possibly coalesced) block// Assumes size and allocation information are packed together and stored in the header and footer of a block, and the size includes the size of the header and footer and user payload space // curr_payload – pointer to the user payload space of a free block static void* coalesce(void* curr_payload){ void* prev_payload = prev_payload_pointer(curr_payload); void* next_payload = next_payload_pointer(curr_payload); int prev_alloc = extract_alloc([prev_alloc]); int next_alloc = extract_alloc([next_alloc]); // Get size of the current block size_t size = extract_size([size]); // Cannot combine current block with previous or next blocks if(prev_alloc && next_alloc){ return [case1_ret]; } // Combine current block with next block else if(prev_alloc && !next_alloc){ size += extract_size(get(get_header_pointer(next_payload))); set([case2_header], pack(size, 0)); set(get_footer_pointer(next_payload), pack(size, 0)); return curr_payload; } // Combine current block with previous block else if(!prev_alloc && next_alloc){ size += extract_size(get(get_header_pointer(prev_payload))); set([case3_header], pack(size, 0)); set(get_footer_pointer(curr_payload), pack(size, 0)); return prev_payload; } // Combine current block with previous and next blocks else{ size += extract_size(get(get_header_pointer(prev_payload))) + extract_size(get(get_header_pointer(next_payload))); set([case4_header], pack(size, 0)); set(get_footer_pointer(next_payload), pack(size, 0)); return prev_payload; } }
Read Details1. Name and honor code. Write down your full name. Write do…
1. Name and honor code. Write down your full name. Write down your wisc email address. Honor code: I affirm that I will not give or receive any unauthorized help on this assessment, and that all work shown will be my own. Write down “I affirm.”
Read Details3. Neon (Ne) vs. fluorine (F2) (11pts) The melting point of…
3. Neon (Ne) vs. fluorine (F2) (11pts) The melting point of neon (Ne) is 24 K and its boiling point is 27 K. In a box, draw an atomic/molecular level picture of neon at 30 K. (Use an appropriate number of particles to help you clearly convey the phase you intend to draw.) What bonds and/or interactions are present in your drawing in part (a)? If no bonds and/or interactions are present, write “none”. The melting point of fluorine (F2) is 53 K and its boiling point is 85 K. What phase (solid, liquid or gas) is fluorine in at 30 K? What bonds and/or interactions are present in a sample of fluorine at 30 K? If no bonds and/or interactions are present, write “none”. Why does fluorine have a higher boiling point than neon? Be sure to include force and energy in your explanation.
Read Details