A slow response when opening applications or browsing the Internet, applications that do not work properly, an operating system that does not boot up correctly or does not function normally, and event logs that report numerous, unusual alerts are all:________. A. Signs of computer aging. B. Indications of antivirus software running in the background. C. Symptoms of malware mutation.

Answers

Answer 1

Answer:

C. Symptoms of malware mutation

Explanation:

They are signs that could indicate that ones system is infected by virus.

Such signs includes:

1.Slow booting or startup.

2.Low space storage.

3.Blue screen of death.

4.Slow Internet performance.

5.Sending of spam messages.

6.Disabled security.

7.Browsing error.

8.Pop-up messages.

9.Renaming of files.

10.Loss of certain files, music, messages, etc.

Answer 2

Answer:

Option c: Symptoms of malware mutation

Explanation:

The most common symptom of a malware mutation is a slow running computer. The main activity of malware programs is to slow down your operating system and cause problems with your local applications even you are not using the internet. Event log reports unusual alerts and RAM is consumed by virus programs which makes RAM unavailable for your tasks.


Related Questions

Advances in data storage techniques and the rapidly declining costs of data storage threaten​ ________. A. organizational procedures B. individual privacy C. growth in mobile devices D. network advances E. analytical procedures

Answers

Answer:

Option C is the correct option.

Explanation:

In the above scenario, Advancements in storage technologies and fast-declining storage prices are undermining growth in the mobile device because current mobile devices have many useful features of data storage and it can also use in other fields such as cloud storage, also in word processing and many other areas which are useful for the users.

Option A is incorrect because it is not suitable according to the following case. Option B is incorrect because data storage is not related the individual privacy. Options D and E are incorrect because in the above case, it is about the data storage techniques not for the network advances and analytical procedures.

Explain how increasingly standardized data, access to third-party datasets, and current trends in hardware and software are collectively enabling a new age of decision making?

Answers

Answer and Explanation:

The information revolution has had profound impacts on decision-making allowing more informed decision as a result of "stone throw" information reach- in our pockets, the desk, the TV, and the vast number of technologies that make this possible.

Standardized data which involves data formatted to bring uniformity and be easily understood and compared by programs and people , access to rich, outsider dataset and less tasking and flexible plus powerful programming have all contributed to empowering another time of information driven decision-making that are less prone to errors and mistakes.

In this exercise, you’ll design a "starter" HealthProfile class for a person. The class attributes should include the person’s first name, last name, gender, date of birth (consisting of separate attributes for the month, day and year of birth), height (in inches) and weight (in pounds). Your class should have a constructor that receives this data. For each attribute, provide setters and getters.The class should include methods that calculate and return the user’s age in years, maximum heart rate and target heart rate range, and body mass index (BMI). Write a Java application that prompts for the person’s information, instantiates an object of class HealthProfile for that person and prints the information from that object—including the person’s first name, last name, gender, date of birth, height and weight—then calculates and prints the person’s age in years, BMI, maximum heart rate and target-heart-rate range. It should also display the BMI values chart.

Answers

Answer:

package healthcare;

import java.util.Calendar;

public class HealthProfile {

  private String firstName;

  private String lastName;

  private char gender;

  private int day;

  private int month;

  private int year;

  private double height;

  private double weight;

  public HealthProfile(String firstName, String lastName, char gender, int day, int month, int year, double height,

          double weight) {

      super();

      this.firstName = firstName;

      this.lastName = lastName;

      this.gender = gender;

      this.day = day;

      this.month = month;

      this.year = year;

      this.height = height;

      this.weight = weight;

  }

  public String getFirstName() {

      return firstName;

  }

  public void setFirstName(String firstName) {

      this.firstName = firstName;

  }

  public String getLastName() {

      return lastName;

  }

  public void setLastName(String lastName) {

      this.lastName = lastName;

  }

  public char getGender() {

      return gender;

  }

  public void setGender(char gender) {

      this.gender = gender;

  }

  public int getDay() {

      return day;

  }

  public void setDay(int day) {

      this.day = day;

  }

  public int getMonth() {

      return month;

  }

  public void setMonth(int month) {

      this.month = month;

  }

  public int getYear() {

      return year;

  }

  public void setYear(int year) {

      this.year = year;

  }

  public double getHeight() {

      return height;

  }

  public void setHeight(double height) {

      this.height = height;

  }

  public double getWeight() {

      return weight;

  }

  public void setWeight(double weight) {

      this.weight = weight;

  }

  public int calculateAge() {

       

      Calendar dateOfBirth = Calendar.getInstance();

      dateOfBirth.set(year, month, day);

      Calendar now = Calendar.getInstance();

      return now.get(Calendar.YEAR) - dateOfBirth.get(Calendar.YEAR);

  }

  public int maximumHeartRate() {

      return 220 - calculateAge();

  }

  public double[] targetHeartRateRange() {

      double[] range = new double[2];

      // Calculate Stating range(50 % of maximumHeartRate)

      range[0] = 0.5 * maximumHeartRate();

      // Calculate End range(85 % of maximumHeartRate)

      range[1] = 0.85 * maximumHeartRate();

      return range;

  }

  public double calculateBMI() {

      return (weight * 703)/(height * height);

  }

  public String getBMIValue()

  {

      double bmi=calculateBMI();

      if(bmi < 18.5)

      {

          return "Underweight";

      }

      else if (bmi>18.5 && bmi<24.9)

      {

          return "Normal";

      }

      else if (bmi>25 && bmi<29.9)

      {

          return "Normal";

      }

      else if (bmi>=30)

      {

          return "Obese";

      }

      return "DafultValue"; //you can give any default value of your choice here if no condition meets the given criteria

  }

  @Override

  public String toString() {

      return "HealthProfile [firstName=" + firstName + ", lastName=" + lastName + ", gender=" + gender + ", Date Of Birth="

              + day + "-" + month + "-" + year + ", height=" + height + ", weight=" + weight + "]";

  }

}

package healthcare;

import java.util.Scanner;

public class TestHealthCare {

  private static Scanner sc;

  public static void main(String[] args) {

      sc = new Scanner(System.in);

      System.out.println("Please enter following details of the Patient");

      System.out.println("First Name");

      String firstName=sc.nextLine();

      System.out.println("Last Name");

      String lastName=sc.nextLine();

      System.out.println("Gender ...... M or F ?");

      char gender=sc.next().charAt(0);

      System.out.println("Date of Birth");

      System.out.println("Day");

      int day=sc.nextInt();

      System.out.println("Month");

      int month=sc.nextInt();

      System.out.println("Year");

      int year=sc.nextInt();

      System.out.println("Height in inches");

      double height =sc.nextDouble();

      System.out.println("weight (in pounds)");

      double weight =sc.nextDouble();

     

      HealthProfile obj=new HealthProfile(firstName, lastName, gender, day, month, year, height, weight);

      int age=obj.calculateAge();

      System.out.println("Patient age is   "+age + " Years");

     

      int maxHeartRate=obj.maximumHeartRate();

      System.out.println("Patient Maximum Heart Rate is   "+maxHeartRate + " beats per minute");

     

      //Call targetHeartRateRange

      double targetHeartRateRange []=obj.targetHeartRateRange();

      System.out.println("Target Heart Range is   "+targetHeartRateRange [0] + " - " +targetHeartRateRange [1]);

     

      //Call calculateBMI

      double bmi=obj.calculateBMI();

      System.out.println("Patient BMI is   "+bmi);

     

      //call getBMIValue

      System.out.println("Patient BMI Value is   "+obj.getBMIValue());

  }

}

Explanation:

Inside the calculate the age in years  method, create Date of Birth of Object.Create Current Date .Inside the method maximumHeartRate , create a New Object of HealthProfile class and Call its constructor .
Other Questions
Joe's annual income has been increasing in the same dollar amount. The first year his income was $15,200, and the 4th year his income was $17,900. In which year was his income $19,700? Which of the following is the name of the process scientists use to gainknowledge about the physical world? Which of the following is a result of gravitational forces in the Solar System? A. the radiation given off by Jupiter B. Saturn is further away from the Sun than Earth C. the difference in surface temperature on each of the planets D. the orbit of moons around their planets in the Solar system Dr. Garonski is testing his hypothesis that people use hand gestures more in communication when emotionally aroused than when calm. When his results were reviewed, it was noted that Dr. Garonski sometimes missed seeing small gestures in the calm condition. This is an example of the __________. A code that hovers our behaviors in any certain situation is known as our code of what? Does the bowling ball have more potential energy or kinetic energy as it sit on top of the building? Why? does anyone know the answer ? hinking about the constitutions of Texas and the United States, both are based upon which fundamental idea? The population in Lowell Massachusetts goes from 200 in 1820 to nearly _____________in 15 years(1835). The government could help solve the crisis if the leaders united.Which of these will make the sentence conditional in mood?A.unitedB.solveC.helpD.could Why was the class apprehensive when they found out that their new teacher, Miss Caroline was from North Alabama specifically Winston County? This document promoted the policy of containment and resist communism.Roosevelt doctrineTruman doctrineParis Peace AccordsWarsaw Pact What does ""electron density in a particular tiny volume of space"" mean? A citizens group supporting a new water bottling plant in Citizen City has produced an ad to be run on local TV. Which of the following is most likely to be heard in this ad?A) The new bottling plant will be good for our natural resources.B) The new bottling plant will bring new jobs and new funds for our schools.C) The new bottling plant will give shoppers more choices at the store.D) The new bottling plant will get many tax breaks and cost us in the long run. A light rope is attached to a block with mass 4.10 kg that rests on a frictionless, horizontal surface. The horizontal rope passes over a frictionless, massless pulley, and a block with mass m is suspended from the other end. When the blocks are released, the tension in the rope is 14.7 N.a. Draw two free-body diagrams: one for each block. b. What is the acceleration of either block? c. Find m. d. How does the tension compare to the weight of the hanging block? Sidneys made $38 more than 3 times Caseys weekly salary. If x represents Caseys weekly salary , write an expression for sidneys weekly salary The IRS promulgates several interpretive rules about corporate tax compliance, particularly for executive compensation. The rules prove to be highly controversial and are a result of misconduct on the part of the head of the IRS. Which of the following statements is correct? a. The IRS is an independent agency, and the president can fire the head of any independent agency. b. The IRS is an executive agency, and the president can fire the head of any executive agency. c. Congress can fire the head of any administrative agency. d. The president can fire the head of any administrative agency. Which of the following is a new feature in Windows Server 2016 that enables block-level data replication to occur automatically between datacenters located across the hall or on the opposite side of the world?a. Windows Containersb. Storage Spaces Directc. Storage Replicad. Storage Spaces Your car's blinker has a period of 0.85 s and at the moment is in phase with a faster blinker on the car in front of you. They drift out of phase but then get back in phase after 16 s. What is the period of the other car's blinker in s? NEEED HELP ASAP!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!NEED HELP ASAP!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!1The biosphere includes all of the fish that are in the ocean. Even though the ocean is part of the hydroshere.TrueFalse