Answer:
They can be used to store homework, presentations, research, papers, essays and etc. They can be used to hand out homework assignments, course information or notes
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:
You use an append query when you need to add new records to an existing table by using data from other sources. If you need to change data in an existing set of records, such as updating the value of a field, you can use an update query.
Answer:
day = input("Enter today's day numerically: ")
if "15" in day or "30" in day:
print("It's payday!")
else:
print("Sorry, not a payday.")
Explanation:
Ask the user what day it is and store it in a variable called, day. Write a simple if else statement to check if ut is payday or not. This program can be more advanced by having payday be a variable.