Question 1
What specific business objectives do you think Microsoft was seeking to achieve through its joint venture with NBC News? Be specific and explain how a joint venture would help to achieve the identified business objectives.
Question 2
As we learned in class, an acquisition is one alternative approach for executing a company’s business strategy. Other alternatives include a joint venture (JV) and solo venture. In the case of Microsoft, it decided on a JV rather than an acquisition of NBC. Why do you think Microsoft preferred a joint venture rather than an outright acquisition in this case?
Question 3
Why did the joint venture unravel? Do you think it would have been better for Microsoft to pursue a solo venture or acquire NBC News outright from the beginning?
Last Completed Projects
topic title | academic level | Writer | delivered |
---|
jQuery(document).ready(function($) { var currentPage = 1; // Initialize current page
function reloadLatestPosts() { // Perform AJAX request $.ajax({ url: lpr_ajax.ajax_url, type: 'post', data: { action: 'lpr_get_latest_posts', paged: currentPage // Send current page number to server }, success: function(response) { // Clear existing content of the container $('#lpr-posts-container').empty();
// Append new posts and fade in $('#lpr-posts-container').append(response).hide().fadeIn('slow');
// Increment current page for next pagination currentPage++; }, error: function(xhr, status, error) { console.error('AJAX request error:', error); } }); }
// Initially load latest posts reloadLatestPosts();
// Example of subsequent reloads setInterval(function() { reloadLatestPosts(); }, 7000); // Reload every 7 seconds });