what is oops

Answer Posted / kaush

oops is a programming language for making program to more
secure,easy and mostally object oriented.
it is use mostly for security purpose.

Is This Answer Correct ?    2 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is overloading in oops?

859


What is byval and byref? What are differences between them?

1964


What is class in oop with example?

852


What is polymorphism oop?

842


What is coupling in oop?

793


write string class as your own class in java without using any built-in function

2234


What is ambiguity in inheritance?

866


What is class and example?

827


What is polymorphism and why is it important?

794


what is the drawback of classical methods in oops?

3137


What is abstraction in oop?

870


What causes polymorphism?

839


What is meant by multiple inheritance?

961


What does sksksk mean in text slang?

1855


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

2344