Difference between data structure and data base.

Answers were Sorted based on User's Feedback



Difference between data structure and data base...

Answer / usha

Data structure is a way to organize data with different
functionality but data base is simply a collection of
interrelated data and function to access those data.
in database u can store large amount of data but if want to
know that how that data has stored in your database that
you have to learn data structure.

Is This Answer Correct ?    58 Yes 7 No

Difference between data structure and data base...

Answer / rajesh

Data structure is a collection of different data items and
data base is a collection of records.
In data structures like stack, queue etc, we enter or take
data from any one side only but in data base we enter or
take data from any where.

Is This Answer Correct ?    57 Yes 26 No

Difference between data structure and data base...

Answer / khalid jan

Data structure is a way to organize data with different
functionality but data base is simply a collection of
interrelated data and function to access those data.
in database u can store large amount of data but if want to
know that how that data has stored in your database that
you have to learn data structure.

Is This Answer Correct ?    15 Yes 2 No

Difference between data structure and data base...

Answer / 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

Difference between data structure and data base...

Answer / mahrukh

Explaining in a simple language : Database is the collection of various in a formatted manner , like a table , which helps in storing large amount of information having common attributes or simply common headings . . . For eg : The attendance register of a class can be considered as a database which the information about all the students are stored in table format under the attributes like name , roll number , absent or present . . .

Data Structure is the way of arranging information in a database so that it becomes easy to access information whenever needed . Example : Consider an attendance register of a class which is not proper . i.e , the pages are not arranged according to a proper sequence . If you arrange it in a sequence ( either date-wise or in any other sequence ) , you form a data structure which has a particular sequence of accessing the details of the register . . .

Is This Answer Correct ?    7 Yes 1 No

Difference between data structure and data base...

Answer / 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

Difference between data structure and data base...

Answer / 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

More C Interview Questions

Consider a language that does not have arrays but does have stacks as a data type.and PUSH POP..are all defined .Show how a one dimensional array can be implemented by using two stacks.

3 Answers   Google,


for example user gives input as " 20 or 20.0 or rs 20.0 or 20.00 or rs20 and so .. on " and the output should be stored as " rs.20.00 " in a variable

2 Answers  


How the processor registers can be used in C ?

7 Answers   HP,


What is the package for freshers(Non IIT) in amazon(hyderabad). And what is the same for those who are a contract employee.

0 Answers  


Write a program that accepts a string where multiple spaces are given in between the words. Print the string ignoring the multiple spaces. Example: Input: “ We Are Student “ Output: "We Are Student"

1 Answers  






Write a program to produce the following output in c language? 1 1 1 1 2 1 1 3 3 1 1 4 6 4 1

2 Answers  


write a c program in such a way that if we enter the today date the output should be next day's date.

0 Answers  


Explain what is the advantage of a random access file?

0 Answers  


which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +

0 Answers  


how to find greatet of 10 numbers without using array?

4 Answers  


What is the use of in c?

0 Answers  


What are reserved words?

0 Answers  


Categories