Is data hiding and abstraction same?


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

Post New Answer

More OOPS Interview Questions

What are constructors in oop?

0 Answers  


• What are the desirable attributes for memory managment?

0 Answers  


can we make a class static without using static keyword?

5 Answers   Aspire,


Write a c++ program to display pass and fail for three student using static member function

0 Answers  


Why u change company?

12 Answers   BOB Technologies,






How to execute business logic for only once ..?even though user clicks submit button multiple times by mistake..? (i disabled JavaScript)

1 Answers  


Write pseudo code for push in a stack?

2 Answers   emc2,


What is Method overloading?

5 Answers  


create a class complex having real and imaginary part of a complex no. as a data member. overload the binary operators(+,- and *) to perform the operations on complex no. objects. overload binary operator using friend function.

2 Answers   CTS, Delhi University,


what is single inheritance?

18 Answers   IBM,


Prepare me a program for the animation of train

0 Answers  


#include <string.h> #include <stdio.h> #include <stdlib.h> #include<conio.h> 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

0 Answers  


Categories