What is difference between class and object with example?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More OOPS Interview Questions

#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

0 Answers  


Write pseudo code for push in a stack?

2 Answers   emc2,


What is Dynamic Polymorphism?

13 Answers  


what type of questions

0 Answers   IBM,


Are polymorphisms mutations?

0 Answers  






What is overriding in oops?

0 Answers  


When will a constructor executed?

5 Answers   TCS,


What is destructor example?

0 Answers  


Differences between inline functions and non-inline functions?

4 Answers   Ness Technologies,


write a program using c++ to implement single contiguous memory mangement techniques.display the content of the main memory after yhe allocation of jobs and percentage of the wastage of the main memory

0 Answers  


Write A Program to find the ambiguities in Multiple Inheritance? How are they resolved.(Virtual Functions)

0 Answers   Accenture,


What is Virtual Keyword?

9 Answers   IBM, NA,


Categories