Answer:
A. Database Management System
Explanation:
A Database Management System or DBMS is a set of programs that allow the DB administrator to the information extraction, storage and modification out of a database. It also provides tools to add, erase, modify or even analyze the data within the DB. Some examples of DBMS are MySQL, mongo DB, Ms SQL Server, etc.
Mixed Reality expand on Augmented Reality option d: by enabling real-time interaction between real and virtual objects.
<h3>How does mixed reality expand on augmented reality?</h3>
Mixed reality is known to be one that is made up of both augmented reality and that of augmented virtuality.
Note that Mixed reality is one that acts so as to make an environment with interactive kinds of digital objects. Augmented reality needs a screen to be able to experience the augmented experience. Mixed reality is said to be experienced via the a headset.
Hence, Mixed Reality expand on Augmented Reality option d: by enabling real-time interaction between real and virtual objects.
Learn more about Augmented Reality from
brainly.com/question/9054673
#SPJ1
Answer:
Write your letter
Explanation:
When using a Mail Merge Wizard in a Microsoft Word Document, this is the process.
- Click on your document type
- Click on the starting document
- Select the recipient(s)
- Write your letter and add some custom fields
- Insert your address Block
- Strike enter and click on Greeting line (to enter a greeting)
- Preview your letter and click on complete merge
Answer:
- Print the values days of bottles.
- Display total number of bottles collecting.
- Display the payout for this transaction.
Explanation:
Program:-
DEPOSIT_PER_BOTTLE = 0.10
another = "Y"
while another=="Y":
print("Input Values 7 days of bottles:")
total = 0
for I in range(7):
collected_bottles = int(input())
total += collected_bottles
payout = total*DEPOSIT_PER_BOTTLE
print("Total number of bottles collected: {:,}".format(total))
print("Payout for this transaction $%.2f"%payout)
another = input("Do you want to complete another transaction? ").upper()