When there is a missing DLL file, _______.
A. Hard drive needs to be scanned
B. the computer will display error messages
C. Applications might run slowly

Answers

Answer 1

Answer:

B. the computer will display error messages

Answer 2

When there is a missing DLL file, the computer will display error messages. The correct option is B.

What is a DLL file?

DLL is dynamic link library is a concept of Microsoft implementation of the shared library concept of Microsoft Windows. This library contains codes and data that can be use in making a program.

Thus, the correct option is B. the computer will display error messages.

Learn more about a DLL file

https://brainly.com/question/23551323

#SPJ1


Related Questions

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

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:

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

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.

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

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

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

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

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

how many free passes do you get for skipping videos and getting answers

Answers

Answer:

I think it is 1 because that is all that works for me

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

Answers

Answer:

2. Software

Explanation:

Software is an app

Hardware is the computer or cell phone or mobile phone

toppr

in a spreadsheet, what is text wrapping used for?

Answers

Text wrapping automatically alters cell height so as to give room for all of the text to fit inside the spreadsheet.

What is the feature about?

The Excel wrap text feature is known to be a tool that can totally display large text in a cell and it is one where there is no overflowing to other part or cells.

Therefore, Text wrapping automatically alters cell height so as to give room for all of the text to fit inside the spreadsheet.

Learn more about text wrapping from

https://brainly.com/question/5625271

#SPJ11

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:

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 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

_______________________ variables do not need to be declared inside the function definition body, they get declared when the function is called.

Answers

Formal parameter variables doesn't have to be declared inside the function definition body because they are declared when the function is called.

What is a formal parameter?

A formal parameter can be defined as a type of variable which a programmer specifies when he or she needs to determine the subroutine or function.

This ultimately implies that, formal parameter variables doesn't have to be declared inside the function definition body because they are declared when the function is called.

Read more on function parameter here: brainly.com/question/20264183

#SPJ11

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

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

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

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

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

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

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

of the choices listed, which is the correct protocol to access a remote computer and execute commands?

Answers

The correct protocol to access a remote computer and execute the commands is Using the winrs command

What is a remote computer?

A remote computer is a computer that a user has no access to physically, but may be able to access it remotely via a network link from another computer.

Therefore, remote computers are connected to another computer via a network link.

Hence, he correct protocol to access a remote computer and execute the commands is Using the winrs command

learn more on remote computer here: https://brainly.com/question/14951054

#SPJ11

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.

describe the difference between serial and parallel processing.

Answers

Serial processing is a type of single task processing but Parallel processing is a type of multiple tasks processing.

What is the difference between serial and parallel processing?

Serial processing gives room for only one object at a time that is said to be processed, but parallel processing often takes in a lot of objects to be  processed simultaneously.

Therefore, Serial processing is a type of single task processing but Parallel processing is a type of multiple tasks processing.

Learn more about Serial processing from

https://brainly.com/question/21304847

#SPJ11

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

Other Questions
What types of isolation lead to the formation of new species?Help ASAP!!!!I need to turn it in as soon as possible.you have 30min to figure this out.Thank you :) Active to passive He drives a bus why can't amylase digest other substances? The coordinate grid shows points A through K. Which points are solutions to thesystem of inequalities listed below? (2 points)2x + y < 102x - 4y > 8EFGHJEFGACDMAEF What federal law requires manufacturers to put care labels on their garments and fabrics sold by the yard? The vertical component of 9N is found to be four-thirds of the horizontal component. a) Find the horizontal component. b)Find the magnitude of the vector Even though the trait approach to leadership has no empirical support, it is still widely used. In your opinion, why is this so? Which of the following would NOT contribute to the principle of Consociationalism? 1) Separation of powers into 3 separate branches2) Checks and balances3) Federalism and the distribution of power by states4) Strict majority power5) Minority rights in the bills of rights. what led to the end of the long drive and the open range Based on this chart about the SNAP benefits, what does the large jump between 2008 and 2010 most likely signify? an increase in national populationan economic crisis throughout the countrya significant rise in overall food costsa dramatic increase in national employment Norman plants a garden eachyear. This year, his gardenproduced 40% fewer tomatoesthan it did last year. If Normansgarden produced 30 tomatoesthis year, how many tomatoesdid his garden produce last year? What literary elements do the authors use to support and develop the central idea of women's autonomy?Woolf uses emotionally charged language to emphasize her viewpoint, while Ibsen uses language that is factual and direct.Ibsen uses dialogue to build conflict between characters, while Woolf alludes to historical figures to make her point.Both passages follow a cause-effect structure to show that a lack of privacy is the result of societys pressure on women to conform.Both passages follow a problem-solution structure in which the problem is revealed in a central conflict or theme. In one or two sentences, state the controlling idea of Chapter 5 of The Dark Game. Remember that the controlling idea includes both the topic of the chapter and the authors viewpoint on the topic. The table shows results of an experiment that was replicated. Which best describes the data?They are precise and reproducible. They are precise but not reproducible. They are accurate and reproducible.They are accurate but not reproducible. A ________ is a collection of tasks, steps, or activities that are performed, usually in a specific order, and result in an end product, such as a good or service. Select one: a. Six Sigma Project b. process c. Six Sigma Methodology d. goal How many liters of a 4M solution can be made using 100 grams of LiBr? i rlly need help with this :(The air force reports that the distribution of heights of male pilots is approximately normal, with a mean of 72.6 inches and a standard deviation of 2.7 inches.Part A: A male pilot whose height is 74.2 inches is at what percentile? Mathematically explain your reasoning and justify your work. (5 points)Part B: Air force fighter jets can accommodate heights of soldiers between 70 inches and 78 inches without compromising safety. Anyone with a height outside that interval cannot fly the fighter jets. Describe what this interval looks like if displayed visually. What percent of male pilots are unable to fly according to this standard? Show your work and mathematically justify your reasoning. (5 points) 3x squared + 6 x cube - 9x squared y when factorused HELP PLEASE FOR BRAINLIEST AND THANKS!!!!!!!In radishes, red and white are the pure-breeding colors and long and round are the pure-breeding shapes, while the hybrids (heterozygotes) are purple and oval. The cross of a red oval with a purple oval will produce all but which of the following shapes?a. red and ovalb. white and longc. purple and oval.d. red and longe. purple and long Which best describes Swifts purpose for writing "A Modest Proposal"?to thoroughly explain his proposal with the hope of solving the problem of poverty in Englandto inform society of a serious issue with the hope of inspiring impoverished people to find jobsto entertain readers with a humorous tale with the hope of creating laughter during a dark timeto criticize Englands treatment of the Irish with the hope of bringing about societal change