Multiple Choice
Craig is working in a database that stores homes for sale for a Realtor. The database contains a table called HomeListings which contains a field called ListingDate that holds the date that a home was listed. Craig is designing a query that will identify houses on the market for less than 30 days as new listings, and houses on the market 30 days or more as old listings. This information will be included in a query column called ListingAge. Which of the following expressions will achieve these results:
A) ListingAge: IIf(Date-[HomeListings]![ListingDate]<30,"New Listing","Old Listing")
B) ListingAge: IIf(Date-[HomeListings]![ListingDate]>30,"New Listing","Old Listing")
C) ListingAge: IIf(Date-[HomeListings]![ListingDate] < 30, "Old Listing","New Listing")
D) ListingAge: IIf(Date-[ListingDate]![HomeListings]<30,"New Listing","Old Listing")
Correct Answer:

Verified
Correct Answer:
Verified
Q52: Glen is working on a database table
Q53: The PMT function is BEST suited to
Q54: <img src="https://d2lvgg3v3hfg70.cloudfront.net/TB7331/.jpg" alt=" -Consider the table
Q55: Constants that are used as arguments in
Q56: Aggregate functions only work with numerical data.
Q58: The order of operations determines the sequence
Q59: The _ function returns the number of
Q60: Which of the following statements offers the
Q61: Which of the following is the correct
Q62: David is working on a database that