Difficulty: Easy
Correct Answer: Both (a) and (b)
Explanation:
Introduction / Context:
Forms are user-interface artifacts that connect people to the underlying database. A form designer chooses labels, positions, and bindings that help users enter and review data accurately. It is important to distinguish between design elements (what the form defines) and data (what users type or what the database stores).
Given Data / Assumptions:
Concept / Approach:
Form design typically includes field designators (bindings to database fields/controls) and prompts (labels, instructions, placeholder text) that guide user input. The data itself is not part of the design; it is dynamic content captured or displayed when the form is used. Keeping this distinction clear helps avoid mixing presentation with content and supports reusable forms across records and users.
Step-by-Step Solution:
Verification / Alternative check:
GUI builders and form designers in common tools separate properties (control bindings, labels) from record instances. Templates can be reused across many data rows, proving that data is not a design element.
Why Other Options Are Wrong:
Common Pitfalls:
Hard-coding sample data into a form; conflating a mockup’s placeholder text with real, stored values.
Final Answer:
Both (a) and (b)
Discussion & Comments