what is importance of data sturture in a programming
language?

Answers were Sorted based on User's Feedback



what is importance of data sturture in a programming language?..

Answer / zubeir

Data structure is nothing but a way to organize and
manipulate any given set of data in a specific and reusable
format/structure hence simplifying the manipulation of data.

Some of the commonly and frequently used data structures
are Stack, Queue, List, Set, e.t.c. But this list is not
limited to what we see here, rather we can invent our own
as long as there is a definite structure and better
efficiency by using it than work with raw data.

Is This Answer Correct ?    55 Yes 15 No

what is importance of data sturture in a programming language?..

Answer / rajesh prasad sarkar

Data sturcture is the logical representation and
organization of data in the main memroy.Which is used to
organize data in such a way that the insertion
,deletion,searhing i.e manipulation of data is done with
minimal complexity , and that gives a efficiet performance
of our computing.

Is This Answer Correct ?    34 Yes 6 No

what is importance of data sturture in a programming language?..

Answer / dd

Data Structure is logical memory representation of
storage.In electronic terms insted of gate complications
storage is given in specific structure to store in Bit
format.With the identififcation and type.

Is This Answer Correct ?    35 Yes 19 No

what is importance of data sturture in a programming language?..

Answer / disha

Data structure is an organisation of data in which data can
be organised in many different ways
... logical
... mathematical

Is This Answer Correct ?    27 Yes 12 No

what is importance of data sturture in a programming language?..

Answer / bilal rehman

well data structure is basically a trade off between memory and speed. you have to sacrifice one thing for the efficiency of your program.

Data structures plays an important role in programming language, lets say you guys definitely use google or youtube or any social websites, in these websites if the proper data structure wouldn't have been implemented then the data you are trying to search would take you ages...

the thing i just learned from my teacher is that it changes the way of thinking of a programmer, it shortens up your difficult tasks and make it less complex..!!

Is This Answer Correct ?    16 Yes 1 No

what is importance of data sturture in a programming language?..

Answer / a. nahas

Regarding use of programming languages, Niclaus Wirth wrote
a book with title "Data Structure + Algorithm = Program".
Therefore one can consider a programming language
as "capabilities to describe data objects of some
structures PLUS cabpabilities to define algorithms. Also,
data structures are very important in the implementation of
programming languages.

Is This Answer Correct ?    17 Yes 5 No

what is importance of data sturture in a programming language?..

Answer / simrat

Data Structure is logical and mathematical model to store
data So there are basic benefits of data structures:

The memory space is properly used.It helps in data
protection and management.

When we use the data structures in a code then for any new
person it is easy to tell and make him understand the
code,because there is some prescribed method is used So it
enhance the code readability and code reusability.

Which is used to
organize data in such a way that the insertion
,deletion,searhing i.e manipulation of data is done with
minimal complexity , and that gives a efficiet performance
of our computing.

Is This Answer Correct ?    13 Yes 1 No

what is importance of data sturture in a programming language?..

Answer / neha khurana

Data structures play a central role in modern computer
science. Data structure enables an efficient storage of
data for an easy access. It enables to represent the
inherent relationship of the data in the real world. It
enables an efficient processing of data. It helps in data
protection and management.

Is This Answer Correct ?    17 Yes 7 No

what is importance of data sturture in a programming language?..

Answer / vitts

which is provides the mechanism of storing the data in
different ways. this optimizes searching and memory
usage. for example when searching is to be faster
datastructure of type linear type is used. if memory
utilization is more importance then lists data structure
used

Is This Answer Correct ?    17 Yes 8 No

what is importance of data sturture in a programming language?..

Answer / sumit singh

Logical representation and organization of data in the main
memory in other words it is a logical memory representation
of a storage.

Is This Answer Correct ?    8 Yes 1 No

Post New Answer

More C++ General Interview Questions

what is an array

20 Answers  


What are the various compound assignment operators in c++?

0 Answers  


What is the use of lambda in c++?

0 Answers  


How does code-bloating occur in c++?

0 Answers  


without if else statement can be written ah

0 Answers  


In java a final class is a class that cannot be derived. How can you make a similar class in C++

1 Answers  


Explain operator overloading.

0 Answers  


What is the difference between reference type and pointers.

4 Answers   HCL,


What is the outcome of cout< a) 16 b) 17 c) 16.5

0 Answers  


What is the difference between "overloading" and "overridding"?

3 Answers  


what do you mean by volatile variable?

0 Answers  


How do you differentiate between overloading the prefix and postfix increments?

0 Answers  


Categories