Podcast
Questions and Answers
In MS Access, is it possible to create a query based on an existing query?
In MS Access, is it possible to create a query based on an existing query?
- True (correct)
- False
If referential integrity with 'restrict deletion' is enforced between STUDENTS
and REGISTER
tables, and a record exists in REGISTER
referencing a student, can that student's record be deleted from STUDENTS
?
If referential integrity with 'restrict deletion' is enforced between STUDENTS
and REGISTER
tables, and a record exists in REGISTER
referencing a student, can that student's record be deleted from STUDENTS
?
- True
- False (correct)
What type of relationship typically exists between PRODUCTS
and CUSTOMERS
in a real-world database?
What type of relationship typically exists between PRODUCTS
and CUSTOMERS
in a real-world database?
- N:1
- 1:1
- 1:N
- N:M (correct)
Given SALES
and EMPLOYEES
tables, what type of query would you use to output the total sales for each employee?
Given SALES
and EMPLOYEES
tables, what type of query would you use to output the total sales for each employee?
If 'Cascade Update Related Fields' is enabled between STUDENTS
and REGISTER
, what happens if you update a StudId
in STUDENTS
from 1 to 5?
If 'Cascade Update Related Fields' is enabled between STUDENTS
and REGISTER
, what happens if you update a StudId
in STUDENTS
from 1 to 5?
In Access, what does the Record Source property of a form define?
In Access, what does the Record Source property of a form define?
Which of the following represents the correct layers of database architecture?
Which of the following represents the correct layers of database architecture?
Tables US_Banks
(B1, B2, B3, B4) and EU_Banks
(B1, B4, B5) list banks operating in the US and Europe. Which relational operator yields a distinct list of all banks (B1, B2, B3, B4, B5)?
Tables US_Banks
(B1, B2, B3, B4) and EU_Banks
(B1, B4, B5) list banks operating in the US and Europe. Which relational operator yields a distinct list of all banks (B1, B2, B3, B4, B5)?
Which database object is best described as 'a list of commands or options that a user can choose from during interactive work on a screen'?
Which database object is best described as 'a list of commands or options that a user can choose from during interactive work on a screen'?
In a 'Students' table, which property is most appropriate to set if a new record should not be saved unless the student's name is entered?
In a 'Students' table, which property is most appropriate to set if a new record should not be saved unless the student's name is entered?
In a 'User Profile' table, if you want to ensure a telephone number field contains the country code, area code, and personal number in a specific format, which field property should you configure?
In a 'User Profile' table, if you want to ensure a telephone number field contains the country code, area code, and personal number in a specific format, which field property should you configure?
If a 'restrict for insert' rule is in place to maintain referential integrity between the 'STUDENTS' and 'REGISTER' tables, can a new record with 'StudId = 5' be inserted into 'REGISTER' if no student with 'StudId = 5' exists in 'STUDENTS'?
If a 'restrict for insert' rule is in place to maintain referential integrity between the 'STUDENTS' and 'REGISTER' tables, can a new record with 'StudId = 5' be inserted into 'REGISTER' if no student with 'StudId = 5' exists in 'STUDENTS'?
Given a relationship between 'STUDENTS' and 'REGISTER', where 'REGISTER' likely contains records of student registrations, which table is typically the parent table?
Given a relationship between 'STUDENTS' and 'REGISTER', where 'REGISTER' likely contains records of student registrations, which table is typically the parent table?
What does the query SELECT Discipline, AVG(Mark) FROM Results GROUP BY Discipline;
represent?
What does the query SELECT Discipline, AVG(Mark) FROM Results GROUP BY Discipline;
represent?
Which statement best describes the function of an index in a database?
Which statement best describes the function of an index in a database?
What type of relationship is most likely to exist between 'REGISTER' and 'STUDENTS' tables, where one student can register for multiple courses?
What type of relationship is most likely to exist between 'REGISTER' and 'STUDENTS' tables, where one student can register for multiple courses?
What is the primary purpose of configuring a field in a database to require unique values?
What is the primary purpose of configuring a field in a database to require unique values?
Which of the following is NOT a characteristic of candidate keys in a relational database?
Which of the following is NOT a characteristic of candidate keys in a relational database?
In MS Access, if 'Cascade Update Related Fields' is enabled between the STUDENTS and REGISTER tables, what happens when you update the StudId from 1 to 5 in the STUDENTS table?
In MS Access, if 'Cascade Update Related Fields' is enabled between the STUDENTS and REGISTER tables, what happens when you update the StudId from 1 to 5 in the STUDENTS table?
Given two tables, US_Banks and EU_Banks, both containing a list of bank codes. Which relational operator would you use to find the bank codes that appear in both tables (i.e., banks operating in both the US and Europe)?
Given two tables, US_Banks and EU_Banks, both containing a list of bank codes. Which relational operator would you use to find the bank codes that appear in both tables (i.e., banks operating in both the US and Europe)?
A person must update their account number before depositing money. Which referential integrity property should be set between 'Customers' and 'Deposits' tables in Access to ensure that transactions are only recorded for customers with existing account numbers?
A person must update their account number before depositing money. Which referential integrity property should be set between 'Customers' and 'Deposits' tables in Access to ensure that transactions are only recorded for customers with existing account numbers?
Which of the following clauses is NOT typically considered one of the main clauses in a SELECT
statement?
Which of the following clauses is NOT typically considered one of the main clauses in a SELECT
statement?
A user adding a new record to a table notices a value is automatically filled in for a cell. Which table property causes this?
A user adding a new record to a table notices a value is automatically filled in for a cell. Which table property causes this?
Given a STUDENTS
table with fields like StudId
, Birth_Date
, First_Name
, and Last_Name
, which of the following is the most suitable primary key?
Given a STUDENTS
table with fields like StudId
, Birth_Date
, First_Name
, and Last_Name
, which of the following is the most suitable primary key?
Which of the following best describes a DBMS (Database Management System)?
Which of the following best describes a DBMS (Database Management System)?
What is the most appropriate field type to store phone numbers in a database?
What is the most appropriate field type to store phone numbers in a database?
To calculate monthly salary subtotals for each department in an Employees
table (containing employee contact data, wages, and department), which query operation is most suitable?
To calculate monthly salary subtotals for each department in an Employees
table (containing employee contact data, wages, and department), which query operation is most suitable?
A report is based on a Products
table containing 7 records. If a label control is placed in the Detail area of the Report Design, how many times will the label's content be displayed in Report View?
A report is based on a Products
table containing 7 records. If a label control is placed in the Detail area of the Report Design, how many times will the label's content be displayed in Report View?
Assuming 'Cascade Update Related Fields' is enabled between STUDENTS
and REGISTER
tables, can you update a StudId
from 3 to 5 in the STUDENTS
table?
Assuming 'Cascade Update Related Fields' is enabled between STUDENTS
and REGISTER
tables, can you update a StudId
from 3 to 5 in the STUDENTS
table?
Why is it advantageous for a database to implement a primary key within a table?
Why is it advantageous for a database to implement a primary key within a table?
Which SQL clause is used to filter records based on a specified condition?
Which SQL clause is used to filter records based on a specified condition?
A database has a RESTRICT
referential integrity constraint between the STUDENTS
and REGISTER
tables. If deletion is restricted, can record #2 be deleted from STUDENTS
?
A database has a RESTRICT
referential integrity constraint between the STUDENTS
and REGISTER
tables. If deletion is restricted, can record #2 be deleted from STUDENTS
?
Which of the following best describes the query that retrieves students with marks higher than 8 in disciplines whose names start with the letter 'M'?
Which of the following best describes the query that retrieves students with marks higher than 8 in disciplines whose names start with the letter 'M'?
Is it possible to combine the results of two or more SELECT
statements into a single result set?
Is it possible to combine the results of two or more SELECT
statements into a single result set?
A database has a RESTRICT
referential integrity constraint between STUDENTS
and REGISTER
during insertion. Can a record with StudId = 5
be inserted into STUDENTS
if it violates the constraint?
A database has a RESTRICT
referential integrity constraint between STUDENTS
and REGISTER
during insertion. Can a record with StudId = 5
be inserted into STUDENTS
if it violates the constraint?
Is it possible to create an Access table outside an Access database (.accdb or .mdb file)?
Is it possible to create an Access table outside an Access database (.accdb or .mdb file)?
Which of the following does a query that groups exam records by student and counts the number of exams in each group represent?
Which of the following does a query that groups exam records by student and counts the number of exams in each group represent?
To display the Invoice Date in a Purchase Invoices table as a medium date (e.g., dd-mmm-yyyy), which property should be set in the table design?
To display the Invoice Date in a Purchase Invoices table as a medium date (e.g., dd-mmm-yyyy), which property should be set in the table design?
If a database enforces a RESTRICT
rule for referential integrity between the STUDENTS
and REGISTER
tables, what will happen if you attempt to insert a record into REGISTER
with a StudId
of 5, and there is no corresponding StudId
in the STUDENTS
table?
If a database enforces a RESTRICT
rule for referential integrity between the STUDENTS
and REGISTER
tables, what will happen if you attempt to insert a record into REGISTER
with a StudId
of 5, and there is no corresponding StudId
in the STUDENTS
table?
Consider a REGISTER
table with fields StudId
, Discipline
, Ex_Date
, and Mark
. Which of the following options is the most appropriate choice for a primary key or candidate key for the REGISTER
table, assuming StudId
is a foreign key referencing the STUDENTS
table?
Consider a REGISTER
table with fields StudId
, Discipline
, Ex_Date
, and Mark
. Which of the following options is the most appropriate choice for a primary key or candidate key for the REGISTER
table, assuming StudId
is a foreign key referencing the STUDENTS
table?
What is the primary function of a primary key in a database table?
What is the primary function of a primary key in a database table?
In database architecture, what does the external data level represent?
In database architecture, what does the external data level represent?
Assuming a RESTRICT
rule is established to maintain referential integrity between STUDENTS
and REGISTER
, can you insert a record into REGISTER
with a StudId
of 5 if there's no corresponding record in STUDENTS
?
Assuming a RESTRICT
rule is established to maintain referential integrity between STUDENTS
and REGISTER
, can you insert a record into REGISTER
with a StudId
of 5 if there's no corresponding record in STUDENTS
?
Consider a scenario where a customer (stored in the Customers
table) can deposit money into a bank, and these transactions are recorded in the Deposits
table. The business rule states that a customer can only make a deposit if they have previously updated their account number. Which referential integrity option(s) are most important to set in a database management system like Access to enforce this rule?
Consider a scenario where a customer (stored in the Customers
table) can deposit money into a bank, and these transactions are recorded in the Deposits
table. The business rule states that a customer can only make a deposit if they have previously updated their account number. Which referential integrity option(s) are most important to set in a database management system like Access to enforce this rule?
How does enabling 'Enforce Referential Integrity' in a database management system primarily contribute to data quality?
How does enabling 'Enforce Referential Integrity' in a database management system primarily contribute to data quality?
Which is most accurate regarding cascade update?
Which is most accurate regarding cascade update?
Flashcards
Record Source Property (Access)
Record Source Property (Access)
Specifies the table, query, or SQL statement that provides the data for a form.
Menu
Menu
A list of commands or options presented to the user for interactive selection on a screen.
"Required" Property (Database)
"Required" Property (Database)
A property that enforces a field to have a value before a record can be saved.
Restrict for insert
Restrict for insert
Signup and view all the flashcards
Parent Table
Parent Table
Signup and view all the flashcards
Index (Database)
Index (Database)
Signup and view all the flashcards
One-to-Many Relationship
One-to-Many Relationship
Signup and view all the flashcards
Primary Key
Primary Key
Signup and view all the flashcards
Query based on a query?
Query based on a query?
Signup and view all the flashcards
Restricted deletion effect?
Restricted deletion effect?
Signup and view all the flashcards
Products and Customers relationship?
Products and Customers relationship?
Signup and view all the flashcards
Total sales query type?
Total sales query type?
Signup and view all the flashcards
Cascade Update effect?
Cascade Update effect?
Signup and view all the flashcards
Database architecture layers?
Database architecture layers?
Signup and view all the flashcards
Combining bank lists?
Combining bank lists?
Signup and view all the flashcards
Telephone number format suggestion?
Telephone number format suggestion?
Signup and view all the flashcards
Data Field Requirement
Data Field Requirement
Signup and view all the flashcards
Candidate Key Characteristics
Candidate Key Characteristics
Signup and view all the flashcards
Intersect Operator
Intersect Operator
Signup and view all the flashcards
US and EU Banks
US and EU Banks
Signup and view all the flashcards
Referential integrity property
Referential integrity property
Signup and view all the flashcards
Referential Integrity & Account Updates
Referential Integrity & Account Updates
Signup and view all the flashcards
Default Value
Default Value
Signup and view all the flashcards
Primary/Candidate Key
Primary/Candidate Key
Signup and view all the flashcards
DBMS (Database Management System)
DBMS (Database Management System)
Signup and view all the flashcards
Field Type for Phone Numbers
Field Type for Phone Numbers
Signup and view all the flashcards
Calculating Subtotals by Department
Calculating Subtotals by Department
Signup and view all the flashcards
Label Control in Detail Area
Label Control in Detail Area
Signup and view all the flashcards
Left Join Records Retrieved
Left Join Records Retrieved
Signup and view all the flashcards
Cascade Update Related Fields
Cascade Update Related Fields
Signup and view all the flashcards
HAVING clause
HAVING clause
Signup and view all the flashcards
Restrict Deletion Rule
Restrict Deletion Rule
Signup and view all the flashcards
Query Result
Query Result
Signup and view all the flashcards
Format Property
Format Property
Signup and view all the flashcards
Cardinality
Cardinality
Signup and view all the flashcards
Grouping Criterion
Grouping Criterion
Signup and view all the flashcards
Aggregate Placement
Aggregate Placement
Signup and view all the flashcards
Updating primary key
Updating primary key
Signup and view all the flashcards
Restrict action
Restrict action
Signup and view all the flashcards
Candidate Key
Candidate Key
Signup and view all the flashcards
Primary/Candidate key from REGISTER table
Primary/Candidate key from REGISTER table
Signup and view all the flashcards
Referential Integrity
Referential Integrity
Signup and view all the flashcards
External Data Level
External Data Level
Signup and view all the flashcards
Insert with Restrict Rule?
Insert with Restrict Rule?
Signup and view all the flashcards
Mandatory Referential Integrity Options
Mandatory Referential Integrity Options
Signup and view all the flashcards
Study Notes
-
A query may be created from an existing query in MS Access.
-
With restrict deletion established between STUDENTS and REGISTER, record #2 cannot be deleted from REGISTER to preserve referential integrity.
-
In the real world, the relationship between PRODUCTS and CUSTOMERS is N:M (many-to-many).
-
To output total sales for each person, use "Union + Select" queries with the sales2005 and sales2006 tables.
-
If "Cascade Update Related Fields" is set between STUDENTS and REGISTER, updating StudId from 1 to 5 in STUDENTS automatically updates records #1, #3, and #4 in REGISTER to 5 for StudId.
-
The database architecture has external, conceptual, and internal levels.
-
To obtain a unique list of banks operating in the US and Europe from US_Banks and EU_Banks tables, use the "Union" operator. These tables have the same structure.
-
In a "User Profile" table, set the "Input mask" field property to guide users to include country code, area code, and personal number for telephone numbers.
-
Based on the REGISTER & STUDENTS tables shown, a right join outputs 4 records.
-
Objects with the same properties, behaviors, and event responses belong to the same "Class."
-
The "Record Source" property for an Access form indicates the table or query used as the data source.
-
A "Menu" is a list of commands or options a user can choose during interactive work on a screen.
-
In a Students table, set the "Required" property to ensure a new record is not saved if the student's name is missing.
-
Assuming there has been established restrict for insert between STUDENTS and REGISTER tables, a record with StudId=5 cannot be inserted into REGISTER.
-
STUDENTS is the parent table in the relationship between STUDENTS and REGISTER.
Query Representation
-
The provided query represents the average of all marks obtained by each student.
-
An index serves as a map for records and helps to find values according to a search criterion.
-
The relationship between REGISTER and STUDENTS can be one-to-many.
-
Based on the REGISTER & STUDENTS tables, referential integrity is not accomplished because the student with StudId equal to 3 has no related entries in REGISTER.
-
A primary key is the minimal combination of NOT NULL fields ensuring unique record identification.
-
Use the "Indexes" property to order records alphabetically by some fields in a table.
-
The "Default value" property causes a new record to have a value already filled in.
-
Studld is the primary/candidate key in the STUDENTS table example.
-
The DBMS (DataBase Management System) is a software component.
-
Text is the most appropriate field type for storing phone numbers in an Access database.
-
To compute monthly salary subtotals by department, group employees by department and sum up the salaries.
-
If a label control is placed in the Detail area of a report based on a 7-record Products table, the label's content is displayed 7 times in Report View mode.
-
A left join will output 4 records based on the REGISTER & STUDENTS tables.
-
With "Cascade Update Related Fields" established, updating StudId from 3 to 5 in STUDENTS is not possible.
-
A database creates a primary key in a table to force the user to always input some value in that particular field, and only unique values.
-
Consistency is not a characteristic of candidate keys.
-
With “Cascade Update Related Fields," updating StudId from 1 to 5 in STUDENTS updates all records from STUDENTS having StudId=1 will be automatically updated to 5 in REGISTER automatically.
-
To obtain a list of banks operating in both the US and Europe from US_Banks and EU_Banks tables, use an "Inner join."
-
To enforce that a person can only deposit money in a bank if they have updated their account number, set the "Enforce referential integrity" property of the relationship between the Customers and Deposits tables.
-
FILTER BY, is not a main clause in a SELECT statement.
-
Assuming restrict deletion is established, record #2 cannot be deleted from Students.
-
The query represents STUDENTS which got marks higher than 8 to those disciplines which are starting with letter "M".
-
Yes, it is possible to run a Union query.
-
Assuming restrict for insert has been established, we cannot insert a record in STUDENTS having StudId=5 if there is no equivalent record in REGISTER.
-
This query represents the number of exams given by each student.
-
To display the Invoice Date as a medium date (dd-mmm-yyyy), set the "Format" property.
-
Cardinality is the number of tuples in a relation.
-
Gender is the more suitable selection for an english line table because it eliminates some of the same numbers, and would provide general reporting to be made on this field.
-
Put the average purchase price for all purchases in a report header or footer.
-
If "Cascade Update Related Fields" is established between STUDENTS and REGISTER, nothing happens when the students table is updated from studld 3 to 5.
-
Studld, Discipline is the primay/candidate key in the REGISTER table.
-
A primary key is one or a group of fields (attributes) from a table.
Data Level
- The external data level from database architecture represents the user's view.
- Assuming restrict for insert is established, a record with StudId=5 cannot be inserted into REGISTER.
- To enforce that a person (Customers table) can deposit money in a bank only if they have updated their account number, set the Enforce referential integrity property of the relationship between Customers and Deposits.
Studying That Suits You
Use AI to generate personalized quizzes and flashcards to suit your learning preferences.