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
Are c and c++ the same?
How can you allocate arrays or structures bigger than 64K?
Which is not valid in C a) class aClass{public:int x;}; b) /* A comment */ c) char x=12;
Explain how can I open a file so that other programs can update it at the same time?
#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); }
develop algorithms to add polynomials (i) in one variable
What are the 32 keywords in c?
What is floating point constants?
Explain data types & how many data types supported by c?
Is c procedural or object oriented?
What are different types of variables in c?
What is the heap?
What is #define in c?
What is const volatile variable in c?
Calculate 1*2*3*____*n using recursive function??