Microsoft Access Questions & Answers

Share on
1.

Which of the following is not valid version of Microsoft Office?

A.

Office 2007

B.

Office Vista

C.

Office 2016

D.

Office 365

Correct answer is B

No explanation has been provided for this answer.

2.

Cascade update option in Access

A.

means do not change the value in the primary key field if that record has related records in another table

B.

means change all the related records in child tables if the record in parent table is changed

C.

Both of above

D.

None of above

Correct answer is C

The Cascade update option in the context of database relationships refers to the behavior that occurs when you modify a record in the parent (or primary) table. Both of the provided options are accurate descriptions of the cascade update option:

Option A: When you enable the cascade update option, it means that if you change the value in the primary key field of a record in the parent table, the related records in the child tables will also be updated to reflect the changes in the parent table. This ensures that the relationships between records remain consistent even when the primary key values change.
Option B: Similarly, enabling the cascade update option will change all the related records in child tables when the record in the parent table is changed. This ensures that any changes made to the parent table's primary key values are propagated to the related child records.
Option C: Both of the above options are true. Enabling cascade update means that changes to primary key values are propagated to related records in child tables, and this applies to both the parent and child records.
Option D: Neither option A nor option B is false. Therefore, the correct answer is Option C: Both of above.

In summary, the cascade update option maintains data integrity by ensuring that changes to primary key values in the parent table are reflected in the related records of the child tables.

3.

How can you display the relationships in an Access database?

A.

Select View > Relationship from the menu

B.

Click the Relationship button on the toolbar

C.

Select Edit >Relationship from the menu

D.

All the above are true

Correct answer is D

You can display relationships in a database in Microsoft Access using multiple methods, all of which are mentioned in the options:

Option A: To display relationships, you can select View > Relationships from the menu. This will open the Relationships window where you can view and manage the relationships between tables.
Option B: Clicking the Relationships button on the toolbar also allows you to display relationships. This button typically resembles a set of linked tables and provides a convenient way to access the Relationships window.
Option C: While not the most common method, you can also select Edit > Relationships from the menu to open the Relationships window and view the database's relationships.
Option D: All of the above options are indeed true. Each of these methods serves the purpose of displaying the relationships in a database, allowing you to visualize and manage how tables are connected to each other.

Therefore, the correct option is Option D: All the above are true.

4.

Which of the following can be an example of a database in Access?

A.

Address book of all the suppliers of a company

B.

Salary sheet of all the employees of a company

C.

Records of daily sales transactions of a company

D.

All of above

Correct answer is D

A database is a structured collection of data that is organized and stored in a way that allows for efficient retrieval, management, and manipulation of the data. It can include various types of information and can serve different purposes. All of the provided options are examples of databases:

Option A: An address book containing the contact details of all the suppliers of a company can be considered a database. It stores structured information about suppliers, allowing easy access and management of their contact information.
Option B: A salary sheet containing the salary details of all employees of a company is also an example of a database. It stores data related to employee salaries, which can be organized and manipulated for payroll processing and analysis.
Option C: The records of daily sales transactions of a company represent a database as well. This type of database stores information about sales transactions, which can be used for tracking sales performance and generating reports.
Option D: All of the above options are valid examples of databases. They each involve storing structured data for specific purposes, making them organized collections of information that can be queried, updated, and managed efficiently.

Therefore, the correct option is Option D: All of above.

5.

To sort records in a table

A.

Open the table, click on the field on which the sorting is to be done, then click Sort button on database toolbar

B.

Open the table, click Sort button on database toolbar, choose field based on which to sort, click OK

C.

Click the field heading to sort it ascending or descending

D.

All of above

Correct answer is D

You can sort records in a table in Microsoft Access using different methods. All of the provided options are valid ways to achieve sorting:

Option A: Open the table, click on the field on which you want to perform sorting, and then click the Sort button on the database toolbar. This method allows you to sort the table based on the selected field in ascending order.
Option B: Open the table and click the Sort button on the database toolbar. A dialog will appear where you can choose the field based on which you want to sort. After selecting the field, click OK to apply the sorting. This method provides you with more control over the sorting options.
Option C: Clicking on the field heading allows you to sort the data in ascending order by default. Clicking the same field heading again will change the sorting to descending order.
Option D: All of the above options are valid ways to sort records in a table. Depending on your preference and the complexity of the sorting criteria, you can choose the most suitable method.

Therefore, the correct option is Option D: All of above.

6.

Which criteria do not return the position "Officer" as a match in MS Access?

A.

position = "*ff*"

B.

position = "O??icer"

C.

position = " ?ff*"

D.

position = "O#r"

Correct answer is D

No explanation has been provided for this answer.

7.

Which of the following is not a type of relationship that can be applied in Access database

A.

One to One

B.

One to Many

C.

Many to Many

D.

All of above can be applied

Correct answer is D

No explanation has been provided for this answer.

8.

Cascade delete option in MS Access

A.

is used to delete all the records of all tables in a database

B.

will repeat the recent delete operation to all the records of current table

C.

is available in Edit relationship dialog box which makes sure that all the related records will be deleted automatically when the record from parent table is deleted

D.

None of the above

Correct answer is C

No explanation has been provided for this answer.

9.

(IF [Age]>65, "Senior","Adult"). In Ms Access, this expression is an example of:

A.

A conditional expression

B.

Algebraic expression

C.

A financial expression

D.

None of the above

Correct answer is A

No explanation has been provided for this answer.

10.

In MS Access, how can you make a date field DOB store the dates like "2002/10/17" ?

A.

By setting the input mask property to "yyyy/mm/dd"

B.

By setting the format property to "yyyy/mm/dd"

C.

By entering dates in yyyy, mm, dd order

D.

None of the above

Correct answer is B

No explanation has been provided for this answer.