Difference between data structure and data base.
Answers were Sorted based on User's Feedback
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 |
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 |
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 |
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 |
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 |
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 |
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 |
What is modifier & how many types of modifiers available in c?
How do you determine if a string is a palindrome?
convert 0.9375 to binary
What is the purpose of the statement: strcat (S2, S1)?
Differentiate between ordinary variable and pointer in c.
Describe the order of precedence with regards to operators in C.
Why is c called a mid-level programming language?
which of 'arrays' or 'pointers' are faster?
how can I convert a string to a number?
Given a number N, product(N) is the product of the digits of N. We can then form a sequence N, product(N), product(product(N))… For example, using 99, we get the sequence 99, 99 = 81, 81 = 8. Input Format: A single integer N Output Format: A single integer which is the number of steps after which a single digit number occurs in the sequence. Sample Test Cases: Input #00: 99 Output #00: 2 Explanation: Step - 1 : 9 * 9 = 81 Step - 2 : 8 * 1 = 8 There are 2 steps to get to this single digit number. Input #01: 1137638147
how to compare two strings without using strcmp() function??
Given a single Linked list with lakhs of nodes and length unknown how do you optimally delete the nth element from the list?