Which of the following is not a responsibility of the database management system?
A. provide an interface between the users and the physical database
B. provide security against a natural disaster
C. ensure that the internal schema and external schema are consistent
D. authorize access to portions of the database
Answer: C
You might also like to view...
The following command can be used to perform the given task.
What will be an ideal response?
PowerPoint can animate up to ________ outline levels
Fill in the blank(s) with correct word
If grade is an array, trying to store its address using the expression &grade results in a ____.
A. program crash B. normal execution C. compiler error D. scaling error
Which of the following is an example of a single-outcome selection?
A. If testScore >= 60 Then Display "That is a passing grade." Else Display "That is a failing grade." End If B. If hoursWorked > 40 Then overtimeHours = hoursWorked - 40 overtimePay = overtimeHours * wageRate * 1.5 regularPay = 40 * wageRate grossPay = regularPay + overtimePay Else grossPay = hoursWorked * wageRate End If C. If age >= 65 Then discountRate = 0.10 End If D. Method deposit(Numeric amt) acctBal = acctBal + amt Display "The new balance is: $" + acctBal End Method