Untitled

Choose a study mode

Play Quiz
Study Flashcards
Spaced Repetition
Chat to Lesson

Podcast

Play an AI-generated podcast conversation about this lesson
Download our mobile app to listen on the go
Get App

Questions and Answers

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?

  • True
  • False (correct)

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?

<p>Left join + Select (C)</p> Signup and view all the answers

If 'Cascade Update Related Fields' is enabled between STUDENTS and REGISTER, what happens if you update a StudId in STUDENTS from 1 to 5?

<p>Records in <code>REGISTER</code> with <code>StudId</code> 1 are automatically updated to 5. (B)</p> Signup and view all the answers

In Access, what does the Record Source property of a form define?

<p>The table or query serving as the data source for the form. (C)</p> Signup and view all the answers

Which of the following represents the correct layers of database architecture?

<p>External, conceptual and internal levels (A)</p> Signup and view all the answers

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)?

<p>Union (C)</p> Signup and view all the answers

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'?

<p>Menu (C)</p> Signup and view all the answers

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?

<p>Required (C)</p> Signup and view all the answers

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?

<p>Input mask (D)</p> Signup and view all the answers

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'?

<p>False (B)</p> Signup and view all the answers

Given a relationship between 'STUDENTS' and 'REGISTER', where 'REGISTER' likely contains records of student registrations, which table is typically the parent table?

<p>STUDENTS (B)</p> Signup and view all the answers

What does the query SELECT Discipline, AVG(Mark) FROM Results GROUP BY Discipline; represent?

<p>The average of all marks obtained by a discipline. (A)</p> Signup and view all the answers

Which statement best describes the function of an index in a database?

<p>An index is a map for locating records based on a search criterion. (A)</p> Signup and view all the answers

What type of relationship is most likely to exist between 'REGISTER' and 'STUDENTS' tables, where one student can register for multiple courses?

<p>One to many (C)</p> Signup and view all the answers

What is the primary purpose of configuring a field in a database to require unique values?

<p>To force the user to always input some value in that particular field, and only unique values. (C)</p> Signup and view all the answers

Which of the following is NOT a characteristic of candidate keys in a relational database?

<p>Consistency (A)</p> Signup and view all the answers

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?

<p>All records from REGISTER having StudId=1 will be automatically updated to 5. (B)</p> Signup and view all the answers

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)?

<p>Intersect (C)</p> Signup and view all the answers

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?

<p>Set the Enforce referential integrity property of the relationship between Customers and Deposits. (C)</p> Signup and view all the answers

Which of the following clauses is NOT typically considered one of the main clauses in a SELECT statement?

<p>UPDATE (C)</p> Signup and view all the answers

A user adding a new record to a table notices a value is automatically filled in for a cell. Which table property causes this?

<p>Default value (D)</p> Signup and view all the answers

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?

<p><code>StudId</code> (D)</p> Signup and view all the answers

Which of the following best describes a DBMS (Database Management System)?

<p>A software component (B)</p> Signup and view all the answers

What is the most appropriate field type to store phone numbers in a database?

<p>Text (A)</p> Signup and view all the answers

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?

<p>Group employees by department and sum the salaries. (D)</p> Signup and view all the answers

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?

<p>Seven times. (B)</p> Signup and view all the answers

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?

<p>True (B)</p> Signup and view all the answers

Why is it advantageous for a database to implement a primary key within a table?

<p>To enforce data integrity by uniquely identifying each record. (B)</p> Signup and view all the answers

Which SQL clause is used to filter records based on a specified condition?

<p><code>WHERE</code> (B)</p> Signup and view all the answers

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?

<p>False, deletion is prevented due to the referential integrity constraint. (D)</p> Signup and view all the answers

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'?

<p>The query returns students with marks higher than 8 in disciplines whose names begin with the letter 'M'. (B)</p> Signup and view all the answers

Is it possible to combine the results of two or more SELECT statements into a single result set?

<p>Yes, using the <code>UNION</code> query. (D)</p> Signup and view all the answers

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?

<p>False, the insertion will be prevented to maintain referential integrity. (A)</p> Signup and view all the answers

Is it possible to create an Access table outside an Access database (.accdb or .mdb file)?

<p>False, Access tables must be contained within an Access database. (C)</p> Signup and view all the answers

Which of the following does a query that groups exam records by student and counts the number of exams in each group represent?

<p>The number of exams given by each student. (B)</p> Signup and view all the answers

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?

<p>Format (D)</p> Signup and view all the answers

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?

<p>The record insertion into <code>REGISTER</code> will fail due to the referential integrity constraint. (B)</p> Signup and view all the answers

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?

<p><code>StudId</code>, <code>Ex_Date</code> (A)</p> Signup and view all the answers

What is the primary function of a primary key in a database table?

<p>To uniquely identify each record in the table. (B)</p> Signup and view all the answers

In database architecture, what does the external data level represent?

<p>The user's view of the database. (A)</p> Signup and view all the answers

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?

<p>False (B)</p> Signup and view all the answers

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?

<p>Set both the 'Enforce referential integrity' and 'Cascade Update' properties. (D)</p> Signup and view all the answers

How does enabling 'Enforce Referential Integrity' in a database management system primarily contribute to data quality?

<p>By preventing the creation of orphaned records and ensuring relationships between tables remain consistent. (B)</p> Signup and view all the answers

Which is most accurate regarding cascade update?

<p>Automatically updates related records in other tables when a primary key is modified. (D)</p> Signup and view all the answers

Flashcards

Record Source Property (Access)

Specifies the table, query, or SQL statement that provides the data for a form.

Menu

A list of commands or options presented to the user for interactive selection on a screen.

"Required" Property (Database)

A property that enforces a field to have a value before a record can be saved.

Restrict for insert

Prevents the insertion of a record in a child table if the corresponding record does not exist in the parent table.

Signup and view all the flashcards

Parent Table

The table containing the primary key that is referenced by other tables.

Signup and view all the flashcards

Index (Database)

Provides a mapping for records based on a search criterion, improving search speed.

Signup and view all the flashcards

One-to-Many Relationship

A relationship where one record in a table can relate to many records in another table.

Signup and view all the flashcards

Primary Key

The minimal set of fields that uniquely identifies each record in a table.

Signup and view all the flashcards

Query based on a query?

A query based on an existing query.

Signup and view all the flashcards

Restricted deletion effect?

Deletion is prevented to maintain referential integrity.

Signup and view all the flashcards

Products and Customers relationship?

Many-to-many (N:M).

Signup and view all the flashcards

Total sales query type?

Left join + Select.

Signup and view all the flashcards

Cascade Update effect?

Records in REGISTER with matching StudId are updated to 5.

Signup and view all the flashcards

Database architecture layers?

External, conceptual, and internal levels.

Signup and view all the flashcards

Combining bank lists?

Union.

Signup and view all the flashcards

Telephone number format suggestion?

Input mask.

Signup and view all the flashcards

Data Field Requirement

To force the user to input a value in a particular field, and only unique values.

Signup and view all the flashcards

Candidate Key Characteristics

A candidate key must uniquely identify each record in a table, cannot contain NULL values and should be irreduceable.

Signup and view all the flashcards

Intersect Operator

The INTERSECT operator returns the common rows between two tables.

Signup and view all the flashcards

US and EU Banks

To obtain the list of banks from US, operating in Europe, the Intersect operator is the tool for the job.

Signup and view all the flashcards

Referential integrity property

Set both the Enforce referential integrity and the Cascade Update properties of the relationship between Customers and Deposits.

Signup and view all the flashcards

Referential Integrity & Account Updates

Setting 'Enforce referential integrity' and 'Cascade Update' ensures that relationship consistency is maintained when the account number is updated.

Signup and view all the flashcards

Default Value

A property that automatically fills in a cell with a pre-defined value when a new record is added.

Signup and view all the flashcards

Primary/Candidate Key

A column or a set of columns that uniquely identifies each record in a table.

Signup and view all the flashcards

DBMS (Database Management System)

Software that manages database operations, including data storage, retrieval, and security.

Signup and view all the flashcards

Field Type for Phone Numbers

Text field type is best because phone numbers are treated as text (not calculation).

Signup and view all the flashcards

Calculating Subtotals by Department

Grouping employees by department and summing their salaries allows calculation of monthly department salary subtotals.

Signup and view all the flashcards

Label Control in Detail Area

In Report View mode the content of the label will be displayed for each of the 7 records.

Signup and view all the flashcards

Left Join Records Retrieved

This refers to one of the tables having all of it's record displayed.

Signup and view all the flashcards

Cascade Update Related Fields

This refers to the referential integrity between table STUDENTS and REGISTER being upheld

Signup and view all the flashcards

HAVING clause

Specifies conditions for filtering rows after grouping.

Signup and view all the flashcards

Restrict Deletion Rule

False. If a 'restrict deletion' rule is in place, deleting record #2 may violate referential integrity if there are related records in the REGISTER table.

Signup and view all the flashcards

Query Result

Represents the marks obtained by each student.

Signup and view all the flashcards

Format Property

Medium Date Format

Signup and view all the flashcards

Cardinality

The number of tuples (rows) in a relation (table).

Signup and view all the flashcards

Grouping Criterion

Gender is most suitable because it is likely to have only two values, creating meaningful groups.

Signup and view all the flashcards

Aggregate Placement

Report header or report footer.

Signup and view all the flashcards

Updating primary key

Cascade Update Related Fields

Signup and view all the flashcards

Restrict action

Action is not permitted due to referential integrity constraints.

Signup and view all the flashcards

Candidate Key

One or more fields that could serve as the primary key.

Signup and view all the flashcards

Primary/Candidate key from REGISTER table

One or more fields that uniquely identify a record and relate to another table.

Signup and view all the flashcards

Referential Integrity

A rule ensuring relationships between tables remain consistent.

Signup and view all the flashcards

External Data Level

The database user's perspective.

Signup and view all the flashcards

Insert with Restrict Rule?

No, the insert would violate referential integrity.

Signup and view all the flashcards

Mandatory Referential Integrity Options

Enforce referential integrity and cascade update properties.

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.

Quiz Team

Related Documents

Database Questions PDF

More Like This

Untitled
110 questions

Untitled

ComfortingAquamarine avatar
ComfortingAquamarine
Untitled
44 questions

Untitled

ExaltingAndradite avatar
ExaltingAndradite
Untitled
48 questions

Untitled

HilariousElegy8069 avatar
HilariousElegy8069
Untitled
121 questions

Untitled

NicerLongBeach3605 avatar
NicerLongBeach3605
Use Quizgecko on...
Browser
Browser