Difficulty: Easy
Correct Answer: Modify and delete records, but not format printed reports
Explanation:
Introduction / Context:
Business applications distinguish among forms for data entry and editing, queries for retrieval, and reports for formatted output. Understanding each component’s role avoids design mistakes and improves usability. This question asks you to identify what forms can do in addition to entering new data.
Given Data / Assumptions:
Concept / Approach:
Forms are front-ends to CRUD operations. They can validate input, load existing records for edits, and, with proper permissions, delete records. While forms may provide a “print” button, the actual formatting logic for multi-page summaries, headers/footers, and group totals is handled by report layouts, not the form itself. Therefore, correct capabilities are modify and delete, not report formatting.
Step-by-Step Solution:
Verification / Alternative check:
Common platforms (Access, low-code tools, web CRUD apps) expose edit and delete buttons on forms while delegating complex print layouts to report designers.
Why Other Options Are Wrong:
Common Pitfalls:
Assuming a form that prints a screen equals a true report; printed screens lack grouping, totals, and pagination controls.
Final Answer:
Modify and delete records, but not format printed reports
Discussion & Comments