1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
Delicious77 [7]
3 years ago
14

A ________ changes your home page and redirects you to other websites.

Computers and Technology
2 answers:
babunello [35]3 years ago
8 0
The answer is browser
nikklg [1K]3 years ago
3 0

A Browser hijacker changes your home page and redirects you to other websites.

<h2>Further explanation</h2><h3>What is Chumsearch? </h3>

This is a type of malware known as a browser hijacker. In this case, this redirects your browser's homepage to Chumsearch, a web page that is designed to look like the Google homepage but is very different. Like other browser hijackers, there are many reasons why Chumsearch is not accepted on your computer. It collects data about your web browsing activity and passes it back to the server; it provides search results that take you to sites that can harm your computer, and it displays advertisements that are forms of adware.

<h3>How to delete Chumsearch from your Mac </h3>

Step 1: Delete the Chumsearch profile

  • Click on the Apple menu and select System Preferences.
  • Look for the panel in the bottom row called Profiles.
  • If it's there, click there and look for a profile called AdminPrefs.
  • If you can see AdminPrefs, click the lock and type your admin username and password.
  • Click on the AdminPrefs profile and click the ‘-‘ button at the bottom left of the window.

Step 2: Check your Login Item

Browser hijackers, like other malware, want to launch themselves as soon as you turn on your Mac so they enter your Login Item. Here's how to get rid of Chumsearch from your Login Item.

  • Go to System Preferences and click on the Users & Groups panel.
  • Open the lock by clicking on the lock and then typing in your username and password.
  • Select the Incoming Items tab.
  • Look for entry items that look like Chumsearch or other malware.
  • If you find something, click on it then click the ‘-‘ button at the bottom of the window to get rid of it.

Step 3: Remove Chumsearch from your browser

Safari:

  • Launch Safari.
  • Click on the Safari menu and select Preferences.
  • Click on the Search tab and select the search engine that you want to use.
  • Select the General tab and set the Homepage to the homepage of your choice and the options above it for your preferences from the options on the menu.

Chrome:

  • Launch Chrome.
  • Click the Settings menu icon on the left side of the window (it looks like three horizontal lines) or type "chrome: // settings" into the address bar.
  • Select "when starting" and check the button next to "Open a specific page or set of pages."
  • Click the other icon (it looks like three dots are piled on top of each other).
  • Select "edit" and type or paste the address of the startup page of your choice into the text box.
  • Press Save.
  • Click on the Settings icon again and select Search Engine.
  • Select "manage search engines" and press the "other" button next to Chumsearch and select "delete from the list."
  • Click on the dropdown menu next to the "Search engine used in the address bar" and select the search engine you want to use.

Learn More

How to remowe hijacker brainly.com/question/8560225

the step on mac brainly.com/question/8560225

Details

Class: High School

Subject: Computers and Technology

Keywords: browser, hijacker, adware

You might be interested in
Write a program that prompts the user to enter positive integers (as many as the user enters) from standard input and prints out
julia-pushkina [17]

Answer:

Here is the JAVA program that prompts the user to enter positive integers from standard input and prints out the maximum and minimum values:

import java.util.*;

public class Ex0603 {

   public static void main(String[] args) { //start of main function

   Scanner in = new Scanner(System.in); //creates Scanner class object to take input from user

   int minimum = 0; //stores the minimum of the integers

   int maximum = 0; //stores the minimum of the integers

   int num; //stores the positive integer values

   System.out.println("enter a positive integer: ");//prompts user to enter a positive integer

   num = in.nextInt();//scans and reads the input integer value from user

   minimum = num;  //assigns value of num to minimum

   while(true) {//while loop keeps prompting user to enter a positive integer

       System.out.println("enter a positive integer: ");//prompts user to enter a positive integer

       num = in.nextInt();//scans and reads the input integer value from user

       if(num <=0)//if the user inputs a negative integer or 0

           break; //breaks the loop

       if (num > maximum) {//if the value of positive integer is greater than the maximum of value

           maximum = num; } //assigns that maximum value of num to maximum variable

       if (num < minimum) {//if the value of positive integer is less than the minimum of value

           minimum = num; //assigns that minimum value of num to minimum       }    }            

   System.out.println("The maximum integer is : " + maximum); //displays the maximum of the positive integers

   System.out.println("The minimum integer is : " + minimum); }}   //displays the minimum of the positive integers

Explanation:

Here is the JAVA program that that prompts the user to enter an integer N, then reads N double values, and prints their mean (average value) and sample standard deviation:

import java.util.*;  

public class Ex0603 {  

public static void main(String[] args) { //start of main function

Scanner in = new Scanner(System.in);  //creates Scanner class object to take input from user

double integer= 0;  //to store the number of input values

double sum = 0;  //to store the sum of input numbers

double mean = 0;  //to store the average of numbers

double sd = 0;  //to store the standard deviation result

double variance = 0;  //to store the variance result

double sumSquare = 0;  //to store the sum of (num-mean)^2

int n = 0;  //to store the sample size N

   System.out.println("Enter an integer: ");  //prompts user to enter an integer that is how many elements user wants to input

   integer = in.nextInt();  //reads the value of integer from user

   double size=integer; // declares a double type variable and assigns value of int type variable integer to this double type variable size

   int i=0;  //used to point each element of the num array

   double num[] = new double[(int)size];  //declares an array to hold the numbers input by user

   while(integer>0){  //loop executes until value of integer is greater than 0

   System.out.println("Enter a number: "); // prompts to enter a number

   num[i] = in.nextDouble(); //reads double values

   sum += num[i];  //adds the values stored in num array

   i++;  //increments i to point to the next element in num array

   n++;  //increments n to count the total number of elements

  integer--; //decrements integer value at each iteration

   mean = sum / n;    }  //compute the average of values

   i=0;  

    while(size>0){  //loop executes until value of size exceeds 0

       sumSquare += Math.pow(num[i]-mean,2); //takes the sum of square difference between each element of num array and value of mean

       i++; //increments i

      size--;   }  //decrements size

variance = sumSquare / (n-1);  //compute variance by dividing the result of sum of the squares of their differences from the mean by n-1

   sd = Math.sqrt(variance);  //computes standard deviation by using sqrt function which takes the sqrt of the result of variance computed above

System.out.println("Average value is: " + mean+ " and the standard deviation is " + String. format("%.2f", sd));   }} //displays the average of numbers stored in mean variable and value of standard deviation is displayed up to 2 decimal places

Screenshots of both programs and their outputs is attached.

7 0
3 years ago
Задача в том, чтобы считать
Levart [38]
I’m not sure what you are saying
5 0
3 years ago
Which of the following is a social networking and microblogging service that uses SMS (short message service) technology, the sa
ad-work [718]
A. facebook. it has a seperate texting app called facebook messenger .
5 0
3 years ago
when a page contains function is loaded the browser by passes the function without running it - true or false
Crank
False of course like ya
7 0
4 years ago
Claire's sunflower is 1 and 8-tenths meters tall. Her sunflower is 5-tenths meter taller than Leon's sunflower. How tall is Leon
telo118 [61]

Answer:

1.3 m (1 and 3 tenths meters tall)

Explanation:

The height of Claire's sunflower is 1 and 8-tenths meters tall. This implies that:

height of Claire's sunflower = 1 + 8/10 = 1 + 0.8 = 1.8 m

height of Claire's sunflower = 5 tenths + height of Leon's sunflower

height of Claire's sunflower = 5/10 + height of Leon's sunflower

height of Leon's sunflower + 0.5 = 1.8

height of Leon's sunflower = 1.8 - 0.5

height of Leon's sunflower = 1.3 m

Therefore the height of Leon's sunflower is 1.3 m tall

7 0
3 years ago
Other questions:
  • How many people watch Anime in the world?
    15·2 answers
  • How can investors receive compounding returns
    13·1 answer
  • In Microsoft word you can access the ______ command from "mini toolbar"
    12·2 answers
  • How many fonts are there in a theme?<br> A. 1<br> B. 2<br> C. 4<br> D. 5
    10·1 answer
  • The ________ is responsible for the Internet's domain name system and the allocation of IP addresses. ICANN W3C ISOC IAB
    8·1 answer
  • Dallas is an analyst at an online retailer. He is great at creating representative diagrams showing the relationships between cu
    12·1 answer
  • What X coordinate does the center of a game begin at?
    9·1 answer
  • Lord Strawberry, a nobleman, collected birds. He had the finest aviary in Europe, so large that eagles did not find it uncomfort
    9·1 answer
  • Which one way in which using infrared in game console controllers could affect the experience of a person playing the game?
    8·1 answer
  • How do we Rewrite the following Python code to avoid error. mark=inpt("enter your mark ")
    6·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!