answersLogoWhite

0


Best Answer

Procedural programming is when an application executes a series of procedures.

In procedural programming, the user is unable to choose what the program does next. In OOP (Object oriented), the user can click on any button they want, but in procedural, it just executed the pre-set procedures, then ends.

User Avatar

Reuben Corwin

Lvl 10
1y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

11y ago

not easy to manintent

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What are the drawbacks of procedure oriented programming languages?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the difference between structured oriented programming procedure and oriented programming?

LOTTA


What are drawbacks with structured programming why do you prefer object oriented programming?

because it uses bottom up approach


How do you apply class diagram with programming languages which is not based on object-oriented like c?

You cannot. Class diagrams are only applicable to object oriented programming languages. C is not object oriented, but C++ is.


What is the difference between oriented programming language and high programming language?

Set/subset: Some high level programming languages are object oriented, but not all of them.


What are examples of Object Oriented programming language?

Machine code, assembly language and C are all non-object oriented programming languages. Fortran, COBOL, Pascal and BASIC were originally non-object oriented languages but there are now object-oriented variants of these languages. C++, C# and Java were all designed with object-oriented programming in mind from the outset.


What is procedure oriented programming?

A language which supports sub programs. In procedural languages emphasis is more on code than data eg: COBOL,PL/SQL.


What are the two major types of programming languages in c plus plus?

Object oriented programming and structured programming.


How is it different from the procedure-oriented programming?

How is what different... Please restate the question.


The main emphasis of procedure-oriented is on algorithms rather than on data?

the main emphasis of procedure oriented programming is on algorithms rather than on data


Why c is object oriented programming languages?

C isn't an object oriented language... C++ is, because it has classes.


What programming language is Microsoft Excel Programmed in?

Object-Oriented languages


What is the difference between procedure-oriented and problem-oriented in C language?

C is neither procedure-oriented nor problem-oriented. C is a structured, general purpose programming language. Procedure-oriented programs are distinct in that code jumps around -- a lot. They do not have structured loops nor do they have procedure calls (subroutines, functions or procedures), but they do make prevalent use of jump or goto statements. As a result, procedure-oriented programs are often called "spaghetti code" due to the difficulty in both reading and maintaining the program. Machine code and assembly language are both examples of procedure-oriented languages. Although you could theoretically write a C program using nothing but procedural programming methods, the resultant spaghetti code will be extremely difficult to read and maintain. Imagine if you couldn't use for(), while() and do..while() loops, and couldn't call any functions, not even the built-in functions. You would basically have nothing more than a single main() function with all code contained therein. Even multiple statements enclosed in braces would not be permitted in procedural-programming. Problem-oriented programming languages are languages tailored to a particular application. Although it is possible to create a problem-oriented language within C, as a superset of C for instance, C itself is general purpose.