Microsoft Access troubleshooting and expressions

Microsoft Access troubleshooting and expressions

12th Grade

9 Qs

quiz-placeholder

Similar activities

Databases - Table & Entities

Databases - Table & Entities

3rd - 12th Grade

10 Qs

[Hall] DOM Modifications

[Hall] DOM Modifications

9th - 12th Grade

12 Qs

Unit 2 Relational Databases Quiz

Unit 2 Relational Databases Quiz

12th Grade

10 Qs

Database

Database

9th - 12th Grade

14 Qs

BTEC IT - Database queries

BTEC IT - Database queries

11th - 12th Grade

12 Qs

24S2 ITA Topic 3 Revision

24S2 ITA Topic 3 Revision

12th Grade

7 Qs

Data 251-257 + 309-311

Data 251-257 + 309-311

12th Grade

10 Qs

Access - Lesson 7

Access - Lesson 7

9th - 12th Grade

11 Qs

Microsoft Access troubleshooting and expressions

Microsoft Access troubleshooting and expressions

Assessment

Quiz

Computers

12th Grade

Hard

Created by

Tim Ballard

Used 12+ times

FREE Resource

9 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

45 sec • 4 pts

Media Image

When establishing a relationship between two tables, how would you fix this error?

Change the ArtistID data type in each table so they are both numbers

Add an additional Artist ID field in another table

Link both primary keys in each table

Ensure that Enforce Referential Integrity is ticked.

2.

MULTIPLE CHOICE QUESTION

45 sec • 4 pts

Media Image

I attempted to delete a relationship between two tables, but I got this error. How do I fix it?

Close the open tables then try again

Restart the computer

Ask my friend whether they are using my database at the same time

Close any conflicting programs

3.

MULTIPLE CHOICE QUESTION

45 sec • 4 pts

Media Image

When attempting to run my query, I get this error message. How do I fix it?

Close the open tables and try again

Check my query expressions

Remove unnecessary tables from my query

Add additional criteria to my query

4.

MULTIPLE CHOICE QUESTION

45 sec • 4 pts

Media Image

I made a query with the Gallery name and Artist Surname. When I run the query, this unexpectedly pops up. What's happened?

The ArtistSurname field is spelt incorrectly

The expression contains a logic error

I need to add a primary key to the query because the fields are in different tables

I need to save the query before running it

5.

MULTIPLE CHOICE QUESTION

45 sec • 4 pts

A calculated field displays "profit" when predicted sales are £1,000 or more. Otherwise it displays "loss". What have I used in my expression?

IF([PredictedSales] > 1000, "profit", "loss")

IIF([PredictedSales] > 1000, "profit", "loss")

IF([PredictedSales] < 1000, "profit", "loss")

IIF([PredictedSales] > 1000, "loss", "profit")

Answer explanation

IIF is used in expressions instead of IF.

The first part is the condition [PredictedSales] > 1000

The second part is what displays if the condition is true.

The final part is what displays if the condition is false.

IIF(condition, true, false)

6.

MULTIPLE CHOICE QUESTION

45 sec • 4 pts

There is going to be a 50% off sale. A calculated field displays 50% of an item's price. What is the expression?

SalePrice: [ItemValue] * 0.5

SalePrice: [ItemValue] * 50

SalePrice: [ItemValue] / 50 * 100

SalePrice: [ItemValue] * 0.05

7.

MULTIPLE CHOICE QUESTION

45 sec • 4 pts

An expression on a report joins a first name and surname together. What is the expression?

=[FirstName] & " " & [LastName]

=[FirstName] + " " + [LastName]

=[FirstName] &[LastName]

="[FirstName][LastName]"

8.

MULTIPLE CHOICE QUESTION

30 sec • 4 pts

Which expression on a report might show the total value of all sales?

=Sum([Sales])

=Total([Sales])

=Max([Sales])

=COUNT([Sales])

9.

MULTIPLE CHOICE QUESTION

30 sec • 4 pts

Which expression on a report might show the total number of records to indicate the number of orders received?

=Sum([OrderID])

=Total([OrderID])

=Max([OrderID])

=COUNT([OrderID])