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...

Difference between data structure and data base.

Answer Posted / gayitri91

Data Structure is a particular way of storing and organizing data in a computer so that it can be used efficiently.
Different kinds of data structures are suited to different
applications . For example, B-trees are particularly well-suited for implementation of databases.
Data structures are used in almost every program or software system.
DataBase-usually referred as collection of inter related data
,contains information relevant to a company or a business.

Is This Answer Correct ?    16 Yes 5 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Are c and c++ the same?

1103


How can you allocate arrays or structures bigger than 64K?

1200


Which is not valid in C a) class aClass{public:int x;}; b) /* A comment */ c) char x=12;

1127


Explain how can I open a file so that other programs can update it at the same time?

1174


#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }

1097


develop algorithms to add polynomials (i) in one variable

2234


What are the 32 keywords in c?

1140


What is floating point constants?

1191


Explain data types & how many data types supported by c?

1131


Is c procedural or object oriented?

1084


What are different types of variables in c?

1126


What is the heap?

1258


What is #define in c?

1106


What is const volatile variable in c?

1101


Calculate 1*2*3*____*n using recursive function??

2095