Difference between data structure and data base.

Answer Posted / shruthi chandran

Data Structure - How data are stored or arranged. For Example:- Are they arranged Linearly or non-Linearly. Linear means they are arranged one after the other in contigous memory locations. Examples include Arrays, Lists

Database is a collection of information that is organised so that it can be easly accessed,managed and updated

Is This Answer Correct ?    0 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Is there anything like an ifdef for typedefs?

696


Give differences between - new and malloc() , delete and free() ?

603


Is it possible to use curly brackets ({}) to enclose single line code in c program?

787


Badboy is defined who has ALL the following properties: Does not have a girlfriend and is not married. He is not more than 23 years old. The middle name should be "Singh" The last name should have more than 4 characters. The character 'a' should appear in the last name at least two times. The name of one of his brothers should be "Ram" Write a method: boolean isBadBoy(boolean hasGirlFriend , boolean isMarried, int age , String middleName , String lastName , String[] brotherName); isHaveGirlFriend is true if the person has a girlfriend isMarried is true if the person is married age is the age of the person middleName is the middle name of the person lastName is the last name of the person brotherName is the array of the names of his brothers

1420


Hai,I have done with my bachelor of commerce and planing to ms,please suggest me how to convince vo for shifting from commerce to computers. Visa on 8 DEC 2014  Npu university

1594






What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }

1953


What is the size of empty structure in c?

589


Explain what is a program flowchart and explain how does it help in writing a program?

643


What does it mean when a pointer is used in an if statement?

596


Why flag is used in c?

651


What is action and transformation in spark?

589


if (i = 0)printf ("True"); elseprintf("False"); Under what conditions will the above print out the string "True" a) Never b) Always c) When the value of i is 0 d) all of the above

705


Explain the difference between structs and unions in c?

572


When I tried to go into a security sites I am denied access and a message appeared saying 'applet not initialize'. How can I rectify this problem.

1527


What is pre-emptive data structure and explain it with example?

3203