The Network layer (1) directs date from one LAN to another.
Explanation:
a. The computation of the economic order quantity is shown below:


= 1,580 units
The carrying cost is
= $50 × 10%
= $5
b. The number of orders would be equal to
= Annual demand ÷ economic order quantity
= 15,600 ÷ 1,580
= 9.87 orders
Ordering cost = Number of orders × setup cost per order
= 9.87 orders × $400
= $3,949.37
c. The average inventory would equal to
= Economic order quantity ÷ 2
= 1,580 units ÷ 2
= 790 units
Carrying cost = average inventory × carrying cost per unit
= 790 units × $5
= $3,950
c. Now the total cost
= Setup cost + carrying cost
= $3,949.37 + $3,950
= $7,899.37
Answer:
Computer modeling.
Explanation:
Computational modeling is characterized by the use of computers to represent a real world situation, that is, it is the use of mathematical models to assist in solving problems in multidisciplinary areas essential for the development of science and technology. Through computational modeling it is possible to adjust several study variables and achieve greater probabilities of reaching an effective result more quickly and at a lower cost.
Through this system it is possible to solve complex problems such as scientific research, product development, analysis and predictions about certain phenomena, development of technology applied to health, etc.
i = 0
while True:
user_input = input("Please enter the next word: ")
if user_input == "STOP":
break
i += 1
print("#{}: You entered {}".format(i,user_input))
print("All done. {} words entered.".format(i))
First we set i equal to zero so that we can keep track of how many words we input.
We set while True so that its a continuous loop until a certain condition is met to break out of the loop.
user_input is set equal to whatever word the user enters.
our if statement tells us to break out of the while loop if the user inputs "STOP"
If the user does not enter STOP i is set equal to itself plus 1. This just means we add one to i for every new word entered.
Then we print whichever word is entered.
After the while loop, we print All done and the quantity of words entered.