What is the expansion of OOPS?
Answers were Sorted based on User's Feedback
Answer / rehman memon
OOP stands For Object Oriented Programming
| Is This Answer Correct ? | 32 Yes | 15 No |
Answer / pabcet mca terrors
Object Orientated Programming Structure.
| Is This Answer Correct ? | 4 Yes | 2 No |
write a program to find 2^n+1 ?
char* ptr = "Rahul"; *ptr++; printf("%s",ptr); What will be the output
What is polymorphism used for?
what is the difference between class and structure in C++?
Generally, in all C++ programs, texts are in white colour. Can we change the colour of the text(either input or output or both)? If so, help me out.
What's the full form of STL?
Can we create object of interface?
What is oop in simple words?
Plese get me a perfect C++ program for railway/airway reservation with all details.
How do you achieve runtime polymorphism?
#include <string.h> #include <stdio.h> #include <stdlib.h> #include <conio.h> 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
What is virtual class and friend class?