Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

WHAT IS ABSTRUCT DATA TYPE ?
PLEASE EXPLAIN IT.

Answer Posted / guest

data abstraction
abstract the data called the background details for ex
[size,weight,cost]
encapsulation
security the data

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 the difference between a constructor and a destructor?

1174


What is encapsulation in oops?

958


How to call a non virtual function in the derived class by using base class pointer

6421


What is destructor give example?

1012


Whats oop mean?

989


Why do we use polymorphism in oops?

984


What is encapsulation in oop?

988


What are the features of oop?

1094


write a program to find 2 power of a 5digit number with out using big int and exponent ?

2323


What does sksksk mean in text slang?

2054


What is variable example?

981


What type of loop is a for loop?

1049


#include #include #include #include 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

2564


Why do we use polymorphism?

1009


What is pure oop?

1048