45.9k views
3 votes
Jack is using a programming language that relies on routines and subroutines specified in a series of sequential steps. What type of programming language is Jack using?

A: Object-oriented



B: Procedural



C: Operational



D: Functional

User Rohithpr
by
5.9k points

2 Answers

4 votes

as the programming language relies on routines and sub routines and it is specified in a series of sequential steps so such kind of approach is used in Procedural programming language hence the option is Option B. Procedural

User Kobski
by
6.2k points
2 votes

Answer:

B. Procedural

Step-by-step explanation:

Procedural Programming is a form of development where all possible programs can be reduced to just three structures: sequence, decision, and iteration. And during the practice of this concept the Procedural Programming was developed, where its advantages are:

  • Programs made with subroutines or functions are programmed and tested once, although they can be used in various parts of the program as often as needed.
  • You can create a library with functions and subroutines that can be used in other programs or by other programmers.
  • With modularization we can preserve the refinements achieved in a specific part of the code and extend to every part of the system that will use the function or subroutine.
  • Computer memory saving, as the module used is stored once, even if used in different parts of the program. It also allows that, at a certain moment of program execution, only the module or modules needed to execute this program portion are in main memory.
  • Code hiding, as only routines and subroutines are available to other programmers.
User Student
by
6.1k points