Complete the sentence to explain a key advantage of DBMS.
DBMS provides [1] which means applications do not need to change when the database structure changes.
Data independence means that changes in the database structure do not affect the application programs. This is a major advantage of DBMS.
Complete the sentence to describe a security feature of DBMS.
DBMS ensures [1] by controlling who can access or modify the data.
Security in DBMS means protecting data from unauthorized access and ensuring only allowed users can view or change data.
Fix the error in the sentence about DBMS concurrency.
DBMS allows multiple users to access the database at the same time without [1].Concurrency means multiple users can work with the database simultaneously without causing conflicts or errors.
Fill both blanks to complete the explanation of DBMS advantages.
DBMS provides [1] to protect data and [2] so many users can work together safely.
DBMS offers security to protect data and concurrency to allow multiple users to access data safely at the same time.
Fill both blanks to complete the dictionary comprehension about DBMS advantages.
advantages = {: {BLANK_2}} for {{BLANK_2}} in ['data independence', 'security', 'concurrency']advantage.upper() when not needed.This creates a dictionary where each advantage is a key and its name as the value. The syntax starts with a curly brace {, uses the variable advantage as key and value.