answersLogoWhite

0

What is Procedural Abstraction?

Updated: 12/9/2022
User Avatar

Wiki User

11y ago

Best Answer

java supports procedural abstraction by means of constructors and methods. in java constructor and methods are always components of particular class. java supports coping parameter only.

procedural abstraction is a principle in which the particular language supports some features through which procedures are modelled in the class hiding other details.

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is Procedural Abstraction?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is procedural abstraction in software engineering?

When we consider a modular solution to any problem, many levels of abstraction can be posed. At the highest level of abstraction, a solution is stated in broad terms using of the problem environment. At lower levels of abstraction, a mmore detailed description of the solution is provided.


Is encapsulation a characteristic of procedural or object oriented programming?

Encapsulation is one of the four pillars of object-oriented programming. The other three are inheritance, polymorphism and abstraction.


What is the difference between a procedural language and declarative language?

Procedural is nothing but just using procedures to instrct te machine. The procedures provides a level of abstraction here. Declarative means to program without specifying the steps involved clearly. It allows us not give the control flow. ex - SQL is declarative as it does not need the control flow to be implemented. SQL is also procedural as it works on procedure names that are predefined.


Why 'C' is sequential language?

C is sequential id est procedural - it has no abstraction layer to facilitate the object oriented programming paradigm... However this can be coded in if required and is - in the case of objective C. Procedural or sequential programming basically means that the program in question is broken down into a sequence of steps or instructions and these are followed in order to make the program function. This is done in a linear fashion.Due to being sequential and procedural C does not have the "Bloat" of the C++ object oriented programming model. Therefore the programs are smaller and generally faster.


When was In Abstraction created?

In Abstraction was created on 2011-12-06.


How do you use procedural in a sentence?

it is a procedural task


What part of speech is procedural?

The word procedural is an adjective.


What guarantees a person must be informed of why he or she is on trial?

Procedural Due


C is nonprocedural or procedural language?

C is Procedural Language.


Are Laws are classified as procedural and equitable?

No, laws are not procedural or equitable


Can you generate a C plus plus source code from the binary file?

No. Binary executables are low-level and procedural while C++ source code is high-level and structured. Low-level means there is little or no abstraction between the source code and the machine code (since binary executables are machine code there is no abstraction whatsoever). High-level means there is a high level of abstraction. At best you can disassemble the machine code to produce low-level disassembly which will approximate the original assembly instructions, but without any comments and user-defined names, which must be manually reproduced. Even so, assembly is low-level and there's simply no way to reproduce a high-level language from a low-level source.Note that although it is possible to produce C++ instructions from low-level assembly, the C++ source will bear no relation whatsoever to the original C++ source code, because you'd simply be translating the procedural code into the equivalent C++ procedural code. In other words, the result would be spaghetti code built entirely from primitive data types (with no object classes or other user-defined types), and no function calls whatsoever (the main function will be the only function). All abstraction is completely stripped out during compilation, and there's simply no way to reproduce even an approximation of that abstraction once a program is compiled and linked.


What is Procedural query language?

A procedural language is nothing but what we call relational algebra. Procedural language is just like SQL but with different syntax. In Procedural language for "Select" we use projection and for "where" clause we use selection.