Which of the following creates a security concern by using AutoRun to automatically launch malware?

Which Of The Following Creates A Security Concern By Using AutoRun To Automatically Launch Malware?

Answers

Answer 1

Answer:

USB device

Explanation:

AutoRun automatically launches malicious software as soon as you insert a USB device


Related Questions

What do both wireless lans (wlans) and wireless wans (wwans) rely on as the communication medium?

Answers

Wireless lans (WLANS) and wireless wans (wwans) rely on as the radio frequency spectrum communication medium.

What is Radio spectrum?

The radio spectrum is known to be an aspect of the electromagnetic spectrum that is said to have frequencies from 0 Hz to 3,000 GHz.

Note that Wireless lans (WLANS) and wireless wans (wwans) rely on as the radio frequency spectrum communication medium for their functions.

Learn more about WLANS from

https://brainly.com/question/26956118

#SPJ12

When a cookie is created during a website visit, it is stored:

Answers

When a cookie is created during a website visit, it is stored on the hard drive if the visitor's computer.

What is a cookie?

A cookie simply means the small blocks of data that are created by a web server.

In this case, when a cookie is created during a website visit, it is stored on the hard drive if the visitor's computer.

Learn more about cookie on:

brainly.com/question/1308950

#SPJ12

QUESTION 9 OF 100
What does it means when you see a sign with an "X" and two
letters "R" sign posted on the roadside?

Answers

Answer:

it means go sleep on ur bed

jk

Answer:

the sign means "railroad"

Explanation:

cyber vulnerabilities to dod systems may include

Answers

Cyber vulnerabilities to dod systems may include all of the above Options.

What is Cyber vulnerabilities?

In cybersecurity, a vulnerability is known to be any kind of weakness  exist with the aim to be exploited by cybercriminals to be able to have unauthorized access to a computer system.

Note that in the case above, Cyber vulnerabilities to dod systems may include All of the above Options.

Learn more about cyber vulnerabilities from

https://brainly.com/question/7065536

#SPJ11

the control plan is essential because it tells the

Answers

The control plan is essential because it tells the Process owners the way or how to sustain the project gains.

What is the aim of a control plan?

A control plan is known to be a kind of living document that states the methods to be used for quality control of any vital or critical inputs to transport outputs that can meet customer requirements.

Note that The control plan is essential because it tells the Process owners the way or how to sustain the project gains.

Learn more about control plan from

https://brainly.com/question/25453419

#SPJ11

When you coordinate tasks by email, you show respect for the recipient's time by:

Answers

When tasks are coordinated by email, you can show respect for the recipient's time by clearly stating your availability.

What is an e-mail?

An e-mail is an acronym for electronic mail and it can be defined as a software application (program) that is designed and developed to enable users send and receive both texts and multimedia messages over the Internet.

As good work ethics, when tasks are coordinated by e-mail, you can show respect for the recipient's time by clearly stating your availability and providing details about time frames.

Read more on e-mail here: https://brainly.com/question/15291965

#SPJ12

A for statement contains three expressions: initialization, test, and:

Answers

A for statement contains three expressions and these are:

InitializationTestUpdate

What is a for statement?

A for statement can be defined as a type of statement that is written by a computer programmer to repeat an action or event in a software program for a specific number of time.

In Computer programming, a for statement contains three expressions and these include the following:

InitializationTestUpdate

Read more on statements here: https://brainly.com/question/18736215

#SPJ12

7.7% complete Question An aviation tracking system maintains flight records for equipment and personnel. The system is a critical command and control system that must maintain a global availability rate of 99%. The entire system is on a cloud platform that guarantees a failover to multiple zones within a region. In addition to the multi-zonal cloud failover, what other solution would provide the best option to restoring data and rebuilding systems if the primary cloud service becomes unavailable

Answers

The solution that would provide the best option to restoring data and rebuilding systems if the primary cloud service becomes unavailable is offline.

What is data?

It should be noted that data simply means the representation of facts ans concepts on a formalized manner.

In this case, the solution that would provide the best option to restoring data and rebuilding systems if the primary cloud service becomes unavailable is offline.

Learn more about data on:

brainly.com/question/4219149

#SPJ12

HURRY PLS
polina is a system architect and at the point in her current project where she must review the code at a high level to make sure it meets all the requirements. After that, which of the following groups will polina work with


A) the testing team

b)the CEO

Answers

Answer:

the testing team

Explanation:

because even though she may have fulfilled the requirements but she still need to test if it runs perfectly or not

Which two choices are examples of trivial file transfer protocol (tftp) use? (choose two. )

Answers

The two examples of trivial file transfer protocol (TFTP) use are:

Download router upgrades.Software upgrades to IP telephones.

What is trivial file transfer protocol (TFTP)?

Trivial file transfer protocol (TFTP) can be defined as a simple lockstep protocol which is designed and developed to avail an end user an ability to receive a file or place a file onto a remote host.

In Computer networking, the two examples of trivial file transfer protocol (TFTP) use include the following:

Download router upgrades.Software upgrades to IP telephones.

Read more on FTP here: brainly.com/question/20602197

#SPJ12

which one of the following technology would you use if your manager asked you to configure the network setting for every desktop in your company

Answers

The technology that a person would use if your manager asked you to configure the network setting for every desktop in your company is Dynamic Host Protocol (DHCP).

What is Dynamic Host Configuration Protocol (DHCP)?

This is known to be a client/server protocol that often gives  an Internet Protocol (IP) host with its IP address and other linked configuration information.

Note that in the above case, The technology that a person would use if your manager asked you to configure the network setting for every desktop in your company is Dynamic Host Protocol (DHCP).

Learn more about technology from

https://brainly.com/question/25110079

#SPJ11

For this PYTHON lab, we will use functions and imported functions to write a calculation program to do the following:


o Write a program that do the following unit conversion based on user menu selection: (use while

loop until the user enter ‘99’ selection to Quit)

1. Calculate Interest Rate

2. Calculate Mortgage

99 Quit


If user choice selection 1, then calculate interest rate. Modify your interest rate lab program

to be a function. Save this program to simple_interest.py filename in the current lab folder.

Use import to include the function in your main program.

o If user choice selection 2, then calculate mortgage. For this, you need to write a python

program function that will calculate mortgage payment. Save the program to mortgage.py

filename. You can modify the interest program with the following formulate:

1. How to calculate mortgage payment: (You MUST use the following test cases)

 Assume loanAmount = $100,000

 Assume interestRate = 3.25%

 Assume loanTerm = 15 years

 Then formula for mortgage calculation is:

monthlyRate = (interestRate / 100) / 12

numPayments = loanTerm * 12

monthlyPayment = loanAmount * monthlyRate \

* pow((1 + monthlyRate), numPayments) \

/ (pow((1 + monthlyRate),numPayments) - 1)

totalPayment = monthlyPayment * (loanTerm * 12)

interestPaid = totalPayment - loanAmount


 monthlyPayment would be: $702.67

 totalPayment would be: $126,480.38

 interestPaid would be: $26,480.38

PLEASE ANSWER WILL DO ANYTHING WILL MARK BRAINLIEST

Answers

Using the computational language in python it is possible to write a code that does the following unit conversion based on user menu selection:

Writing code in python:

def simple_interest(principal,rate,times,year):

       return principal + principal*(rate/times)*(times*year)/100.0

import simple_interest as si

from datetime import datetime

print("CNET-142: Ron Sha, Lab Menu Function\n",datetime.now())

def simpleInterest():

   print("\nCalulating Simple Interest")

   while True:

       principal = float(input("Enter the starting pricipal, <= 0 to quit: "))

       if principal > 0:

           rate = float(input("Enter the annual interest rate: "))

           times = float(input("How many times per year is the interest compounded? "))

           year = float(input("For how many years will the account earn interest? "))

           totalamount = si.simple_interest(principal, rate, times, year)

           print("At the end of ",year," years you will have $ ",totalamount," with interest earned $ ",totalamount-principal)

       else:

           print("Exiting Simple Interest program...")

           break

def mortagePayment():

   while True:

       loanAmount = float(input("Enter the loan amount, 0 to quit: "))

       if loanAmount>0:

           interestRate = float(input("Enter the loan interest rate: "))

           loanTerm = float(input("Enter the loan term (number of years): "))

           monthlyRate = (interestRate/100)/12

           numPayments = loanTerm*12

           monthlyPayment = round(loanAmount * (monthlyRate*pow((1+monthlyRate), numPayments))/ (pow((1+monthlyRate), numPayments)-1),2)

           totalPayment = round(monthlyPayment*(loanTerm*12),2)

           interestPaid = round(totalPayment - loanAmount,2)

           print("For the loan Amount of $",loanAmount," for ",loanTerm," years with interest rate of ",interestRate," %")

           print("The monthly payment is $",monthlyPayment)

           print("Total amount paid for this loan is $",totalPayment)

           print("Total interest paid for this loan is $",interestPaid)

       else:

           break  

def menuChoice():

   menuchoice = int(input("Select one of the command number above: "))

   if menuchoice == 1:

       simpleInterest()

       return

   elif menuchoice == 2:

       mortagePayment()

       return

   elif menuchoice == 99:

       print("Have a nice day...")

       global flag

       flag = 0

       return

   else:

       print("Error: command not recognised")

       menuChoice()

flag = 1

while flag == 1:

   print("\n------------------------------------------------------")

   print("1\tCalculate Simple Interest\n2\tCalculate Mortage Payment\n99\tQuit the Program")

   print("------------------------------------------------------\n")

   menuChoice()

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

#SPJ1

30 POINTS FOR THE CORRECT ANSWER
Ruben is volunteering as a reading helper with a kindergarten class in his hometown. He really likes all 24 of the students and wants to do something nice for them. He has decided to design a book for them as a gift. Ruben plans on drawing all his own illustrations and laying out the pages, but he wants each of their names to be interwoven into the story.

What are the different options Ruben could consider for printing his books? Choose a printing method and detail why it is the best choice for Ruben. Next, choose another printing method and detail why it is not the best choice for Ruben.

Answers

In the case above, Ruben  should consider the printing option below:

Offset litho printing.Digital Printing.Screen printing.

What is the best printing type for books?

The use of digital printing is known to be the best in the case with Ruben. It is said to be much more economical in terms of shorter print runs.

Note that Digital printing do have fast turnaround time and as such it is better for books.

Therefore, In the case above, Ruben  should consider the printing option below:

Offset litho printing.Digital Printing.Screen printing.

Learn more about printing from

https://brainly.com/question/145385

#SPJ1

what statement can you use to divide a script into multiple batches?

Answers

The GO statement can be used to divide a script into multiple batches

How to determine the statement?

To divide a script, we make use of the GO statement or the GO command.

The GO statement has no syntax because it is not a keyword in SQL.

However, it is used by the SQL to create a group or batch of instructions that would be sent into the server

Read more about SQL at:

https://brainly.com/question/25694408

#SPJ11

Which wan connection types use digital communications over pots?

Answers

The WAN Connection that uses digital communications over pots is called; Digital Subscriber Line (DSL)

How to understand WAN (Wide area network)?

A wide area network(WAN) is defined as a telecommunications network that extends over a large geographic area.

Now, there are different means of transmitting these WAN networks but the connection type that uses digital communication over pots is called Digital Subscriber Line (DSL). This is because it digitally transmits data that is sent over the POTS copper wire infrastructure using Point–to–point (PTP) technology which experiences little to no congestion.

Read more about Wide area Network at; https://brainly.com/question/8118353

#SPJ12

Which utility uses the internet control messaging protocol (icmp)? cisco

Answers

The utility that uses the internet control messaging protocol (icmp) is known as Ping.

What is Ping?

Ping is known to be a kind of utility that makes use of ICMP messages to report back an information on network connectivity and also  data speed often sends between a host and a given computer.

Note that The utility that uses the internet control messaging protocol (icmp) is known as Ping.

Learn more about internet control from

https://brainly.com/question/9257742

#SPJ12

Which blu-ray standard defines rewritable disks?

Answers

The blu-ray standard that defines rewritable disks is BD-RE.

What is a rewritable disk?

It should be noted that a rewritable disk simply means an erasable disk that can be reused.

In this case, the blu-ray standard that defines rewritable disks is BD-RE. It is the recordable standard.

Learn more about disks on:

brainly.com/question/20381259

#SPJ12

Which feature on a cisco router permits the forwarding of traffic for which there is no specific route?

Answers

The feature on a cisco router permits the forwarding of traffic for which there is no specific route is a default static route.

What is a router?

A router simply means a network that used to provide access to the internet of a private computer network.

Here, the feature on a cisco router permits the forwarding of traffic for which there is no specific route is a default static route.

Learn more about router on:

brainly.com/question/24812743

#SPJ12

What is the denotation of the word desperate? in need of excited about overlooked for interested in

Answers

The denotation of the word desperate is known to be "in need of".

Who is a  desperate person?

A desperate person is known to be a person that is willing to do any thing so that they get what they wants as they are really in need of that thing.

Therefore, due to the above, the denotation of the word desperate is known to be "in need of".

See full question below

Read the excerpt from "Finding Unity in the Alabama Coal Mines.” The coal companies, in response, recruited workers from as far as New York’s Ellis Island, where newly arriving immigrants were desperate for jobs. What is the denotation of the word desperate? in need of excited about overlooked for interested in

Learn more about desperate from

https://brainly.com/question/14191524

#SPJ1

Answer:

A)The denotation of the word desperate is known to be "in need of".

Explanation:

An aggregate function is _____. A. a function that calculates a statistic such as a subtotal or average B. a mathematical expression, such as [Qty]*[UnitsSold] C. a way to group records, such as by state or postal code D. a way to test the accuracy of data

Answers

Answer:

A. a function that calculates a statistic such as a subtotal or average.

Suppose a family has had a house fire in which they lost many photos, and they are worried about losing more if they have another. Which of the following is a reason this family may want to digitize their photos? Choose all that apply.

A: to make it easier to e-mail photos to friends

B: to maximize file space on their hard drive

C: to minimize risk of losing photos by backing them up in virtual space

D: to save space in their home

Answers

Answer:

C - Minimize the risk of future loss.

Explanation:

All four reasons listed are valid reasons to digitize family photos, but in this instance where this family has lost photos in a house fire before, minimizing the risk of losing photos in the future might be their primary goal.

When a file is used by a program, there are three steps that must be taken:

Answers

The three steps that must be taken:

Open the file Process the fileClose the file

What is file opening?

The act of Opening a file is one that makes a a connection to exist between the file and the program.

Note that The three steps that must be taken:

Open the file Process the fileClose the file

Learn more about program from

https://brainly.com/question/1538272

#SPJ12

isdn is considered to be what type of wan connection?

Answers

ISDN is considered to be a type of circuit-switched connection WAN connection.

What is a WAN?

WAN is an acronym for wide area network and it can be defined as a telecommunication network that covers a wide range of geographical locations, especially for the purpose of communication between different users in different countries or regions across the world.

Integrated Services Digital Network (ISDN) is considered to be a type of circuit-switched connection wide area network (WAN) connection.

Read more on WAN here: https://brainly.com/question/8118353

#SPJ12

what do you mean by computer ethics?​

Answers

Answer:

Computer ethics is a field of applied ethics that addresses ethical issues in the use, design and management of information technology and in the formulation of ethical policies for its regulation in society.

Take dismal Jack la floor italianizarla pues

A/An is useful in comparing data values from populations with different means and standard deviations.

Answers

A useful tool in comparing data values from populations with different means and standard deviations is z-score.

What is a Z-score?

This is known to be a kind of numerical measurement that tells a value's association to the mean of a group of values.

The Z-score is said to be measured in regards to standard deviations that arises from the mean.

Note that A useful tool in comparing data values from populations with different means and standard deviations is z-score.

Learn more about z-score from

https://brainly.com/question/25638875

#SPJ11

Add the following line of code to the end of your script, replacing any function calls: nested_sum( eval(input()) )

Answers

The program is an illustration of loops; Loops are program statements used for repetition of operations

How to complete the code?

The complete question is added as an attachment

The code written in Python that completes the missing parameters in the question are:

def nested_sum(mylist):

   total = 0

   for other_list in mylist:

       total += sum(other_list)        

   print(total)

   

t = [[1,2],[3],[4,5,6]]

nested_sum(t)

nested_sum( eval(input()))

Read more about loops at:

https://brainly.com/question/24833629

#SPJ11

What is the primary added value of relational databases over flat files?

Answers

The primary added value (advantage) of relational databases over flat files is an ability of the system to quickly scan large amounts of data.

What is a relational database?

A relational database can be defined as a type of database that is designed and developed to store, structure and recognize relation that are existing between data points and items of information.

In database management system (DBMS), an ability of the system to quickly scan large amounts of data is the primary added value (advantage) of relational databases over flat files.

Read more on database here: brainly.com/question/13179611

#SPJ12

Question 2 A data analyst uses the Color tool in Tableau to apply a color scheme to a data visualization. In order to make the visualization accessible for people with color vision deficiencies, what should they do next

Answers

In order to make the visualization accessible for people with color vision deficiencies, he should make sure the color scheme has contrast.

What is a color scheme?

A color scheme can be defined as a combination or arrangement of different colors, which are used during the design and development of a software, project, etc.

In this scenario, the data analyst should make sure the color scheme has contrast so as to make the visualization accessible for people with color vision deficiencies.

Read more on data analyst here: https://brainly.com/question/27748920

#SPJ1

A(n) _________ Web page displays customized content in response to keyboard or mouse actions or based on information supplied directly or indirectly by the person viewing the page.

Answers

Answer:

dynamic

Explanation:

A dynamic web page serves out varied material to various visitors while keeping the same layout and appearance. These pages, which are often built in AJAX, ASP, or ASP.NET, require longer to render than plain static sites. They are commonly used to display data that updates regularly, such as weather forecast or market prices.

Dynamic web pages often incorporate software applications for various services and need server-side resources such as databases. A database enables the page builder to divide the design of the website from the content that will be presented to users. When they post material to the database, the website retrieves it in response to a user request.

what is the minimum number of load balancers needed to configure active/active load balancing?

Answers

Answer:

2

Explanation:

The primary and secondary machines should both be actively handling connections to your virtual servers in order for active/active to entail having two load balancing appliances running concurrently. The second interpretation of active/active has to do with ones back end servers, which are all running and accepting connections behind the virtual service. This makes use of all of your available computing power for accepting connections.

The minimum number of load balancers needed to configure active/active load balancing is 2.

What are load balancers?

Load balancing is known to be a key networking solution that is often employed to share traffic across multiple servers in the case of server farm.

Note that The minimum number of load balancers needed to configure active/active load balancing is 2.

See full question below

What is the minimum number of load balancers needed to configure active/active load balancing?

- 2

- 4

- 1

- 3

Learn more about load balancers from

https://brainly.com/question/13088926

#SPJ11

Other Questions
Pyroxene and Olivine are two minerals formed by the cooling of lava, whereas quartz and feldspar are formed as magma cools. a. Based on the way they form, which two minerals will be comparatively bigger in size?b. Why? Provide scientific evidence to support your answer In a spelling bee $50\%$ of the students were eliminated after the first round. Only $\frac{1}{3}$ of the remaining students were still in the contest after the second round. If 24 students were still in the contest after the second round, how many students began the contest Read the passage.People need to be careful when shopping online. Now people can buy just about anything they need without having to leave home. People can save time because they no longer need to drive from store to store. People can also save money because they can quickly check the prices on the same products at many different online stores. Then they can buy what they need from the online store with the lowest prices.What do you notice about the structure and organization of the paragraph?There are many misspelled words.The supporting details are not in a logical order.There is no topic sentence.The topic sentence does not state the paragraphs main idea. Factory labor charges that cannot be easily traced to a job are treated as ______. Which of the following is the best example of an isolated system?OA. A bus at a bus stationB. An astronaut in a spaceshipOC. A car on the freewayD. A motorcycle in a garage Think about the writing prompt. Which side will you discuss in your argumentative essay? rredpozedntaftsw meetingna meeting6.Read this paragraph:(1) Around the nation, incidents ofcyberbullying have risen dramatically. (2)Our school is not invulnerable to thepernicious effects of cyberbullying. (3)Therefore, at the next school assembly, atraveling theater troupe will be presenting onwhat cyberbullying is, and what we can doto recognize and stop it. (4) It is imperativeto the safety of students that all teachers andstudents are present.Which sentence should be revised to correctthe mood of a verb?E.F.G.H.sentence 1sentence 2sentence 3sentence 4 Privacy concerns are one of the biggest reasons people don't purchase goods and services online.true false If 2 moles of water decomposes, the products that will form are 2 moles of hydrogen gas and one mole of oxygen gas. If a reaction is conducted that consumes 20.0 mL of water, what volume of oxygen gas will be produced Explain how the moon causes high and low tides. pls help oooooooooooo Question 9 (Multiple Choice Worth 2 points)(05.04 MC)According to the hierarchal classification of a select group of organisms given below, which two organisms are most closely related accordingto Linnaean taxonomy and why?Kingdom ANIMALIAPhylum CHORDATAClass MAMMALIAOrder CARNIVORAFelidaeFelis PantheracatuspardusPardalisCanidaeCanisfamiliaris lupusUrsidaeorelosUrsushorribilusCanis familiaris and Felis catus, because they belong to the same classFelis catus and Panthera pardalis, because they belong to the same familyantnera parous and ursus nomnens necause they belong to the same ornerUrsus arclos and Canis lupus, because they belong to the same genus A small mass m slides with negligible friction down an incline at an angle of 25.76 with respect to the horizontal. It then drops down to a horizontal surface and bounces elastically back up as shown.The picture is to scale. It shows the position of the mass at equal time intervals starting from rest at T. The height of the mass at X is the same as at V. Click here to view the motion of the mass m.(options are: less than, greater than, equal to) The speed change between T and S is (blank) between S and R. The speed of m at X is (blank) that at Q. The size of the total force on m at P is (blank) at U. The mechanical energy of m at P is (blank) that at V. The size of the total force on m at S is (blank) at P. The velocity of m at X is (blank) that at V. why is it important to convert currency units from one type to another chemistry Justinian is considered to be the last Roman Emperor to speak Latin as a first language. What does this fact imply about the changes in the Roman Empire at that time?A. The Western Empire had lost most of its political, religious, and economic power.B. The conquests of Justinian had succeeded in making the Romans allies of the Byzantines.C. The Eastern Empire had been influenced by the linguistic changes taking place in "barbarian" lands.D. The empire of Justinian rejected the concept of a single Roman Empire. Miss Bennet's pleasing manners grew on the goodwill of Mrs. Hurst and Miss Bingley; and though the mother was found to be intolerable, and the younger sisters not worth speaking to, a wish of being better acquainted with them was expressed towards the two eldest.Simple sentenceCompound sentenceCompound-complex sentenceComplex sentence If f(x) =2x+36x-5a. 1b. -2then f() =C. -1d. - 13 Many people ___________ about having the surgery,a. knewb. hesitatedc. were angryd. did research Which statement best describes the Siege of Boston in 1775? __________ is reasoning that allows adolescents to use abstract logic in the absence of concrete examples.