A company has an online order processing system. The company…

A company has an online order processing system. The company is in the process of determining the dollar amount of loss from user error. The company estimates the probability of occurrence of user error to be 90%, with evenly distributed losses ranging from $1,000 to $30,000. What is the expected annual loss from user error?

Answer the following short coding question. Do NOT write fun…

Answer the following short coding question. Do NOT write functions and do NOT hardcode.  Given a text file called darkKnight.txt, output the number of words in the file multiplied by the number of lines. Store the answer in a variable called count.     Example:   darkKnight.txt: Not the hero we deserved,  but the hero we needed.    >> count =          20    Notes:   darkKnight.txt can be longer than 2 lines so do NOT hardcode.  Characters separated by spaces should be counted as words.  You may ignore other punctuations besides spaces.    Answer this question by typing your code in the space provided below.