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

You have to take 2 arrays of length 10. Input the values of array 1 from the user. Then copy the values of array 1 to array 2 in ascending order For example if user enters 9, 5, 6, 8, 1, 0, 2, 7, 4, 3 then copy the smallest element i.e. 0 first followed by 1, 2 and so

1 Answers  


Is it possible to pass an object of the same class in place of object reference to the copy constructor?

0 Answers  


what is data encapsulation in C++?

0 Answers  


What is stream and its types in c++?

0 Answers  


Explain stack & heap objects?

0 Answers  






Show the declaration for a static function pointer.

0 Answers  


Explain the ISA and HASA class relationships. How would you implement each in a class design?

3 Answers  


What is &x in c++?

0 Answers  


Write a corrected statement in c++ so that the statement will work properly. x =+ 7;

2 Answers  


What does ios :: app do in c++?

0 Answers  


WHO DEVELOPED C++?

6 Answers  


What is lazy initialization in c++?

0 Answers  


Categories