What are the main differences between procedure oriented
languages and object oriented languages?
Answers were Sorted based on User's Feedback
Answer / k.rajesh
1. Procedural languages enforce sequential processing
of instructions. Object oriented languages may implement
event driven processing.
2. Procedural languages store all data as global while
OOPs languages support data encapsulation -- all related
data is stored inside one object and only relevant data is
shown to the user.
3. Facilities like function overloading and operator
overloading (polymorphism) allow you to use same names and
provide different functionality which avoids personalism in
naming conventions. These overloaded versions are easy to
use and remember.
| Is This Answer Correct ? | 53 Yes | 12 No |
Answer / varaprasad
Procedure Oriented Language: It follows the a procedure
that is simply saying it will go line by line in the code
unless if u mentioned any goto are any code breaking
keywords.
Object Oriented Language: In this each and every program is
called as Object. that is simply saying we will breake the
code in to small pieces and we will call the code when we
want.
| Is This Answer Correct ? | 28 Yes | 8 No |
Answer / ankit samal
1. Procedural languages enforce sequential processing
of instructions. Object oriented languages may implement
event driven processing.
2. Procedural languages store all data as global while
OOPs languages support data encapsulation -- all related
data is stored inside one object and only relevant data is
shown to the user.
Procedure Oriented Language: It follows the a procedure
that is simply saying it will go line by line in the code
unless if u mentioned any goto are any code breaking
keywords.
Object Oriented Language: In this each and every program is
called as Object. that is simply saying we will breake the
code in to small pieces and we will call the code when we
want.
| Is This Answer Correct ? | 13 Yes | 5 No |
Answer / rahul madanan
procedural language: instructions will be divided into
various blocks called as datas .It concentrates on
procedures rather than datas.
oops: class is created where data and functions are
encapsulated. It concentrates on data rather than
procedure.
| Is This Answer Correct ? | 19 Yes | 15 No |
Answer / hbp sandeep
Procedure Oriented Language: It follows the a procedure
that is simply saying it will go line by line in the code
unless if u mentioned any goto are any code breaking
keywords.
Object Oriented Language: In this each and every program is
called as Object. that is simply saying we will breake the
code in to small pieces and we will call the code when we
want.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / sudesh
Procedure Oriented Language: It follows the a procedure
that is simply saying it will go line by line in the code
unless if u mentioned any goto are any code breaking
keywords.
Object Oriented Language: In this each and every program is
called as Object. that is simply saying we will breake the
code in to small pieces and we will call the code when we
want.
| Is This Answer Correct ? | 3 Yes | 4 No |
Answer / ashish tripathi
Pocedure Pogramming:
it concentrate the procedure .execution is going on through
procedure.it means that we can not jump without calling the
pevoius pocedure .
oop:
no restiction are there .
simply call whatever u want to execute.
| Is This Answer Correct ? | 4 Yes | 6 No |
what is oops
What do you mean by pure virtual functions?
write a program to enter a string like"sunil is a good boy and seeking for a job" not more than 10 characters including space in one line,rest characters should b in other line.if the next line starts from in between the previous word,then print whole word to next line.
polymorphism means?
What is the main purpose of inheritance law?
#include <iostream> using namespace std; struct wow { int x; }; int main() { wow a; a.x = 22; int c = a.x; int *b = new int; cout << c; return 0; } option: No output 0 22 -(11) Will not compile
What is byval and byref? What are differences between them?
to remove the repeated numbers from the given . i.e.., if the input is 12233 output should of 123
who is the founder of c++?
What is inheritance write a program to show use of inheritance?
how to swap to variables without using thrid variable in java?
Input: enter the value:1234 output: 1 2 3 4 write a program to get above output.....
4 Answers Bally Technologies, IBM, SoftSol,