Choose the answer. Janice's IT department found that her computer had a program on it that was collecting her personal information as she browsed the Web. What is this an example of?

spyware
pharming
spam
spoofing​

Answers

Answer 1

Answer:

Spyware

Spam is just unwanted soliciation, spoofing is making links appear as something else, pharming is creating a fake website for victims to use.


Related Questions

The first step to keeping your home safe is to minimize the overall amount of _______________ materials you store in your home.

Answers

Answer: The valuable, precious, or expensive items.

Explanation:

What role does the animation in the motion picture industry or video industry play?

Answers

Answer:

there’s a lot of animation in the video marketplace. All the industries you cite are part of the bigger motion picture/video production industries. Animation plays a vital role across the board for too many reasons to list. Without knowing what your definition of animation is, it’s hard to write about what you are asking. That said, the industries you’re listing are all part of the same industry. If you watch news, you see animations all the time. Backgrounds, lower third supers that move…that’s all animation. Even in theatrical movies, it’s all over…you may not recognize it as animation, but it surely is. Not all animation needs to look like Looney Tunes, even if that would be nice.

A video project needs to be encrypted as it is going from a source to a destination. What can be added to the video

Answers

Answer:

A video encoder

Explanation:

an encoder is used to make a video encrypted so nobody can take your copy it. For instance You Tube uses an encoder

Explain the Decision making statement​

Answers

Answer:

Decision making structures require that the programmer specify one or more conditions to be evaluated or tested by the program, along with a statement or statements to be executed if the condition is determined to be true, and optionally, other statements to be executed if the condition is determined to be false.

!!!!! 40 pts !!!!!

Select the correct answer from each drop-down menu.
Which words or statements complete the sentences given below?
Interference created by fatigue is called ___
noise. Interference created by strong negative emotions is called ____ noise.

Answers

Physiological noise

semantic noise

PLS ANSWER I Forgot how to do this. I'll give brainliest.
Write pseudocode for getting a bowl of cereal using at least four steps.

Answers

Answer:

Step 1: Get out a bowl

Step 2: Get out a spoon.

Step 3: Get out cereal.

Step 4: Get out milk.

Step 5: Put the milk and cereal in the bowl and enjoy

Explanation:

I need this nowww!!!!

Answers

Answer:

b,c

Explanation:

help me!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!​

Answers

Answer: the body shape is skinny

how will you format date so that dates appear in a format similar to 26-January-2022​

Answers

Answer:

26/01/2022or01/22/2022

Fill in the blank: In a Word chart, text that describes the data represented in a chart and that is typically displayed on the right or at the bottom of the chart is called the ____.

Answers

Answer:

Data bar

Explanation:

In a Word chart, text that describes the data represented in a chart and that is typically displayed on the right or at the bottom of the chart is called the data bar.

What is a data bar?

Data bars are used to describe a graphic element that inserts bars representing the values within cells. It is a type of conditional formatting that creates a visual effect in the cells of your database that correspond to the contents of the cell. A larger value represents a cell with a longer bar while a smaller value represents cell with a shorter bar.

Read more on data bar:

https://brainly.com/question/9700709

#SPJ2

what are the functions of file​

Answers

File is an object on a computer that stores data, information, settings, or commands used with a computer program. In a GUI such as Microsoft Windows, files display as icons that relate to the program that opens the file.

Answer:

file is an object on a computer that saves data information and any thing

Which of the following can be used to locate data in a particular column?
A. VLOOKUP
B. HLOOKUP
C. CLOOKUP
D. RLOOKUP

Answers

Answer:

A. VLOOKUP

Explanation:

VLOOKUP is an Excel function to look up data in a table organized vertically. VLOOKUP supports approximate and exact matching, and wildcards (* ?) for partial matches. Lookup values must appear in the first column of the table passed into VLOOKUP.

Purpose 

Lookup a value in a table by matching on the first column

Return value 

The matched value from a table.

Syntax 

=VLOOKUP (value, table, col_index, [range_lookup])

Arguments 

value - The value to look for in the first column of a table.

table - The table from which to retrieve a value.

col_index - The column in the table from which to retrieve a value.

range_lookup - [optional] TRUE = approximate match (default). FALSE = exact match.

Create an array of size 10 and name RandArray populate the RandArray with random integer from 1 to 20. Every element in the RandArray must be changed as follows: If the value of the element is less than the array index, the element must be replaced with the index plus 10. If the value of the element is equal to the index, the element must be doubled. If the value of the element is greater than the index, the element must be replaced by the index squared. Print the original number and the changed number of the RandArray

Answers

Answer:

int[]RandArray = new RandArray[10];

for(int x =0; x< RandArray.length;x++){

RandArray[x] = random.nextInt(10 - 1 + 1) + 1;

}

for(int x =0; x< RandArray.length;x++){

int og = RandArray[x];

if(RandArray[x]<x){

RandArray[x] = x + 10;

}

else if(RandArray[x] == x){

RandArray[x] =RandArray[x] * 2;

}

else if(RandArray[x] > x){

RandArray[x] =Math.pow(x,2);

}

System.out.println("Original: " + og +"New: "+ " RandArray[x])

}

Explanation:

Following are the python program for calculating the array values by using the random array function:

Python Program:

import random as R#import package of random

R1 = R.sample(range(1, 20), 10) #Generating 10 random numbers from 1 to 20

RandArray  = R1.copy() #Copying the elements of R1 in to RandArray

print("Original Array: ",RandArray)#defining the print method that prints RandArray value

for e in range(len(RandArray)):#defining a loop that calculates

   if(RandArray[e] < e):#defining if block that checks index of list that stores random number  

       RandArray[e] = e+10#adding 10 in numbers

   elif(RandArray[e] == e):#defining if block that checks index of list that stores random number  

       RandArray[e] = e*2#multiplying by 2 in number

   elif(RandArray[e] > e):#defining if block that checks index of list that stores random number  

       RandArray[e] = e**2#calculating the square value of RandArray

   print("Changed Array: ",RandArray)#print RandArray value

for i in range(10):#defining loop that prints Array value

   print("Original Number:",R1[i], "Changed Number:",RandArray[i])#print RandArray value

Output:

Please find the attached file.

Program Explanation:

import package of random. Defining the "R1" variable that uses a random function to generate 10 random numbers from 1 to 20.Declaring the "RandArray" that Copying the elements of R1 into RandArray.Defining a loop that calculates the length of the array and uses a conditional block that checks and calculates the random array values.In the last step, another loop is declared that prints the array "RandArray" value.

Find out more information about the random number here:

brainly.com/question/16403687

Computer has brought radical change in every field​

Answers

Answer:

Yes it has brought change in every field

Explanation:

25-words or more in your OWN words the meaning of digital literacy.

Answers

Answer:

Digital literacy means having the skills you need to live, learn, and work in a society where communication and access to information are increasingly through digital technologies like internet platforms, social media, and mobile devices.

Explanation:

What is IPO? Write down the steps involved in IPO cycle.​

Answers

An initial public offering or stock market launch is a public offering in which shares of a company are sold to institutional investors and usually also retail investors. An IPO is underwritten by one or more investment banks, who also arrange for the shares to be listed on one or more stock exchanges

Answer:

An IPO is an offer of shares by a company in exchange for capital. The entire process is regulated by SEBI - the Securities & Exchange Board of India. To buy shares of any company in an IPO, you have to bid for these shares. If your bid is accepted, you are allotted shares.

Explanation: brainliest plz!

Colleen started working for a company that makes stuffed animals and delivers them with special messages. She immediately recognized some needs of the company and started talking to employees to gather information. The employees all need to access a common database. They need to print from all workstations. They would like managers to be automatically notified when supplies are running low. Select each of the requirements for this business.

-shared drive on the network
-networked printer
-broadband
-remote access
-automatic notification
-e-mail

Answers

Answer:

automatic notification, networked printer, shared drive on the network

Explanation:

The automatic notification allows to be notified when supplies are low. To be able to print from all workstation, they need a printer that is connected by network. The common database would be the shared drive on the network.

Answer:

automatic notification, networked printer, shared drive on the network

Explanation:

Or a,b,d,e

public class Bird
{
beakStrength = input;
}
public void setBeakStrength(int strength)
{
beakStrength = strength;
}
}
public class Hawk extends Bird
{
private int talonStrength;
public Hawk(int talon, int beak)
{
super(beak);
talonStrength = talon;
}
}
The following statement appears in a method in another class.
Bird b = new Hawk(5,8);
Which of the following best describes the effect of executing the statement?​

Answers

Answer:

Answer below.

Explanation:

You are creating an object of bird "b" with a talon strength of 5 and a beak of 5.

public Hawk(int talon, int beak)

{

super(beak);

talonStrength = talon;

}

Please mark brainliest if this is the answer you were looking for

Please mark brainliest if this is the answer you were looking for

In this exercise we have to use the knowledge of computational language in python to write the code.

We have the code in the attached image.

The code in python can be found as:

public Hawk(int talon, int beak)

{

super(beak);

talonStrength = talon;

}

See more about python at brainly.com/question/26104476

Why is the access date important to include when citing a website? (select all that apply)

It indicates websites changes.

It indicates website accessibility changes.

It shows website ownership changes.

It proves you did your work.

Answers

Answer:

It indicates website accessibility changes.

Answer:

It indicates websites changes.

It indicates website accessibility changes.

Explanation:

Correct on edge

Which IDEs specifically support the Python programming language? Select all that apply.
PyScripter

Xcode

PyCharm

IDLE

Answers

Answer:

PyCharm (Jetbrains)

PyScripter

IDLE

Xcode too!

Explanation:

You have to do some setup to use Python 3.8 with Xcode

What pc games do you all play?

Answers

Answer:

none

Explanation:

Answer:

Among us

Explanation:

Super Shenron vs Zeno D-e-a-t-h B-a-t-t-l-e Creation v Destruction Who Would Win????
Lmk

Answers

Answer:

both tbh I don't know I'm doing this for points cuz I need help for sm

When is the following expression true? (2 points)
!(!a || b) || (!a && b)
1) If and only if a and b have different values
2) If and only if a and b have the same value
3)
If and only if both a and b are true
4) If and only if both a and b are false
5) The expression is never true

Answers

Answer:

1) If and only if a and b have different values

Explanation:

Given

Expression: !(!a || b) || (!a && b)

Required

When is it true?

The expression is true when the values a and b are different and the proof is as follows.

(1) Assume that: a = true and b = false

!(!a || b) || (!a && b)  

= !(!true || false) || (!true && false)

!true = false, so the expression becomes:

= !(false|| false) || (false && false)

In boolean, false|| false = false and false && false = false. So, we have:

= !(false) || (false)

!(false) = true, so, the expression becomes:

= true || (false)

Lastly, true || false = true

(2) Assume that: a = false and b = true

!(!a || b) || (!a && b)  

= !(!false|| true) || (!false && true)

!false = true, so the expression becomes:

= !(true|| true) || (true && true)

In boolean, true|| true = true and true && true = true. So, we have:

= !(true) || (true)

!(true) = false, so, the expression becomes:

= false|| true

Lastly, false || true = true

This expression is false if a and b have the same value

what is a sending device

Answers

Answer:

A sending device that initiates an instruction to transmit data, instruction, or. information. e.g., Computer A, which sends out signals to another computer. □ A communication device that converts the data, instructions, or information. from the sending device into signals that can be carried by a.

Answer:

A sending device is an object that gives instructions to transmit information.

_____ Create
graphics that are math based.

Answers

Answer:

Vector Graphics

Explanation:

Vector graphics are computer graphics images that are defined in terms of points on a Cartesian plane, which are connected by lines and curves to form polygons and other shapes. Vector graphics have the unique advantage over raster graphics in that the points, lines, and curves may be scaled up or down to any resolution with no aliasing. The points determine the direction of the vector path; each path may have various properties including values for stroke color, shape, curve, thickness, and fill.

Lucia is using the American Psychological Association (APA) style guidelines to writer her research paper. What is her most likely topic?
physical sciences
literature
social sciences
biology
ANSWER IS SOCIAL SCIENCES

Answers

Answer:

its C

Explanation:

According to the above scenario, Lucia's subject in the research paper is social sciences. Thus, option second is correct.

What is a research paper?

A research paper is a longer essay in which you give your own interpretation, opinion, or argument. When writing an essay, you apply all you know and have pondered about a subject.

The purpose of a research paper is to draw on what others have said about a topic and engage the sources in order to intelligently present a distinct viewpoint on the problem at hand, not just inform the reader what others have said about a topic.

The examination of how humans communicate with one another is known as social science. Anthropology, economics, political science, psychology, and sociology are all fields of social science.

According to the given circumstance, Lucia's research paper topic is social sciences. As a result, option two is correct.

Learn more about research paper here:

https://brainly.com/question/946785

#SPJ2

Which gallery will allow a user to access a variety of preconfigured formatting styles for images that are added to a
PowerPoint presentation?
O WordArt gallery
O Shape Styles gallery
O Picture Styles gallery
O SmartArt gallery

Answers

Answer:Picture Styles gallery

Explanation:

Which one of the following is a type of network security?
a) Login Security
b) Rights Security
c) Both (a) and (b)
d) Neither (a), nor (b)


Answers

Answer:

I think it's (login security)

Moving your Sprite from right to left is considered the X coordinate?

Question 12 options:
True
False

Answers

Answer:

True.

Explanation:

X coordinates run from left to right, while Y runs from the top to the bottom.

To help you remember it, think of this:

A plane takes off and lands at the X coordinates and can choose whichever way it wants to take off from: left or right. Until the plane takes off, your Y coordinate is at 0. Once it's in the air, Y coordinates jumps in with our X and the plane can go up and up as it pleases (of course, there are limits) until it lands at the next airport.

Please note that x and y coordinates are always there, but in some cases they will stay at 0,0.

Hope this helped!

Source(s) used: N/A

Computational artifacts can include various forms of bias that result in the _____
of certain groups of people.

Answers

Answer:

Exclusion

Explanation:

Right on Egenuity

Answer:Below

Explanation:

Other Questions
6. Why is it dangerous to abuse OTC stimulant supplements like energy drinks? Whatare the possible side effects? Please help me identify this! thank u Which questions should a reader ask when analyzing a political cartoon? Check all that apply.What is this cartoon about?Does this cartoon avoid using labeling?Is the cartoon funny or amusing?What is the cartoonists point of view?Is the cartoon drawn realistically?Which techniques does the cartoonist use?Are the techniques in the cartoon effective? There are 12 steps in the staircase. Plz don't do it for points!!! How do you get the answer 150? i am really struggling will mark brainliest. PLEASE HELP ASAP NEED ANSWER VERY QUICK!! Which of the following undergo mitosis for the purpose of growth and repair?A. bone cellsB. parameciaC. amoebaD. bacteria Durante el da, nos gusta______ en el restaurante La Mesa. CAN SOMEONE PLZ ANSWER THIS ITS DUE AT 11:59 APRIL 11 2021 AND ILL MARK U BRAINLIST ITS ON THAT PICTURE PLZ How did American soldiers react to the liberation of concentration camps write line ends with this word rhyming..... 14. blank is music written for a small ensemble?A. Monody B. An overture C. Chamber music D. A libretto 15. Large brass, reed, and rhythm sections are typically found in a(n)?A. Orchestra B.Collegium Musicum C. Jazz Combo D. Big Band16. Arnold Schoenberg pioneered the technique known as?A. Impressionism B. Nationalism C. Serialism D. Chromaticism Please Help me to find all the error there are 6 mistakes please help me to find them thanks yall The Wilsons have triplets and another child who is 14 years old. The sum of the ages of their children is 38. How old are the triplets? Please give me the equation!! Correct answer will get brainliest How can-9 4/5be expressed as the sum of its integer and fractional parts? which of the following statements are true of the discriminant? Is the sentence, It was beautiful but it was very cold a simple sentence? 1.How many grams of zinc Zn and oxygen O2 will be needed to form 324 grams of ZnO after the reaction? A driver is most likely to experience longer perception-reaction time due to fatigue when driving in (A) mountainous terrain with many steep grades and sharp curves (B) long sections of flat, tangent roadway and gently curving alignment (C) urban multi-lane highways with high traffic volumes (D) busy commercial strips with many traffic signals and driveways The radius of a sphere is 2.4 cm. Find the volume of the sphere. Is this correct if not what is correct answer