Use any other sources that you know of to conduct your research and be sure to use more than 1 source.
Requirements are to provide a MINIMUM 2-page report answering the following:
Introduction – introduces the name of the virus, does the name of the virus tell you about its purpose, the types of virus’ selected, the source of your information, the year/date the virus originated, etc.
Body – How did the viruses differ, how did the virus’ travel/affect the computer, how many businesses/persons were affected, what are potential symptoms of the virus, how much damage (in dollars) was caused by the virus is their still a risk out there? What is the solution to disinfect/remove, was there a work-around solution? How wide-spread was the virus?
Conclusion – What interested you about these viruses, were you affected by them or no anyone that was?
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 });