a. A set of electronic program that makes of computer perform tasks
1. Instructions
2. Software
3. Hardware
4. None of the

Answers

Answer 1

Answer:

2. Software

Explanation:

Software is an app

Hardware is the computer or cell phone or mobile phone

toppr


Related Questions

In the certificate authority trust model known as a hierarchy, where does trust start?

Answers

In the certificate authority trust model known as a hierarchy, the trust start from Root CA.

What does a certificate authority do?

A certificate authority (CA) is known to be a kind of a trusted body that is known to often issues Secure Sockets Layer (SSL) certificates.

Note that In the certificate authority trust model known as a hierarchy, the trust start from Root CA as that is its beginning point.

Learn more about  certificate authority from

https://brainly.com/question/17011621

#SPJ12

Restore points are created at regular intervals and just before you install software or hardware by what utility?

Answers

System Protection is a utility that create restore points at regular intervals and just before an end user installs a software or hardware.

What is System Protection?

System Protection can be defined as a utility that is designed and developed to create restore points on a computer system at regular intervals, especially before an end user installs a software or hardware.

This ultimately implies that, System Protection is a utility that create restore points at regular intervals and just before an end user installs a software or hardware.

Read more on System Protection here: https://brainly.com/question/13982988

#SPJ12

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

Answers

Answer:

USB device

Explanation:

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

Which is not an advantage of replication of data in terms of directory services?

Answers

The statement which isn't an advantage of replication of data with respect to directory services is that it allows you to locally manage user accounts.

What is a directory service?

A directory service is a software system designed and developed to store, organize and provide end users with a name and an access to directory information, so as to effectively and efficiently unify (synchronize) all network resources.

In this context, we can infer and logically deduce that the statement which isn't an advantage of replication of data with respect to directory services is that it allows you to locally manage user accounts.

Read more on directory services here: https://brainly.com/question/15187174

#SPJ12

When a sender encrypts a message using their own private key, which security service is being provided to the recipient?

Answers

A security service which is being provided to the recipient when a sender encrypts a message by using his or her own private key is non-repudiation.

What is non-repudiation?

Non-repudiation can be defined as an assurance that the sender of a message is given a proof of delivery and the recipient of this message is also provided with a proof of the sender’s identity, so none of them can deny having processed the message.

This ultimately implies that, non-repudiation is a security service which is being provided to the recipient when a sender encrypts a message by using his or her own private key.

Read more on non-repudiation here: https://brainly.com/question/14631388

#SPJ12

you have been using snmp on your network for monitoring and management. you are concerned about the security of this configuration. what should you do?

Answers

The thing that should be done is to implement version 3 of SNMP.

How to depict the information?

In this situation, the person has been using snmp on your network for monitoring and management. you are concerned about the security of this configuration.

Therefore, since the person is concerned about the security of this configuration, the thing that should be done is to implement version 3 of SNMP.

Learn more about configuration on:

brainly.com/question/26084288

#SPJ12

What is the most common way to obtain new software?.

Answers

Today, the most common way to get new software is to download it from the Internet. Applications like Microsoft Office and Adobe Photoshop can now be purchased and downloaded right to your computer. You can also install free software this way.

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:

what is one of the key components of a typical formula?

Answers

The key components of a typical formula?

FunctionsReferencesOperatorsConstants.

What is a formula?

A formula is known to be made up of functions, references, operators, and constants as they help it to carryout its operations.

A function is known to be any rule, or expression that tells about an association between one variable and other.

Therefore, The key components of a typical formula?

FunctionsReferencesOperatorsConstants.

Learn more formula from

https://brainly.com/question/2005046

#SPJ11

Salesforce cpq the sales operations team at universal containers used the create order button to generate an order with only half of the available quote lines and then the team selects the ordered checkbox. what updates should the sales operations team expect

Answers

The updates  that the sales operations team should  expect is A second Order is generated with the remaining Quote Lines.

What do sales operations teams do?

Sales operations teams are known to be people that work on or monitors the administrative and technical tasks that can be a burden to salespeople.

Therefore, in the case above, The updates  that the sales operations team should  expect is A second Order is generated with the remaining Quote Lines.

See full question below

The sales operations team at Universal Containers used the Create Order button to generate an Order with only half of the available Quote Lines and then the team selects the Ordered checkbox.

What updates should the sales operations team expect?

A. An Order without Order Products is created.

B. The existing Order is updated with the remaining Quote Lines.

C. A second Order is generated with the remaining Quote Lines.

D. An error is thrown informing the user an Order already exists.

Learn more about  sales operations  from

https://brainly.com/question/26175085

#SPJ1

what types of physical drives does windows disable defragmenting, but provides another method of optimization?

Answers

The type of physical drives does windows disable defragmenting, but provides another method of optimization is known as windows.

What is windows?

It should be noted that windows is a separate viewing area on a computer display screen in a system.

In this case, the type of physical drives does windows disable defragmenting, but provides another method of optimization is known as windows.

Learn more about window on:

brainly.com/question/25243683

#SPJ12

PYTHON --- Toll roads have different fees based on the time of day and on weekends. Write a function calc_toll() that has three parameters: the current hour of time (int), whether the time is morning (boolean), and whether the day is a weekend (boolean). The function returns the correct toll fee (float), based on the chart below.Weekday TollsBefore 7:00 am ($1.15)7:00 am to 9:59 am ($2.95)10:00 am to 2:59 pm ($1.90)3:00 pm to 7:59 pm ($3.95)Starting 8:00 pm ($1.40)Weekend TollsBefore 7:00 am ($1.05)7:00 am to 7:59 pm ($2.15)Starting 8:00 pm ($1.10)Ex: The function calls below, with the given arguments, will return the following toll fees:calc_toll(8, True, False) returns 2.95calc_toll(1, False, False) returns 1.90calc_toll(3, False, True) returns 2.15calc_toll(5, True, True) returns 1.05

Answers

The toll program illustrates the use of conditional statements;

As a general rule, conditional statements are used to make decisions

The toll program

The toll program written in Python where conditional statements are used to make several decisions is as follows:

def calc_toll(hour, morning, weekend):

   toll_fee = 0

   if weekend == False:

       if morning == True:

           if hour < 7:

               toll_fee+=1.15

           elif hour < 10:

               toll_fee+=2.95

           elif hour <= 12:

               toll_fee+=1.90

       else:

           if hour < 3:

               toll_fee+=1.90

           elif hour < 8:

               toll_fee+=3.95

           elif hour >= 8:

               toll_fee+=1.40

   else:

       if morning == True:

           if hour < 7:

               toll_fee+=1.05

           elif hour <= 12:

               toll_fee+=2.15

       else:

           if hour < 8:

               toll_fee+=2.15

           elif hour >= 8:

               toll_fee+=1.10

   return toll_fee

   

Read more about conditional statements at:

https://brainly.com/question/24833629

#SPJ1

Before a computer can use a router, what configuration information must it be provided?

Answers

Before a computer can use a router, the default gateway must be configured.

What are routers?

Routers are device that connects two or more packet-switched networks or subnetworks.

A router receives and sends data on computer networks.

The router route the IP addresses of this computer over the internet for effective communication.

The default gateway allows for devices in one network to communicate with devices in another network.

Therefore, the default gateway must be configured before a computer can use a router.

learn more on routers here: https://brainly.com/question/25823209

#SPJ12

When passing a list of parameters to a stored procedure by name, you can omit optional parameters by:

Answers

When passing a list of parameters to a stored procedure by name, you can omit optional parameters by omitting the parameter name and value from the list.

What is optional parameter?

It should be noted that optional parameter simply means a method that doesn't force pass arguments at calling time.

In this case, when passing a list of parameters to a stored procedure by name, you can omit optional parameters by omitting the parameter name and value from the list.

Learn more about parameter on:

brainly.com/question/13151723

#SPJ12

Which should precede the order on a classified balance sheet

Answers

A Long-term investments should precede the other on a classified balance sheet.

What is the order of a classified balance sheet?

The common classifications that is often employed within a classified balance sheet are:

Current assets Long-term investmentsFixed assets, etc.

Therefore, A Long-term investments should precede the other on a classified balance sheet.

Learn more about balance sheet from

https://brainly.com/question/1113933

#SPJ12

4. Ernesto works in a small office with five other people. What are two possible connection
issues Ernesto might encounter if the company uses a LAN?

Answers

LAN is the networking device and channel that interconnects the local area systems. If the company uses LAN, then issues with speed and connectivity will occur.

What is LAN?

The local area network connects the computers of small and local regions confined to small geographical areas and is seen in the schools, offices, and residences.

If LAN is used between more people then the internet speed and connectivity will be affected as there will be redundancy in the data packet transfer speed.

Therefore, the speed and connectivity will be affected.

Learn more about LAN here:

https://brainly.com/question/14308916

#SPJ1

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

Which network lets its users send and receive data as if their devices were connected to the private network even if they are not?

Answers

Answer:

Virtual Private Network, also known as VPN

Explanation:

A VPN connects a private network to a public network like the Internet. It lets users to send and receive data over public network systems as if their electronic systems were directly linked to the private network, benefits from the private network's capabilities, encryption, and administrative rules. A VPN is built by using dedicated connections, virtual tunneling technologies, or data encryption to construct a virtual point-to-point connectivity.

VPNs securely link a company's geographically disparate locations, forming one unified network. Individual Internet users also utilize VPN technology to safeguard their wireless activities, evade geo-restrictions and censorship, and link to proxy servers to secure their personal identity and location. VPN is a security mechanism that is best suited for individual user connections rather than secure connections of a variety of embedded devices.

Which of the following terms refers to the area of the hard drive used for virtual memory?

A. virtual file

B. data file

C. swap file

D. volatile file

Answers

Answer: C. Swap File

Explanation: Swap files provide some space for programs for the computer and virtual memory.

The term that refers to the area of the hard drive used for virtual memory is a swap file. The correct option is c.

What is virtual memory?

Operating systems use virtual memory, a different set of memory addresses, along with the hardware reserve to increase the total number of addresses (actual memory plus virtual memory). The virtual addresses are changed into actual memory addresses when the application is really run.

A swap file is a hard drive space that serves as a computer's virtual memory expansion (RAM). A computer can use more memory than what is actually installed in it by employing a swap file.

In order to save space, data from RAM is "swapped" onto a file or area on the hard drive. Data is switched back and forth from the RAM to the swap file as you switch between the apps.

Therefore, the correct option is c. swap file.

To learn more about virtual memory, refer to the link:

https://brainly.com/question/13441089

#SPJ2

Access passwords (or pins) and device encryption for devices are:

Answers

Access passwords (pins) and encryption for devices are recommended for all devices, especially for portable ones because they can easily be lost or stolen.

What is a password?

A password can be defined as a string of characters, phrase or word that is designed and developed to distinguish an unauthorized user from an authorized user.

Additionally, an encryption is used to conceal and secure a digital data, so as to make it hidden to unauthorized user.

In conclusion, access passwords (pins) and encryption for devices are recommended for all devices, especially for portable ones because they can easily be lost or stolen.

Read more on password here: https://brainly.com/question/19116554

#SPJ12

An error in a program that involves a violation of language rules will be detected at

Answers

An error in a program that involves a violation of language (syntax) rules will be detected at compile time.

What is a compiler?

A compiler refers to a software program that is designed and developed to translate the entire source code of program at once, so as to produce object code.

Thus, a compiler translates a software program that is written in a high-level language into low-level language (machine language).

In conclusion, we can deduce that an error in a software program that is associated with a violation of language (syntax) rules will be detected at compile time.

Read more on programs here: brainly.com/question/26324021

#SPJ12

What type of user can open any subscription level of quickbooks online using the quickbooks online advanced app?.

Answers

Answer:

A Custom user.

Explanation:

I believe this is right. Lol :')

in a relational database application, a(n) ________ key is used to link one table with another.

Answers

In a relational database application, a foreign key is used to link one table with another.

What is a foreign key?

In database management system (DBMS), a foreign key can be defined as a column whose value provides a link between the data that are stored in a table or relational database.

This ultimately implies that, a foreign key is used to link one table with another in a relational database application.

Read more on keys here: https://brainly.com/question/8131854

#SPJ12

What command will prevent all unencrypted passwords from displaying in plain text in a configuration file?.

Answers

Answer:

The service password-encryption command

Explanation:

To prevent all configured passwords from appearing in plain text in configuration files, an administrator can execute the service password-encryption command. This command encrypts all configured passwords in the configuration file

identifying the source of owners of online resources ​

Answers

Answer:

To find the source of owners of online resources, you can click on the lock button on the search tab or relocate to the bottom of the resources page to find the sources of owners/authors of online resources. Hope it helps!

A variable, usually a bool or an int, that signals when a condition exists is known as a(n):

Answers

A variable, usually a bool or an integer, that signals when a condition exists is a flag.

What is a variable?

Generally, variables are containers for storing values.

A variable is a memory location where you store a value.

The value that you have stored may change in the future according to the specifications.

Therefore, a a variable usually a bool or an integer, that signals when a condition exists is a flag

learn more on variable here: https://brainly.com/question/14500181

#SPJ2

Vani is trying to connect a microphone to her laptop. What are the two way she can connect the microphone?

Answers

Through the audio jack or via Bluetooth

Three symptoms of spyware

Answers

Answer:

Random advertisements that pop up on your computer. Unusual slowness of your system. Unusual instability in your system, computer crashes more than usual

Explanation:

People are trying to hack into your computer

The lower-order word of the r9 register can be addressed as

Answers

The lower-order word of the r9 register can be addressed as an aspect of  64-bit general registers and in SP-2.

What is low order word?

The "Word" that is 16 bits, and it is one where two words can fit into a 32 bit location usually at the same time. The "low" word is said to be the smallest or least significant of 16 bits.

Therefore, note that the lower-order word of the r9 register can be addressed as an aspect of  64-bit general registers and in SP-2.

Learn more about lower-order word from

https://brainly.com/question/13833510

#SPJ12

________ is malware that hijacks a user's computer and demands payment in return for giving back access.

Answers

Ransom  malware that hijacks a user's computer and demands payment in return for giving back access.

What is Ransom malware?

This is known to be a kind of  malware that hinders users from gaining in or access to their system or personal files and it is one that often demands ransom payment so as to get access.

Therefore, Ransom  malware that hijacks a user's computer and demands payment in return for giving back access.

Learn more about Ransom  malware from

https://brainly.com/question/27312662

#SPJ12

Other Questions
Simplify:(x-1)+(127.5x) Question 11 of 15A document making an argument about a historical event is most likely to becredible if it:OA. relies mostly on opinions instead of facts.OB. has been read by millions of people around the world.C. makes claims that are corroborated by other sources.D. was written by a person who feels strongly about the event. james wants to estimate the absolute age of an animal fossil, however the test results show that that fossil doesnt contain any atoms of carbon 14. what can james conclude about the lack of carbon 14 Help with this math problem Death lays his icy hands on kings.A) PersonificationB) Simile C) MetaphorD) Oxymoron Which two details in the passage support the idea that Darcy is also prejudiced against Elizabeth?from Pride and Prejudiceby Jane AustenIn this scene, Elizabeth has rejected Darcys proposal of marriage has given her opinion of him, and the following is his response to her."And this," cried Darcy, as he walked with quick steps across the room, "is your opinion of me! This is the estimation in which you hold me! I thank you for explaining it so fully. My faults, according to this calculation, are heavy indeed! But perhaps," added he, stopping in his walk, and turning towards her, "these offences might have been overlooked, had not your pride been hurt by my honest confession of the scruples that had long prevented my forming any serious design. These bitter accusations might have been suppressed, had I with greater policy concealed my struggles, and flattered you into the belief of my being impelled by unqualified, unalloyed inclination; by reason, by reflection, by every thing. But disguise of every sort is my abhorrence. Nor am I ashamed of the feelings I related. They were natural and just. Could you expect me to rejoice in the inferiority of your connections? To congratulate myself on the hope of relations, whose condition in life is so decidedly beneath my own?" 5The recursive formula for a geometric sequence is given below. What is the third term in the sequence?f(1) = 2f(n) = 3f(n 1)-OA. 18OB. 54OC. 162OD. 12ResetSubmit That I did always loveI bring thee ProofThat till I lovedI never livedEnoughWhat is the effect of the use of the word enough in this quotation? 7. Identify 3 adaptations that result in aerobically trained individuals having greater SV compared tountrained individuals (I just need 3 adaptations listed). Please and thank you for your help in advance Global warming is raising sea levels because of Group of answer choices melting ice and thermal expansion. ocean basins compressed by continental drift. greatly increased precipitation. increased use of irrigation and drainage of wetlands on land. Refer to the figure to complete the following item.Given:If m = 60 and m = 30, then 3 =451530 Need number 2 please!! Which of the following is not a business transaction? a.Erin purchased hedge trimmers for her lawn service agreeing to pay the supplier next month. b.Erin deposits $15,000 in a bank account in the name of Erin's Lawn Service. c.Erin provided services to customers earning fees of $600. d.Erin pays her monthly personal credit card bill. The graph represents the piecewise function Being is important when you are addressing counter claims to your argument Chaunticleer was a _____. What type of sentence structure is shown in the sentence below? When we go on vacation, my family enjoys spending time at the beach, and we always have fun. State whether the following physical quantities are scalars or vectors: a. Pressure. b. Electric current. c. Conductivity. d. Electric conductance. e. Frequency. f. Heat capacity. g. Impedance. h. Power. i. Torque. j. Latent heat This is further maths questions whenx=2y=50 and whenx=4y=100 Which direct variation equation can be used to model this function? A researcher finds that the more hours students party per week, the lower their gpas (grade point averages). she questions whether there may be other issues affecting the students' gpas that weren't taken into account, such as the number of hours spent studying, class attendance, or the number of hours worked at campus jobs. what are these additional factors called