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

Is python better than c++?

0 Answers  


please help to write the code of chess game in c++??????????

1 Answers   NEC,


Explain differences between new() and delete()?

0 Answers  


How do I use arrays in c++?

0 Answers  


What is the Maximum Size that an Array can hold?

55 Answers   Adobe, FutureSoft, HCL, Infosys, Satyam, TCS, Wipro,






What is Memory Alignment?

2 Answers   TCS,


Difference between const char* p and char const* p?

1 Answers  


How c functions prevents rework and therefore saves the programers time as wel as length of the code ?

0 Answers  


Explain rtti.

0 Answers  


What does extern mean in a function declaration in c++?

0 Answers  


What parameter does the constructor to an ofstream object take?

0 Answers  


How would you use qsort() function to sort an array of structures?

0 Answers  


Categories