Correct Answer: C. OrderDate >= @StartDate AND OrderDate < @EndDate
Explanation:
A sargable predicate leaves the indexed column unwrapped so the engine can seek a range.
Applying functions to the column often prevents efficient index navigation.
Correct Answer: C. Reloads data from configured sources at planned times
Explanation:
Imported models contain a snapshot that becomes stale as sources change.
Scheduled refresh updates that snapshot according to the configured timetable.
Correct Answer: C. To keep data only as long as required by business, legal, and analytical needs
Explanation:
Retention balances analytical value, cost, performance, privacy, and legal duties.
The policy should define archival and secure disposal as well as retention periods.
Correct Answer: D. Return multiple specified aggregation levels in one grouped query
Explanation:
GROUPING SETS allow several group combinations without separate UNION queries.
They can produce totals by region, product, and overall in one statement.
Correct Answer: D. Applying filters as close to the data source or scan as possible to reduce rows processed
Explanation:
Early filtering reduces I/O, transfer, join inputs, and aggregation work.
Modern engines may push predicates into scans, remote sources, or storage segments.
Correct Answer: D. It securely connects the cloud service to approved on-premises data sources
Explanation:
The gateway brokers refresh or live queries without exposing sources directly to the internet.
Credentials and data-source mappings are managed under controlled configuration.