answersLogoWhite

0


Best Answer

1.complex coding

2.no security(due to use of pointers)

3.gives more importance to instruction than data

3.for the global variables declared, program becomes junky

User Avatar

Wiki User

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

AnswerBot

5d ago

One disadvantage of procedure-oriented languages is that they can make codebase maintenance and modification difficult, as changes to one part of a program may require alterations in multiple procedures. Additionally, reusability and scalability may be limited compared to object-oriented languages. Finally, procedures can lack encapsulation, leading to potential security vulnerabilities.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Disadvantage of procedure oriented language
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the Disadvantage of c?

It is not object oriented language.


Is java a procedure oriented language?

sdfew


What is problem oriented language?

a program generation activity aims at automatic generation of a program.The source language is a specification language of an application doamain and the target language is typically a procedure oriented programming language.A program execution activity organized the execution of a program return in a programming language on a computer system.Its source language could be a procedure oriented language or a problem oriented language


What is first procedure oriented language?

The first procedure-oriented programming language is considered to be Fortran (short for Formula Translation). It was developed by IBM in the 1950s for scientific and engineering computations.


What does object oriented and procedural mean in programming language?

procedure oriented means program will be execte in step by step procedure,when comes to object oriented means every thin can be represents the object a step[ step procedure doesnot follow


What kind of language is C programming?

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


List the advantage and disadvantage of database management system?

Answering "List the advantage and disadvantage of object oriented database model?" Answering "List the advantage and disadvantage of object oriented database model?"


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.


What is procedure language?

AnswerA procedural language is a programming language in which everything is processed in the order it appears to the computer.In contrast, an object-oriented language is a language in which everything is processed depending on what happens in the program -- user input, errors, or other events.PHP is both a procedural and object-oriented language, depending on the way it is used.


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

LOTTA


Is vb an object oriented language?

yes,vb is an event oriented language.


What is the difference between cc plus plus and java?

C is a procedure oriented language ,Where C++ & java are object oriented language.But java is platform independent.So generally C is called POP.C++ is called OOP.But java is OOP , which is platform independent.If java does not support primitive data type then it is called as pure object oriented language.