what is the difference between procedure oriented and object
oriented progaming language
Answer Posted / shrikantauti
POP includes procedures, where in OOP everything created is an object.
object is an instance of all class, which is used to call the methods with the help of periods.
OOP is any how better than POP.
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
Explain what math functions are available for integers? For floating point?
Is r written in c?
What is switch in c?
What is the explanation for the dangling pointer in c?
Why header files are used?
What is the use of bitwise operator?
What is the size of structure pointer in c?
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
Which are low level languages?
How can I invoke another program (a standalone executable, or an operating system command) from within a c program?
Write a code to generate a series where the next element is the sum of last k terms.
Is fortran still used in 2018?
int main() { Int n=20,i; For(i=0;i<=n;i--) { Printf(“-“); Return 0;
Explain the use of fflush() function?
Explain how to reverse singly link list.