You have multiple manufacturing computers that control the machinery to several assembly lines. The software for the assembly line controls rarely changes. The assembly lines cannot go down because of problem Windows updates or new features.

Q. What do you recommend?

Answers

Answer 1

Since the assembly lines cannot go down because of problem Windows updates or new features, I would recommend that the automatic update of Windows should be turned OFF or limited to essential updates only.

What is an operating system?

An operating system (OS) is a system software that's usually pre-installed on a computing device by the manufacturers, so as to manage random access memory (RAM), software programs, computer hardware and all user processes.

In Computer technology, some examples of an operating system used on various computers include the following:

OpenVMSMacOSQNX OSLinux OSIBMSolarisVirtual Machine (VM)Microsoft Windows OS

Generally speaking, we know that the software used on manufacturing computers in the assembly line controls rarely changes and as such to prevent the assembly lines from going down due to issues associated with Windows updates or new features, I would recommend that automatic update and new features of Windows should be disabled, turned OFF or limited to essential updates only.

Additionally, Windows 10 Enterprise Long-Term Servicing Branch (LTSB) can also be installed to solve this problem.

Read more on Windows updates here: https://brainly.com/question/15329847

#SPJ1


Related Questions

Hello, I desprately need help in python with this question. I have tried everything:This is the question:



4.19 LAB: Driving costs - functions

Driving is expensive. Write a program with a car's miles/gallon and gas dollars/gallon (both floats) as input, and output the gas cost for 10 miles, 50 miles, and 400 miles.

Output each floating-point value with two digits after the decimal point, which can be achieved as follows:
print('{:.2f}'.format(your_value))

Ex: If the input is:

20.0
3.1599
the output is:

1.58
7.90
63.20
Your program must define and call the following driving_cost() function. Given input parameters driven_miles, miles_per_gallon, and dollars_per_gallon, the function returns the dollar cost to drive those miles.

Ex: If the function is called with:

50 20.0 3.1599


This is my code:

miles_per_gallon = float(input('miles_per_gallon: '))
dollars_per_gallon = float(input('dollars_per_gallon: '))
dollars_per_mile = dollars_per_gallon/miles_per_gallon


your_value1 = 10 * dollars_per_mile
your_value2 = 50 * dollars_per_mile
your_value3 = 400 * dollars_per_mile

print('{:.2f} {:.2f} {:.2f}'.format(your_value1, your_value2, your_value3))



Can someone tell me what I'm doing incorrectly or show me? Thanks truly.



Lily

Answers

Answer:

Code is below and also attached in text file

Explanation:

Because Python indentation is extremely important and pasting code in the brainly window sometimes messes it up, I have provided code below as well as in the attached text file. If the one below works, well and good. Otherwise use the one in the text file

Let me know if you have questions

def driving_cost(driven_miles, miles_per_gallon, dollars_per_gallon):

   '''

   Equations Used:

   gallons_consumed = driven_miles/miles_per_gallon

   dollar_cost = gallons_consumed x dollars_per_gallon

   '''

   gallons_consumed = driven_miles/miles_per_gallon

   dollar_cost = gallons_consumed * dollars_per_gallon

   return dollar_cost

# Get inputs from the user

miles_per_gallon = float(input('miles_per_gallon: '))

dollars_per_gallon = float(input('dollars_per_gallon: '))

print()

#Compute dollar cost by calling the driving_cost function

for miles_driven in [10, 50, 400]:    #iterate through the list of miles

   cost = driving_cost(miles_driven, miles_per_gallon, dollars_per_gallon) #call function

   print("{:.2f}".format(cost))

   

The reduction of the amount of medication in the body can be modeled by
the equation , where A is the amount at time t, A0 is the amount at
t = 0, and k is the decay constant ( ). The half-life time of a certain
medication is 3.5 h. A person takes 400 mg of the medication at t=0, and
then additional 400 mg every 4 h. Determine the amount of the medication
in a patient’s body 23 h after taking the first dose.
After determining the value of k, define a vector
(the time since taking each dose) and calculate the corresponding values of
A. Then use MATLAB’s built-in function sum to determine the total
amount.

Answers

Answer:

hahahahahhahah

Explanation:

beacause nathonih

The value of the expression X(X+Y) is X
O a. True
b. False

Answers

sorry I didn’t know this was Boolean math

I answered for regular math equations

The code is working fine but I keep getting an EOF error on my 2nd last line.
program:
# option list for user choice
option = ['y', 'yes', 'YES', 'n', 'no', 'NO']
# invalid characters for hawaiian language
invalid_letters = {"b", "c", "d", "f", "g", "j", "q", "r", "s", "t", "v", "x", "y", "z"}
# dictionary for pronunciation of the letters of word
dictionary = {
'a' : 'ah',
'e' : 'eh',
'i' : 'ee',
'o' : 'oh',
'u' : 'oo',
'ai' : 'eye',
'ae' : 'eye',
'ao' : 'ow',
'au' : 'ow',
'ei' : 'ay',
'eu' : 'eh-oo',
'iu' : 'ew',
'oi' : 'oy',
'ou' : 'ow',
'ui' : 'ooey',
'p' : 'p',
'k' : 'k',
'h' : 'h',
'l' : 'l',
'm' : 'm',
'n' : 'n',
'w' : ['v', 'w']
}
# loop for user input
while option not in ['n', 'no']:
Alolan_word = input("Enter a hawaiian word: ").lower()
word = ' ' + Alolan_word + ' '
pronunciation = ''
skip = False

# loop for traversing the word by character wise
# match each character of word with elements of invalid_letters
for letter in Alolan_word:
if letter in invalid_letters:
print("Invalid word, " + letter + " is not a valid hawaiian character.")
break

# loop for scanning the accepted word letter wise
# match each letter of th word with corresponding pronunciation in the dictionary
for index in range(1,len(word)-1):
letter = word[index]

if skip:
skip = False
continue

if letter in {'p','k','h','l','m','n'}:
pronunciation += dictionary[letter]

if letter == 'w':
if word[index-1] in {'i','e'}:
pronunciation += dictionary[letter][0]
else:
pronunciation += dictionary[letter][1]


if letter == 'a':
if word[index+1] in {'i','e'}:
pronunciation += dictionary['ai'] + '-'
skip = True
elif word[index+1] in {'o', 'u'}:
pronunciation += dictionary['ao'] + '-'
skip = True
else:
pronunciation += dictionary[letter] + '-'

if letter == 'e':
if word[index+1] == 'i':
pronunciation += dictionary['ei'] + '-'
skip = True
elif word [index+1] == 'u':
pronunciation += dictionary['eu'] + '-'
skip = True
else:
pronunciation += dictionary[letter] + '-'

if letter == 'i':
if word[index+1] == 'u':
pronunciation += dictionary['iu'] + '-'
skip = True
else:
pronunciation += dictionary[letter] + '-'

if letter == 'o':
if word[index+1] == 'i':
pronunciation += dictionary['oi'] + '-'
skip = True
elif word [index+1] == 'u':
pronunciation += dictionary['ou'] + '-'
skip = True
else:
pronunciation += dictionary[letter] + '-'

if letter == 'u':
if word[index+1] == 'i':
pronunciation += dictionary['ui'] + '-'
skip = True
else:
pronunciation += dictionary[letter] + '-'

if letter in {"'", ' '}:
if pronunciation[-1] == '-':
pronunciation = pronunciation[:-1]
pronunciation += letter

if pronunciation[-1] == '-':
pronunciation = pronunciation[:-1]

# display the pronounciation of accepted word in hawaiian language
print(Alolan_word.upper() + " is pronounced " + pronunciation.capitalize())
option = input("Would you like to enter another word? [y/yes, n/no] ").lower()

print("All done.")

Answers

Answer:

Code is in the attached  .txt file

Explanation:

It must have been an indentation error since I get good results using your code properly formatted. I am not sure what the original problem was so unable to comment further

Other Questions
Explain one historical development or event that can be attributed to the Federalist Papers argument.The powers delegated by the proposed Constitution to the federal government are few and defined. Those which are to remain in the State governments are numerous and indefinite. -Federalist 45 Locate the center of gravity of the composite volume for r = 0.5 m, d=0.04 m, L=4.5 m and = 14 kN/m and =77kN/m. When you sold your shares, your account showed $4680.00 ($72.00 65 shares), for a total gain of $357.50 ($4680.00 $4322.50). What percentage gain did you experience? the essential activity of the operations function is to . a. hire new employees b. add value through transformation processes c. assess demand for products and services d. secure financing for the firm e. advertise new products If you can buy one can of pineapple chunks for $2, then how many can you buy with $10? (WITH A GRAPH PLEASE) The coldest recorded temperature in the United States is 80F, in Alaska. The warmest recorded temperature in the United States is 134F, in California.How much higher is the warmest recorded temperature than the coldest recorded temperature? Question 3: Kylie needs to spend at least 5 hours each week practicing the piano. She has already practiced 2 and 3/4 hours this week. She wants to split the remaining practice time evenly between the last 3 days of the week. Write an inequality to determine the minimum number of hours she needs to practice on each of the 3 days. Under a rotation about the origin, the point A ( 5 , 1 ) is mapped to the point A ' ( 1 , 5 ) . What is the image of the point B ( 4 , 6 ) under this rotation? Explain. Which of the following is most likely the next step in the series Please explain how you build and maintain relationships in a professional capacity, using clear examples of how you currently do this, and outline how you hope to use these skills in the future. What role does the government play in economics?A .It creates and administers anti-trust legislation.B. It regulates businesses and their practices.C.It corrects for market failures.D.All of these statements are true. tudies show students perform better academically and have fewer behavioral problems in a tier 2 (k-8 and 9-12grades) school model versus a 3 tier mode Explain how dissolution occurs using the collision theory to help you explain. HAVE TO AND HAS To interrogative form!!! 1. _____ Peter ___________ feed the dog? 2. _____ Sue and Joan ___________ wear a uniform? 3. _____ I ________ help my mom? 4. ______ you ____________ study for a test? 5. _______ she _________ eat fruit? 6. ______ your mom _________ study for a test? 7. ______you _____________ feed the fish? 8. _______ they _________ take out the trash? 9. _______ Carla ________ wash the dishes? 10. _______ Carla and Mat ________ clean their rooms?please can you help? but faster pleaseee 10. An express train is travelling at 80 km/h. How far does it go in: (a) 1 minute (b) 1 second? Can someone help me solve for Which character from the open window did you most like and identified with? Explain why Correct answer answer now please for brainlist asap Horizontal and parallel lines e and f are intersected by diagonal and parallel lines g and h. At the intersection of lines g and e, the bottom right angle is angle 2. At the intersection of lines h and e, the bottom right angle is angle 1. At the intersection of lines f and h, the top left angle is angle 3. Statements Reasons1. g || h 1. given2. 1 2 2. corresponding angles theorm3. 2 3 3. given4. 1 3 4. transitive property5. e || f 5. ?What is the missing reason in the proof?vertical angles theoremalternate exterior angles theoremconverse corresponding angles theoremconverse alternate interior angles theorem As Rain passes a classroom, they hear the instructor say, "An early school of thought in psychological science that was influenced by Charles Darwin's work was that of . . . ." Which school of thought was the instructor MOST likely describing?Please choose the correct answer from the following choices, and then select the submit answer button.Answer choicesA: functionalismB: structuralistC: humanistD: psychoanalytic