what is the application of oops?

Answer Posted / munni

real time system:a real time system is a system dat gives
o/p at given and its parameters changes at every time.
a real time is nothing but a dynamic system a dynamic
system is a system that changes every moment band on i/p to
the system oop approach is very useful for real time system
because code changing in very carry is oop system and it
lead towards dynamic behaviour of oop codes thus more
suitable to real time system.
simulation & modelling:system modelling is another area
where criteria for oop approach in countable representing a
system is very easy in oop approach.

Is This Answer Correct ?    22 Yes 10 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Why do we use polymorphism?

573


What is data binding in oops?

584


Which language is pure oop?

545


Are polymorphisms mutations?

696


Why do pointers exist?

656






String = "C++ is an object oriented programming language.An imp feature of oops is classes and objects".Write a pgm to count the repeated words from this scenario?

1938


what is difference between class template and template class?

2157


hi, this is raju,iam studying b.tech 2nd year,iam want know about group1 and group2 details, and we can studying without going to any instutions? please help me.

1537


How to call a non virtual function in the derived class by using base class pointer

5253


what are the ways in which a constructors can be called?

1581


Which is better struts or spring?

616


Plese get me a perfect C++ program for railway/airway reservation with all details.

3427


What are the data types in oop?

602


#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

2164


write a program that takes input in digits and display the result in words from 1 to 1000

1985