Q.1.
If a transaction does not modify the database until it has committed it is said to use a _______ modification technique
Q.2.
The dependency rules specified by the database designer are known as _______
Q.3.
During the _______ phase, the local variables that hold the write operations are copied to the database
Q.4.
What is the format of entering date into a database while inserting data into it?
Q.5.
What does the following query do? UPDATE student SET marks = marks*1.10;
Q.6.
Which of the following cannot be used to modify the data in a database?
Q.7.
Observe the given SQL query and choose the correct option. SELECT database_name, RDBMS (DISTINCT bankuser_name) FROM depositor, account WHERE depositor.account_number = account.account_number GROUP BY branch_id
Q.8.
for each tuple tr in r do begin FOR each tuple ts IN s do BEGIN test pair (tr , ts ) TO see IF they satisfy the JOIN condition _ IF they do, ADD tr • ts TO the RESULT; END END
Q.9.
Choose the correct option regarding the query SELECT branch_name, COUNT (DISTINCT customer_name) FROM depositor, account WHERE depositor.account_number = account.account_number GROUP BY branch_id HAVING avg(balance) = 10000;