answersLogoWhite

0


Best Answer

Procedural programming has been used for thousands of graphical applications, The most well known application it has been used for is the creation of the operating system known as Linux. despite there being numerous variations of Linux that are available for anyone to use free of charge due to it's open source nature, each of these variations uses procedural programming to create the kernel that is runs from. The kernel itself is created in the procedural programming language known as Python.

I hope this is a better answer than the one before it :)

User Avatar

Wiki User

11y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

9y ago

is procedural programming suitable for the design and creation of graphical applications? I personal think that procedural programming is most certainly suitable for the design and creation of graphical applications, due to the fact that with procedural programming you are able to re-use blocks of code over and over again for a repetitive task by simply creating a function or procedure to hold that block of code, allowing you to call upon it whenever you need to use it. As well as this procedural programming has already proved to be the best alternative for graphical applications because of the creation of the operating system Linux, which was created in the programming language known as Python.

Also because graphical applications work and run in specific steps given to is by the user of the application, this makes procedural programming a perfect match for graphical applications, as procedural programming works by making the program follow step after step in order to achieve the goal that it has been designed for. As well as this since procedural programming uses modular programming in order to create the steps the steps the program needs to follow in order to achieve its goal. It makes it very easy to test the individual functions and procedures that are needed for the program before they are called to use in the main procedure. These means that graphical applications created using procedural programming can be created with less bugs and glitches. Therefore I say that procedural programming is most definitely suitable for the design and creation of graphical applications like GUIs.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What kind of programs is it used to create procedural programming?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

What are the Examples of portable programming language?

Many programming languages allow programs to be portable from one kind of computer to another, including* the C programming language* Pascal* Forth* C++* Java* Pythonand many others. Yes, the C programming language was designed to encourage machine-independent programming.The C programming language is portable to more CPUs than any other programming language.


How do you make an invisible program?

To make a program invisible, you can take one of the following methods: (1) hide the user interface of the program. most programming languages provide APIs (Application Programming Interface) for you to hide the windows, task bar icons and other visible elements. (2) create your program as a service. Services don't need user interfaces, so they are invisible to normal users. (3) inject your program into other hosts (programs). This is the typical behavior of Trojans and Virus, this kind of program is prone to be detected as malicious software by anti-virus software, so it is not a good method to create normal programs.


What is purpose of computer programming?

A computer programmer is responsible for ensuring that computer applications operate properly. The programmer creates programs for use in computers across all platforms.


What is integer programming?

Integer programming is a special kind of an optimising problem where the solution must be an integer.


What is programming concept?

An aspect-oriented programming language is another name for an aspect-oriented language - a computer programming language which aims to increase modularity by allowing the separation of crosscutting concerns.

Related questions

What kind of language is C programming?

C is a general purpose, procedure oriented (procedural) programming language developed by Dennis Ritchie in 1972.


How do you create a softwares?

A software is written with some kind of programming language by a programmers .


How to create program?

You have to tell me what kind of programming you're looking for. Else it's impossible to answer.


How to create a program?

You have to tell me what kind of programming you're looking for. Else it's impossible to answer.


How create a program?

You have to tell me what kind of programming you're looking for. Else it's impossible to answer.


What website can you learn programming code?

That depends on what kind of programs (game, windows application, website?) you would like to write, which is more or less linked to what programming language you might want use.


What kind of memory requires practice and is remembered by doing?

Procedural


What is goal programming?

Goal programming is a kind of multi-objective optimization. An advantage of this kind of programming is it's simplicity and ease of use.


What are the Examples of portable programming language?

Many programming languages allow programs to be portable from one kind of computer to another, including* the C programming language* Pascal* Forth* C++* Java* Pythonand many others. Yes, the C programming language was designed to encourage machine-independent programming.The C programming language is portable to more CPUs than any other programming language.


What kind of services does the springframework provide?

Spring Framework is related to the computer programming field. What it does is provides support when developing programs that are Java based. Check out their site for more information.


How do you make an invisible program?

To make a program invisible, you can take one of the following methods: (1) hide the user interface of the program. most programming languages provide APIs (Application Programming Interface) for you to hide the windows, task bar icons and other visible elements. (2) create your program as a service. Services don't need user interfaces, so they are invisible to normal users. (3) inject your program into other hosts (programs). This is the typical behavior of Trojans and Virus, this kind of program is prone to be detected as malicious software by anti-virus software, so it is not a good method to create normal programs.


What language is the Go programming language written in?

Programming languages aren't programs, hence they're not "written" in any language. They are often described by formal grammars (e.g. BNF - Backus-Naur Form). Interpreters and compilers for programming languages are programs and so must be written in some kind of programming language. Go has at least two compilers, gc and gccgo. The former is written in C, while the latter is a gcc frontend written mainly in C++. Go's libraries are written in Go. Source: StackOverflow