Skip to main content

Causes of Computer Virus

Causes of Computer Virus

A computer virus is a program or set of programs or set of program or set of programs that can cause damage to computer system. It may disturb the normal working of a computer system. The code in computer virus is attached to some part of operating system or computer programs. The instructions in the code tell the computer to perform some task. This task is often destructive such as:
  • A computer virus can damage data or software on the computer.
  • It can delete some or all files on the computer sytem.
  • It can destroy all data by formatting hard drive.
  • It may simply display a large happy face on the screen.
  • Some viruses only slow down the computer and cause no serious damage. 
Causes of Virus
A computer virus is passed from computer to computer. A virus can be attached to any file that is copied to computer system. The user may download files from Internet or copy programs on floppy disks that may contain viruses. These are the most common ways of getting a virus on computer system. Many virus are speed through emails. Generally, a user cannot get virus by simply reading an email. However, certain virus are very dangerous such as Klez. These viruses are automatically spread when the user opens the email. The virus is spread even if the user does not open the email attachment. Normally, a virus is activated when the user executes a program that contains virus. For example, a user may have downloaded a computer game from Internet that contains a virus. The virus will be activated when the user runs game on the computer.
Antivirus
Antivirus is a software that is user to detect and remove a virus on computer system. A virus can be stopped from entering the computer with the help of good antivirus program. The antivirus software checks all files to detect virus. It can be installed and configured to work in the background. The antivirus program should be used carefully. It should match with the operating system. For example, a Mac computer should use an antivirus program that is specially written for this system. Similarly, a computer with windows operating system should use an antivirus program that is specially written for Windows. A mismatched antivirus program may cause unstable behavior and may crash the computer system. New viruses are written everyday. The antivirus companies constantly update their antivirus programs to protect users from new viruses. Most popular antivirus companies are as follows: 
  • McAfee
  • Symantec
  • Panda Software
Benefits
Some important benefits of using antivirus programs are as follows:
  • Antivirus program protects important data from virus.
  • It checks all files before they enter computer system.
  • It alerts the user about the virus before it causes any damage to computer.
  • It quarantines or eliminates a virus so that it may not harm computer.

Comments

Popular posts from this blog

Steps to remove google accounts from Computer

Open Google . You will see a round shaped picture of google account picture in top right corner as marked in below picture Click on it. Click on sign out of all accounts Click on Sign In at the top right corner as shown in picture below. Click on it. You will see following screen. Select your desired account from it and sign in . Reopen your form by clicking link provided to you, It will be open now.

Steps of splitting pdf files

Goto https://www.ilovepdf.com/split_pdf Click on Select PDF File. Upload your pdf file here. Select Extract Pages from right menu. Click on Split pdf button and wait for the procedure. Now Click on Download Split PDF and you will get a zip file in which there will be separate pdf.

Introduction to Object Oriented Programming ( OOP )

Object-Oriented Programming Object Oriented programming is a programing model that is based upon data and object. Classes   Classes are the blueprint of objects. Now you will think about what actually blueprints are. Blueprints are actually a design or plan to build something. Let's take an example like the map is detail plan of house classes are detail plan in  Object-Oriented programming. let's give you an example of a class on java so that you can unferstand. public class Car {          int horsePower;     String name;     String color;      String Company; } public class Sample {     public static void main(String[] args) {         Car car;         Car mehran;             } } Class name always start with capital letters . It is a good practice to name classes .  We will later learn how this is good. So in the above class Car ...