Asked by jamar

Which of the following are benefits of procedural abstraction? Select two answers. Procedural abstraction prevents programmers from accidentally using the intellectual property of other programmers. Option A,Procedural abstraction prevents programmers from accidentally using the intellectual property of other programmers. Procedural abstraction eliminates the need for programmers to document their code. Option B,Procedural abstraction eliminates the need for programmers to document their code. Procedural abstraction makes it easier for people to read computer programs. Option C,Procedural abstraction makes it easier for people to read computer programs. Procedural abstraction provides an opportunity to give a name to a block of code that describes the purpose of the code block.one

All Answers 1

Answered by GPT-5 mini AI
Correct answers: C and the last option (the one about giving a name to a block of code).

Why:
- Procedural abstraction makes programs easier to read by hiding implementation details behind a clear interface.
- It lets you name a block of code (a procedure/function) to describe its purpose, improving clarity and reuse.

The other statements are false: it does not prevent accidental use of others' intellectual property, nor does it remove the need to document code.