Daniel came across a codebase where functions are mentioned at the beginning but their actual workings are given at the end. What approach is this codebase following?

  • Bottom-Up Design
  • Functional Programming
  • Procedural Programming
  • Top-Down Design
This codebase is following the Procedural Programming approach. In Procedural Programming, functions are often declared at the beginning of the code, and their actual implementations are provided later in the code. This approach promotes a step-by-step, imperative style of programming.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *