which of the following is a type of virus that travels through shared files and programs and can bring down an entire system?
A) trojan horse
B) worm
C) computer infection
D) spyware

Answers

Answer 1

Answer:

A) trojan horse

Explanation:

Answer 2

Answer:

The worm is able to bring down an entire system

Explanation:


Related Questions

a pair of shoes is on sale for 15% off with this discount customers will pay $9 if they buy the shoes ​

Answers

Answer:

do 15% on a calculator then divide by 9

Explanation:

please can somebody help me! i’m really stuck on this question

Answers

Answer:

import turtle

t = turtle.Turtle()

t.speed(0)

for x in range(1,10):

 for i in range(4):

   t.forward(20*x)

   t.right(90)

When is it appropriate to delete an entire row or column as opposed to deleting the data in the row or column

Answers

Answer:

huh wdym

Explanation:

What stops the current loop and resumes execution at the next statement?
the break statement

the final statement

the pass statement

the infinite-loop statement

Answers

Answer:

break statement:))

Explanation:

The statement that stops the current loop and resumes execution at the next statement is known as the break statement. Thus, the correct option for this question is A.

What is the break statement?

The break statement may be defined as a type statement that effectively terminates the execution of the nearest enclosing do, for, switch, or while statement in which it considerably appears.

While performing the break statement control passes to this statement and follows the termination of the break statement very efficiently. The purpose of the break statement is to break or terminate a loop function as early as possible.  

Therefore, the break statement is the statement that stops the current loop and resumes execution at the next statement. Thus, the correct option for this question is A.

To learn more about Break statements, refer to the link:

https://brainly.com/question/14548592

#SPJ2

PowerPoint SAM Capstone Project 1 can PLEASE someone do it for me I have some directions like steps and you just have to do it in a powerpoint slide please I would really appreciate it

Answers

Answer:

Sooo what's the question??

Explanation:

Answer:

kk

Explanation:

A program uses 4 bits to store numbers. When it adds 10 and 7, the result is 1. Which of the following best explains why?
1) the program is reporting the number of bits required to compute the sum
2) an overflow error led the program to reset to O at the number 16
3) 1" is an error code that indicates a rounding error
4) 4 bits is not enough to represent the number 10, so the computer reported only the tens value

Answers

Answer:

2

Explanation:

overflow

A data type overflow issue typically occurs when the data type used to store the data was unable to accommodate the data. In addition, some data types are limited in the size of the numbers they can hold. If a data type is a single byte and the amount of data to be saved is larger than 256, an overflow error will be generated. Thus, option B is correct.

What an overflow error led the program to reset?

Using exception handling, these mistakes can be addressed. We will examine this exception handling in the section that follows.

We observed the Overflow error in the aforementioned programs, which happens when the current value exceeds the limit value. Furthermore, we must raise the overflow Error exception in order to manage this.

Therefore, When software encounters an overflow error, it means that it tried to write data outside the memory's capacity. Every program has memory set aside for a stack.

Learn more about overflow error here:

https://brainly.com/question/27493058

#SPJ2

The ___ function can be entered by clicking the cell where you want to add the funtion such as cell J6. Then click the arrow next to the autosum button and choose averange

Answers

Answer:

The name of the function that can be added to a cell below a column of numbers or to the right of a row of numbers to find the average by clicking on the AutoSum button on the HOME tab is;

Average

Explanation:

The average function is the function used to quickly find the arithmetic mean, 'μ', or average of a number group, x₁, x₂, x₃, ...xₙ, which is given by dividing the sum of the numbers by the count, 'n', of the numbers, as follows;

μ = ∑x/n

The AutoSum can be used to find the average in Microsoft Excel by clicking on the next cell to row of cells to the right or immediately below the column of cells, then clicking on the down arrow on the right of the AutoSum button on the HOME tab and selecting Average from among the options, the average of the numbers in the column or row of cells will be displayed in the selected cell.

Therefore, we have;

The Average function can be entered by clicking the cell where you want to add the function such as cell J6. Then click the arrow next to the AutoSum button and choose average

Frankie is in charge of writing a script for a television show, along with six other writers. The script must be finished by the end of the week. Frankie’s co-workers all bring slightly different strengths to the table, but all are at least competent. Frankie wants to write the best possible script in the generous amount of time he has to work with. In this example, which style of leadership would be most effective for Frankie’s goals?
a.
Authoritarian
b.
Coaching
c.
Democratic
d.
Delegative

Answers

The best type of leadership for Frankie would be C, Democratic.

The style of leadership would be most effective for Frankie’s goals is Democratic. Thus, option C is correct.

What is Democratic leadership style?

This is known to be a form of government where the the people rule through their elected representative. Note that The style of leadership would be most effective for Frankie’s goals is Democratic as it is where one can listen to what the people has to say.

A good leader must be willing to adopt the style which suits the situation they are in. When dealing with inexperienced employees, an authoritarian style might be the best.

A scripting language or script language is a programming language for a runtime system that automates the execution of tasks that would otherwise be performed individually by a human operator.

Therefore, The style of leadership would be most effective for Frankie’s goals is Democratic. Thus, option C is correct.

Learn more about Democratic from

brainly.com/question/3710021

#SPJ5

The unique identifier for each record in a database table is called the

A. Record Id
B. Id number
C. Primary key
D. Row number

Answers

The answer is C. Primary Key. I hope this helps

Answer:

C

Explanation:

Thank the other person

What is 36 Denary in Binary?? PLEASE ANSWER I WILL GIVE U BRAINLY!!

Answers

Answer:

100100

Explanation:

Heres my answer i hope it helps

Answer:

100100

If you want to know the binary representation of any decimal number up to 7 digits, check out the Decimal to binary converter.

Explanation:

Recognizing the trade-off between interesting design features and cost is part of which stage of the product development life cycle?

Answers

Answer: detailed product design

Explanation:

An audio recording has five minutes of silence at the beginning. Which audio-editing technique will delete this unwanted silence?

topping and tailing

normalizing

equalizing

dithering

Answers

Answer:

topping and tailing

Explanation:

What is output? Select all that apply. c = 0 while (c < 5): c = c + 1 print(c) 6 5 2 4 3 0 1

Answers

Answer:

2 4 3 0 1

Explanation:

Evaluate if the following function is a good candidate to be placed in a library. Why or why not?

Answers

Answer:

It cannot be a good candidate because the creator of the library is attempting to update the global variables player1Points and player2Points. The updated scores for each player won't be retained unless someone creates the global variables player1Points and player2Points in their program.

The updateScore function is meant to update the point of player1 and player2 ; since the variables player1 and player2 are only defined in the function, then they do not have a global scope. Hence, the function isn't right to be placed in a library.

Variables defined outside a function are called global variables ; hence, they can be referenced anywhere within the program.

Since the function references a global variable, then any program which intends to use the function must have the variables player1 and player2 must be defined globally in the program.

Hence, it is not a good candidate to be placed in a library.

Learn more:https://brainly.com/question/20720413

Other Questions
An 8-mer oligopeptide has the following amino acids: A D E E F M W Y (two Es are present) Here is your evidence: 1. Edman degradation produces A. 2. CNBr produces a 5-mer and a 3-mer that contains W.3. Chymotrypsin produces two dipeptides and a tetrapeptide. The tetrapeptide has a total net charge of -4 at pH 12.5. 4. Staphylococcal protease in phosphate buffer produces a tetrapeptide (4-mer), dipeptide, free D, and free W. 5. Staphylococcal protease in acetate buffer produces a pentapeptide (5-mer), dipeptide, and free W.Put in the sequence of the 8-mer (use caps here) i.e. ABCDEFGH. What other theme is addressed in the passage? In a manufacturing plant, a work center is a specific production facility that consists of one or more people and or machines and is treated as one unit for the purposes of capacity requirements planning and job scheduling. If the jobs arriveat a particular work center at a faster rate than they depart, the work center impedes the overall production process and is referred to as a bottleneck. This sample was collected by an operations manager for use in investigating a potential bottleneck work center. There are 315 hours in the work week when items can come into the work center. The manager selects every 15th hour and counts how many items come into the work center during that hour. What type of sample is this? GIVING BRAINLIEST:: MATH! Calculate acceleration of a turtle going from 0.3 m/s to 0.7 m/s in 30 seconds. There should not bullies because there is no reason to bully.So, If you are a bully(IF),Gust do not do things you support and respect your victims and be people not animals.OK?! Them sum of two numbers is 17. One number is 3 less than 2/3 of the numbers. What is the lesser number? A student combined baking soda and vinegar. Is this an example of a chemical reaction? Use evidence and scientific reasoning to support your claim. Eloise has 293 books that she must package into boxes. Each box must hold 8 books. Eloise divides 293 by 8 and gets an answer of 36 R 5. What is the correct interpretation of R 5 for this situation? What the cause of The Ming dynasty weakened over time. I'm kinda confused please help a girl out Which inverse operations could you use to solve the equation m/5 - 8 = -6? Select two answers.A Add 8 to each side and then divide each side by 5B. Add 8 to each side and then multiply each side by 5C. Multiply each side by 5 and then add 40 to each sideD. Subtract 8 from each side and then multiply each side by 5E Multiply each side by 5 and then add 8 to each side which region of the periodic table has the most elements. list them in order The temperance movement resulted in can someone tell me i really need it asap I know what the equation for these problem is and what x is but what is < measures? Are these measures the same? I could have asked the teacher but what if she think that I am annoying. At the end of World War I, one reason the U.S. was able to become a world power was because A.it had not suffered from much physical damage.B.it had stayed out of fighting in the war completely.C.it had more developed industries than other countries.D.it had won more battles than any other country.ResetSubmit Please help Ill mark you as brainliest if correct! In the algebraic expression 9x + 2y + 4x - 12, what are the "like terms"?1. 9x and 2y2. 2y and 4x3. 2y and 124. 9x and 4x HELP ME FAST !T-shirts that usually sell for $28.99 are on salefor $17.39. What percent off are they?