Difference between data structure and data base.
Answer Posted / pa
Database is a organized collection of data.
Data structure is way to organized data in logical and
mathematical method.
i
In database their is no need of any operation.
In data structure various operations are used to perform
data effectively.
| Is This Answer Correct ? | 7 Yes | 5 No |
Post New Answer View All Answers
How can you find out how much memory is available?
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol
Can a variable be both constant and volatile?
What is the use of void pointer and null pointer in c language?
Explain how can I pad a string to a known length?
What is difference between function overloading and operator overloading?
Why is it important to memset a variable, immediately after allocating memory to it ?
What is the translation phases used in c language?
Explain which function in c can be used to append a string to another string?
How can I find out if there are characters available for reading?
What is the hardest programming language?
What is else if ladder?
Can you explain the four storage classes in C?
What is integer constants?
How do I use void main?