Difficulty: Easy
Correct Answer: Update (transform and change stored records)
Explanation:
Introduction / Context:
Classical data processing distinguishes input, processing, and output. During processing, the system transforms data: calculating totals, applying business rules, and updating stored records. Clear separation helps auditors, designers, and operators reason about controls and performance.
Given Data / Assumptions:
Concept / Approach:
Processing executes algorithms and business logic to modify, derive, or aggregate data. “Update” is a paradigmatic processing action because it alters stored records to reflect new transactions (e.g., posting invoices, adjusting inventory, changing account balances). While indexing supports faster access and retrieval presents results to users, updating represents the core transformation step.
Step-by-Step Solution:
Verification / Alternative check:
Database transaction logs and commit records are generated during processing when updates occur, confirming the classification.
Why Other Options Are Wrong:
Common Pitfalls:
Confusing indexing with processing because both may run in batch windows; indexing changes access paths, not business state.
Final Answer:
Update (transform and change stored records)
Discussion & Comments