Anna discovers malware on her computer. After being downloaded, the malware self-activated and replicated itself and infected the entire system. What type of malware is this?

A.
worm
B.
virus
C.
Trojan horse
D.
spyware

Answers

Answer 1

Answer:

A.

Explanation:

The malware that replicates itself and can infect the entire system is a worm.

A worm is a type of malware that gets self-activated and replicated. This worm spreads rapidly over the computer system and can corrupt all the files and the entire system.

A worm is a standalone application and does not require action from humans.

Therefore, option A is correct.


Related Questions

Need the answer ASAP!!!

Type the correct answer in the box. Spell all words correctly.
What does the type of documentation depend on?

Apart from the documents required in SDLC phases, there is also other documentation (or variations in documentation) depending upon the nature, type, and_________of the software.

Answers

Answer: type and create of the software

Explanation:

pls mark brainliest

Type the correct answer in the box. Spell all words correctly.
Which resource can you give out to your audience to ensure a better understanding of the presentation?
Provide ________
of the presentation topic to the audience at the beginning or end of the presentation to ald in better understanding.

Answers

Answer:

Eveidence

Explanation:

<3

Answer:

evidence

Explanation:

too easy lol

Need the answer ASAP PLZ!!!! I’ll mark brainliest if it’s correct

Select the correct answer.
Suzanne, a project manager, wants to change the style and font of the text in the document. What documentation standards should Suzanne
follow?

OA
interchange standards
ОВ.
identification standards
OC.
update standards
OD
process standards
OE.
presentation standards

Answers

Answer:

update standards

i think this is correct

don't be afraid to correct me if im wrong

Explanation:

mrk me brainliest

Define the following terms: Staff authority ,in your own words.

Answers

Answer:

To provision advise for other services to line managers.

Explanation:

Question:

Define Staff authority

Explanation:

Line managers receive counsel and other services from staff authority. Senior managers must exercise caution when it comes to restricting the number of employee employment. A company might end up with an excessive level of corporate overhead if this does not happen.

------------------------

hope it helps...

have a great day!!

what are th sensors of street lights
only light or there something else ?

Answers

Answer:they also provide satellites to vision where roads are

Explanation:

A group of students writes their names and unique student ID numbers on sheets of paper. The sheets are then randomly placed in a stack.

Their teacher is looking to see if a specific ID number is included in the stack. Which of the following best describes whether their teacher should use a linear or a binary search?

A. The teacher could use either type of search though the linear search is likely to be faster
B. The teacher could use either type of search though the binary search is likely to be faster
C. Neither type of search will work since the data is numeric
D. Only the linear search will work since the data has not been sorted

Answers

Answer:

D.

Explanation:

Binary searches are required to be first sorted, since they use process of elimination through halving the list every round until the answer is found. Linear searches just start from the beginning and check one by one.

-------- C++ ------

Assume you need to test a function named inOrder. The function inOrder receives three intarguments and returns true if and only if the arguments are in non-decreasing order: that is, the second argument is not less than the first and the third is not less than the second. Write the definition of driver function testInOrder whose job it is to determine whether inOrder is correct. So testInOrder returns true if inOrder is correct and returns false otherwise.

For the purposes of this exercise, assume inOrder is an expensive function call, so call it as few times as possible!

-------------------------------------------

Assume you need to test a function named max. The function max receives two int arguments and returns the larger. Write the definition of driver function testmax whose job it is to determine whether max is correct. So testmax returns true if max is correct and returns false otherwise.

------------------------------------------

Write a program that will predict the size of a population of organisms. The program should ask the user for the starting number of organisms, their average daily population increase (as a percentage, expressed as a fraction in decimal form: for example 0.052 would mean a 5.2% increase each day), and the number of days they will multiply. A loop should display the size of the population for each day.

Input Validation.Do not accept a number less than 2 for the starting size of the population. If the user fails to satisfy this print a line with this message "The starting number of organisms must be at least 2.", display the prompt again and try to read the value. Similarly, do not accept a negative number for average daily population increase, using the message "The average daily population increase must be a positive value." and retrying. Finally, do not accept a number less than 1 for the number of days they will multiply and use the message "The number of days must be at least 1."

Answers

Answer:

The function testInOrder is as follows:

bool testInOrder(){

bool chk= false;

   int n1, n2, n3;

   cin>>n1;cin>> n2; cin>> n3;

   if(n2>=n1 && n3 >= n2){chk = true;}

   bool result = inOrder(n1,n2,n3);

   if(result == chk){ return true;}

   else{return false;}

}

The function testmax is as follows:

bool testmax(){

   bool chk = false;

   int n1, n2;

   cin>>n1; cin>>n2;

   int mx = n1;    

   if(n2>=n1){        mx = n2;    }

   int returnMax = max(n1,n2);

   if(returnMax == mx){        chk = true;            }

   return chk;

}

The prediction program is as follows:

#include <iostream>

using namespace std;

int main(){

   int startSize,numDays;

   float aveInc;

   cout<<"Start Size: ";

   cin>>startSize;

   while(startSize<2){

       cout<<"The starting number of organisms must be at least 2.";

       cin>>startSize;    }

   cout<<"Average Daily Increase: ";

   cin>>aveInc;

   while(aveInc<1){

       cout<<"The average daily population increase must be a positive value.";

       cin>>aveInc;    }

   cout<<"Number of days: ";

   cin>>numDays;

   while(numDays<1){

       cout<<"The number of days must be at least 1.";

       cin>>numDays;    }

   for(int i = 0;i<numDays;i++){        startSize*=(1 + aveInc);    }

   cout<<"Predicted Size: "<<startSize;

}

Explanation:

testInOrder

This defines the function

bool testInOrder(){

bool chk= false;

This declares all three variales

   int n1, n2, n3;

This gets input for the three variables

   cin>>n1; cin>>n2; cin>>n3;

This correctly check if the numbers are in order, the result is saved in chk

   if(n2>=n1 && n3 >= n2){chk = true;}

This gets the result from inOrder(), the result is saved in result

   bool result = inOrder(n1,n2,n3);

If result and chk are the same, then inOrder() is correct

   if(result == chk){ return true;}

If otherwise, then inOrder() is false

   else{return false;}

testmax

This defines the function

bool testmax(){

This initializes the returned value to false

   bool chk = false;

This declares the two inputs as integer

   int n1, n2;

This gets input for the two numbers

   cin>>n1; cin>>n2;

This initializes the max of both to n1

   int mx = n1;    

This correctly calculates the max of n1 and n2

   if(n2>=n1){        mx = n2;    }

This gets the returned value from the max() function

   int returnMax = max(n1,n2);

If returnMax and max are the same, then max() is correct

   if(returnMax == mx){        chk = true;            }

   return chk;

}

Prediction program

This declares all necessary variables

   int startSize,numDays;  float aveInc;

This gets input for start size

   cout<<"Start Size: ";    cin>>startSize;

The loop is repeated until the user enters valid input (>=2) for startSize

   while(startSize<2){

       cout<<"The starting number of organisms must be at least 2.";

       cin>>startSize;    }

This gets input for average increase

   cout<<"Average Daily Increase: ";    cin>>aveInc;

The loop is repeated until the user enters valid input (>=1) for aveInc

   while(aveInc<1){

       cout<<"The average daily population increase must be a positive value.";

       cin>>aveInc;    }

This gets input for the number of days

   cout<<"Number of days: ";    cin>>numDays;

The loop is repeated until the user enters valid input (>=1) for numDays

   while(numDays<1){

       cout<<"The number of days must be at least 1.";

       cin>>numDays;    }

The following loop calculates the predicted size at the end of numDays days

   for(int i = 0;i<numDays;i++){        startSize*=(1 + aveInc);    }

This prints the predicted size

   cout<<"Predicted Size: "<<startSize;

What are some of the ways that a computer or business can be infected with a computer virus?

Answers

Answer: A way a computer or business can be infected with a virus is via a USB. A person can come into the business with a copy of a C.V. which is destroyed in some way. You give the USB to the receptionist and ask to print you a new one. When they do, a virus hidden in the USB will begin to attack the computer. Another way to infect a computer with a virus is to upload it in a comment box. If a website has a comment/complaint section, a hacker can put in code to a virus. This virus will enact itself once the user opens the website. A fake anti-virus program will appear, and the virus will begin installing itself.

A USB can be used to spread a virus to a computer or organization. Someone could enter the company with a duplicate of a CV that has been damaged in some way. You hand the receptionist the USB and ask them to print you a new one.

What is a computer virus?

A computer virus is a piece of malicious software that spreads by copying itself to a document, the boot sector of a computer, or another program. It modifies how a computer operates in the process. A virus starts to spread among computer systems after some type of human interaction.

When they do, a computer will start to be attacked by a virus that was hidden in the USB. Uploading a virus in a comment box is another technique to get it onto a computer.

Thus, A USB can be used to spread a virus to a computer or organization.

For more information about computer virus, click here:

https://brainly.com/question/14467762

#SPJ2

Where ....................... the books that you borrowed? *
1 point
(A) is
(B) are
(C) was
(D) will be​

Answers

Where ARE the books that you borrowed?

How to mark someone the Brainliest

Answers

Answer:

Explanation: Once u get more than 1 answer of a question. A message is shown above each answer that is "Mark as brainiest". Click on the option to mark it the best answer.

Answer:

above

Explanation:

Based on the following quote from Leonardo Da Vinci, what would be his definition of a fine artist? “Principles for the Development of a Complete Mind: Study the science of art. Study the art of science. Develop your senses- especially learn how to see. Realize that everything connects to everything else.” - Leonardo da Vinci
A fine artist must discover the world for herself and not listen to others’ interpretations.

A fine artist is one who sees things others don’t see and makes connections others don’t make.

A fine artist is a scientific genius who cultivates the power of observation.

A fine artist must first be scientist and use science to improve his art.

Please hurry :(

Answers

Answer:

A fine artist is one who sees the things other don't see and make connections other don't make.

Answer:

I think it is

A fine artist is one who sees things others don’t see and makes connections others don’t make.

Please Help!
Computer Sci

Answers

Answer:

A.

Explanation:

Hope this helps :)

. Find the supplements of : 150' and 70°​

Answers

30 is the supplement of 150

Marina requested a copy of her credit report in May 2019 and wants to request a second one in November 2019. What is true?

O She can; it is always free
She can, but she may have to pay for it
O She will not obtain it, a free copy can be requested every two years.
O She will not obtain it, the bureau sends it automatically once a year

Answers

Answer:

B. She can, but she may have to pay for it.

Explanation:

A credit report is a report that contains the credit history of an individual. A credit report is issued by Credit bureaus who have financial information of a person.

Credit bureaus issue one credit report for free every year. But if a person desires to issue a credit report more than once a year then he/she will have to pay a fee for it.

In the given scenario, Marina who has requested a copy of the credit report in May 2019, will have to pay a fee for a copy of the second credit report.

Therefore, option B is correct.

in 2 or 3 sentences, describe one advanced stradegy and how its useful

Answers

Answer:

A search strategy is useful because it helps you learn about things that are not available to you in person. One advanced search strategy is to form words carefully. I could copy 'describe one advance search strategy and how it is useful' and put it into a search engine and get many different results that aren't helpful. But if I shorten it to 'advance search strategies' I get helpful information.

Explanation:

Which of the following represents over one million characters, including emojis?
A. ASCIU
B. Java
C. Turing
D. Unicode

Answers

Answer:

Unicode is responsible for emojis.

Many companies ban or restrict the use of flash drives
Motivate why they sometimes do this by referring to a practical reason they
might have, besides the risk of spreading malware such as viruses​

Answers

Answer:

Companies do not allow flash drives because of any sort of virus, corrupted file, or anything that could hack into the companies' data base, which can ruin they're entire company!

Explanation:

Will Give Brainiest 75pts

Read the following excerpt from "Did You R e a l l y Just Post That Photo?" by Kristin Lewis: There is no way to know for sure if the photos you posted on F a c e b o o k (you know, the ones that got you grounded) are the reason you were denied [college admission]. But you'll always be h a u n t e d by the possibility that the college found them. The fact is, an increasing number of colleges are looking up applicants on social-media sites like F a c e b o o k and Y o u T u b e. If they don't like what they find out about you, you could miss out on a scholarship or even get rejected. Colleges aren't the only ones scouring the Internet for your name either. Potential employers are looking too. An i n a p p r o p r i a t e photo can cost you a job, whether it's the babysitting gig you're hoping to land next week or the internship you will apply for five years from now. Which of the following is a paraphrase of the bolded lines that could be used for note-taking purposes? Applicants use social media to research potential colleges and jobs. Potential employers are looking up applicants online to help make hiring decisions. Social media can negatively impact a user's college and job prospects. "The fact is, an increasing number of colleges are looking up applicants on social-media sites like F a c e b o o k and Y o u T u b e."

Answers

Answer:

it's not C. Social media can negatively impact a user's college and job prospects. I answered that and I got it wrong. I think it might be B, im like 80% sure, so sorry if I'm wrong

hope this helps!

The option that paraphrase  the bolded lines is Potential employers are looking up applicants online to help make hiring decisions.

Is it right for a potential employer to use the Internet in this way?

The use of social media for any kind of monitoring, investigation, and job decision making by the employer is one that is advisable to all.

Conclusively, It is moral to use information that will help one in terms of job performance and if the employer uses the internet in line with their policies and practices, then there is no issue with it.

Learn more about employers from

https://brainly.com/question/26355886

Does anyone play genshin impact here?

Answers

Answer:

what server are u on

Explanation:

yes i do play itttttttttttttttttttttt

Match the parts of a CPU to their functions.

-control unit
-ALU
-register
Is a temporary data storage unit
manages data transfer operations
performs arithmetic and logical operations on input data

Answers

Answer:

CPU performs arithmetic and logical operation on input data

The way it is the performs

Need the answer ASAP!!!!!!!!
I’ll mark brainliest if correct

Drag each label to the correct location on the image. Match the correct component to the part on the flowchart

Procedure 1

subroutine

procedure 2

decision

input

End

Start

Answers

Answer:

i answerd this on a diffrent page

Explanation:

When the condition of an if statement is false, the computer will return an error message to the user.
A. True
B. False

Answers

The correct answer to your problem is A, True

Which of these statements about the truck driving occupation in the U.S. are accurate?

Answers

Answer:

I'm unsure 38373672823

Answer:

I really hate to not give answers when answering for people but I'm not sure. It is definitely not A or D, I am tied between B and C. I'm so sorry I couldn't give the answer but hopefully you can narrow them down

ANSWER:POST-TEST

direction encircle the letter of the correct answer..

1 .the written description accompanying the working drawing

2. a board made of plaster with covering of paper

3.a fire protection device that discharge water when the effect of a fire have been detected, such as when a predetermined temperature has been reached.

4.structural members in building construction that holds the ceiling board

5.the position or placement of lightning fixtures of the house.


with answer na din.

1.C
2.D
3.B
4.A
5.D

SANA MAKATULONG★☆☆


TLE​

Answers

Answer:

1. Specifications.

2. Gypsum board.

3. Sprinkler systems.

4. Ceiling joist.

5. Lighting fixtures.

Explanation:

In Engineering, it is a standard and common practice to use drawings and models in the design and development of buildings, tools or systems that are being used for proffering solutions to specific problems in different fields such as banks, medicine, telecommunications and industries.

Hence, an architect or design engineer make use of drawings such as pictorial drawings, sketches, or architectural (technical) drawing to communicate ideas about a plan (design) to others, record and retain informations (ideas) so that they're not forgotten and analyze how different components of a plan (design) work together.

Architectural drawing is mainly implemented with computer-aided design (CAD) software and it's typically used in plans and blueprints that illustrates how to construct a building or an object.

1. Specifications: it's a well-written description that accompanies a working drawing used for designs and constructions.

2. Gypsum board: also referred to as drywall due to its inherent ability to resist fire. It's a type of board that's typically made of plaster with some covering of paper and it's used for ceilings, walls, etc.

3. Sprinkler systems: it's an automatic fire protection device that is typically designed to discharge a volume of water as soon as the effect of a fire is detected. For instance, when a predetermined or set temperature has been reached such as 69°C

4. Ceiling joist: structural members that are aligned or arranged horizontally in building construction in order to hold the ceiling board together.

5. Lighting fixtures: it's typically the position or placement of lightning fixtures of the house.

Which activity might be a job or task of an IT worker who manages networks?
A. Setting up a LAN for the office
B. Checking employee eligibility for promotions
C. Developing software to help retirement planning
D. Checking driver's licenses for tampering

Answers

A

THE WONDERFUL ANSWER IS A

The activity that might be a job or task of an IT worker who manages networks is Setting up a LAN for the office. The correct option is A.

What is LAN?

A LAN (Local Area Network) is a type of computer network that connects devices in a small geographical area, such as an office building, school, or home.

IT network administrators are in charge of designing, installing, and maintaining computer networks that allow organisations to communicate and share information.

They are usually in charge of configuring routers and switches, configuring firewalls and security protocols, troubleshooting network issues, and ensuring that the network runs smoothly and efficiently.

Setting up a LAN (local area network) for an office is one of the most important tasks that an IT network manager may take on.

Thus, the correct option is A.

For more details regarding LAN, visit:

https://brainly.com/question/13247301

#SPJ7

Collin wants to insert and center a title at the top of his spreadsheet. Collin should _____.


A. highlight the cells in row 1, select Center command, and type the title

B. type the title in cell A1 and click on the center icon

C. select cells in row 1, select the Merge and Center command, and type the title

D. click on cell A5 and type the title

Answers

Answer:

C. select cells in row 1,select the merge and center command, and type the title.

define the following terms: Line authority,in your own words.

Answers

The power given to a person in a supervisory position who makes decisions and actions by subordinates. An engineer manager is an example of like authority.

A computer consists of both software and hardware. a)Define the term software​

Answers

Answer: We should first look at the definition of the term software which is, “the programs and other operating information used by a computer. Now looking at this we can break this definition down. Software, are instructions that tell a computer what to do. Software are the entire set of programs, procedures, and routines associated with the operation of the computer. So pretty much to sum it up software is the set of instructions that tell the computer what to do, when to do it, and how to do it.

Have a nice day!

Answer/Explanation:

We should first look at the definition of the term software which is, “the programs and other operating information used by a computer. Now looking at this we can break this definition down. Software, are instructions that tell a computer what to do. Software are the entire set of programs, procedures, and routines associated with the operation of the computer. So pretty much to sum it up software is the set of instructions that tell the computer what to do, when to do it, and how to do it.

In keyboarding there are 2 sides to a keyboard
True or false

Answers

Answer:

true

Explanation:

True, also know this because the your four fingers are supposed to line up one ASDF and JKL; and your thumbs on the Spacebar

Which feature of REPL.it would you use to transmit your program to a friend?
execute
share
run
post

Answers

Answer:

share

Explanation:

It's in the name of the option.

Answer:

Its share because Share is when you share to someone or your friend

execute is wrong

run doesnt make sense

post means that your posting a program to the world

Explanation:

Other Questions
Plz help me well mark brainliest if correct!!... Why would a researcher use a secondary source instead of a primary sourcewhen analyzing a historical event?A. To see the event through the eyes of someone who witnessed itB. To understand how people felt during the period when the eventhappenedC. To learn from the conclusions of many other experts on the eventD. To hear about the event from someone who was directly involvedSUBMITPREVIOUS Read this excerpt from Infinite Jest.I could, if youd let me, talk and talk. Lets talk about anything. I believe the influence of Kierkegaard on Camus is underestimated. I believe Dennis Gabor may very well have been the Antichrist. I believe Hobbes is just Rousseau in a dark mirror. I believe, with Hegel, that transcendence is absorption. I could interface you guys right under the table, I say. Im not just a cretus, manufactured, conditioned, bred for a function.What assumption does the narrator make in this excerpt?that the people he is addressing enjoy long conversationsthat the people he is addressing appreciate intellectualismthat the people he is addressing have researched philosophythat the people he is addressing expect a confrontation I am writing and essay about Virginia. Because of this I will have to state the word Virgina multiple times. Do I need to make it capital every time or when do I need to? Solve for x. -7x = 63 Which of the following best describes Y on the scatter plot below? A. positive association B. outlier C. cluster D. nonlinear association Give me authentic answers please. what characteristics do you find necessary in the President of the United States?What kind of experience do you feel this POTUS should have? Explain why you feel this way. We say en t for Summer en automne for Autumn/Fall and en hiver for Winter. Why do we say au printemps for Spring? speech on sustainability gardening #6. Find the volume of the cone. Use 3.14 for Pi and round to the nearesttenth. * What is Climate Change?Explain your answer. 2. Which type of energy is centered around breaking the bonds between elements in a compound?NuclearChemicalElectricalElastic A scientist studying fossils in undisturbed layers of rock identified a species that appeared to not have changed a lot over the years. Which observation would have most likely led him to this conclusion? Select the choice that best fits each statement. The following question(s) refer to the following energy sources. (A) Biomass. (B) Wind (C) Tidal energy (D) Nuclear fission (E) Sunlight. The source that is converted directly into electrical energy by photovoltaic cells Which transformation produces another triangle that has the same area as the one shown?A clockwise rotation of 180' about the origin, then adilation by scale factor 232A reflection in the line y = -2, then a translation of2 units right.1-4 -3-211Z-10-1Q4%A clockwise rotation of 90 about the origin, then adilation by scale factor 4.-2R-3A dilation by scale factor then a translation of4 units up. Alex bought some crayon pens and sketch pens in the ratio of 7:4.Each crayon pen cost $2. Each sketch pen cost $2 more than each crayon pen.He spent a total of $360 on these crayon pens and sketch pens.How much did he spend on the crayon pens he bought? what is 434 miles in 7 hours as a rate Helpppppppppppppp plsssss Julie is solving the equation 3x2 + 5x + 15 = 0 and notices that the discriminant b2 - 4ac has a value of -155. This tells her that theequation has