Answer:
blep blep blep belp belp belp belp belp belp BELPPPPPPPPPP
\bold{Answer:}
Instructions written in code that a computer follows are called software programs.
Algorithm is part of computer science. You an learn it on Khan academy. (you probably werent looking for this but no one was answering)
Answer:
The correct answer to the following question will be "Magnetic medium".
Explanation:
Some storage device that portrays details or information using magnetic patterns is called a magnetic device.
- Magnetic tape, and hard drives are the commonly used magnetic storage devices.
- This will be the method by which magnetic methods are used to hold and retrieve information on tapes.
So, it's the right answer.
Answer:
customers = int(input("How many customers? "))
for i in range(customers):
name = input("Name of Customer " + str(i+1) + " ")
print("Oranges are $1.40 each.")
oranges = int(input("How many Oranges? "))
print("Apples are $.75 each.")
apples = int(input("How many Apples? "))
bill = oranges * 1.4 + apples * 0.75
print(name + ", you bought " + str(oranges) + " Orange(s) and " + str(apples) + " Apple(s). Your bill is $%.1f" % bill)
Explanation:
*The code is in Python.
Ask the user to enter the number of customers
Create a for loop that iterates for each customer. Inside the loop, ask the user to enter the name, number of oranges, number of apples. Calculate the bill. Print the name, number of oranges, number of apples bought and total bill