Procedural languages Assignment Help
Imperative Programming Language is another name of Procedural Programming. It is derived from structured programming, based upon the concept of procedural call. It is type of computer programming language that specifies a series of well-structured step and procedures within its programming context to compose a program. It is also known as routines, subroutines, methods or function, simply contain a series of computational steps to be carried out.
fig:Procedural languages
Here is an example of Procedural languages
{` with Text_To; use Text_To
procedure hello is
begin
put("Hello World");
end hello
`}