an application that distributes messages to subscribers on an electronic mailing list.
Answer:
Console
Explanation:
Not sure exactly what scratch 2.0 is but the console is a separate window that shows the script's outputs and in some cases collect inputs, show error messages or display other info depending on what compiler you used
Answer:
DATA MANAGEMENT SYSTEM
Explanation:
Data management system is a program for storing and retrieving users data thereby allowing the users to create their own database.
The database management system also interacts with end users, applications, and the database itself to capture and analyze the data and also provide an interface between the database and its users and other application programs.
Answer:
I don't know
Explanation:
is about knowing how to make use of the refinery
def cookie_Recipe(recipe):
sugar=(0.03125*recipe)
butter=(0.02083333333*recipe)
flour=(0.05729166666*recipe)
LF1=round(sugar, 2)
LF2=round(butter,2)
LF3=round(flour, 2)
print("You will need:")
print(LF1, "cups of sugar")
print(LF2, "cups of butter")
print(LF3, "cups of flour")
print("To make", recipe, 'cookies')
recipe=int(input("How many cookies do you want to make?\n"))
cookie_Recipe(recipe)