What is the expansion of OOPS?

Answer Posted / saurabh

Object Oriented Programming Structure

Is This Answer Correct ?    27 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Why do we need oop?

781


What is a class oop?

677


What is polymorphism explain?

802


What is meant by multiple inheritance?

836


Why is static class not inherited?

692






What is a class and object?

688


What are the three parts of a simple empty class?

1608


What is static in oop?

686


What is oops with example?

659


What is abstraction in oop with example?

742


given a set based questions and 5 questions based on it next data sufficiciency questions 2 and 2/3 english sentence completion with options very easy and 2 synononmys paragraph with 10 questions 10 minutes replace =,-,*,% with -,%,+,* type questions 5 3 questions lik following itssickhere itssickthere itssickhere istsickhere which is nt alike the others very easy

2252


What is a function in oop?

717


Why is object oriented programming so hard?

707


#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

2167


class type to basic type conversion

1940