why oops need in programming

Answer Posted / vijay varadharajan

Implementing OOPs programming gives us flexibility, code re-usability and most importantly security. These are the major three reasons we go for OOPs programming.

Is This Answer Correct ?    4 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Why oops is important?

579


What is the purpose of polymorphism?

652


what type of question are asked in thoughtworks pair programming round ?

1734


#include #include #include #include void insert(char *items, int count); int main(void) { char s[255]; printf("Enter a string:"); gets(s); insert(s, strlen(s)); printf("The sorted string is: %s.\n", s); getch(); return 0; } void insert(char *items, int count) { register int a, b; char t; for(a=1; a < count; ++a) { t = items[a]; for(b=a-1; (b >= 0) && (t < items[b]); b--) items[b+1] = items[b]; items[b+1] = t; } } design an algorithm for Insertion Sort

2139


Please send ford technologies placement paper 2 my mail id

1630






Hi friends I have experience of 6 months in website design and maintanence. Now i am looking for other IT jobs.. to switch platform. please post any interview you know in chennai.

1759


officer say me - i am offered to a smoking , then what can you say

1554


What is the real time example of inheritance?

614


What is abstract class in oop?

517


Get me a number puzzle game-program

1674


Where is pseudocode used?

543


What is encapsulation process?

560


What is oops with example?

543


Can we create object of abstract class?

553


What is polymorphism what are the different types of polymorphism?

538