what is importance of data sturture in a programming
language?

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



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How to give an alternate name to a namespace?

793


What is a string example?

777


What are dynamic type checking?

789


What language is a dll written in?

728


What are maps in c++?

709


What is a literal in c++?

761


How do I download c++?

740


Assume an array of structure is in order by studentID field of the record, where student IDs go from 101 to 500. Write the most efficient pseudocode algorithm you can to find the record with a specific studentID if every single student ID from 101 to 500 is used and the array has 400 elements. Write the most efficient pseudocode algorithm you can to find a record with a studentID near the end of the IDs, say in the range from 450 to 500, if not every single student ID in the range of 101 to 500 is used and the array size is only 300

2000


Why was c++ made?

838


Why c++ is the best language?

795


What are default parameters? How are they evaluated in c++ function?

893


What is token c++?

774


Define pure virtual function?

742


I was a c++ code and was asked to find out the bug in that. The bug was that he declared an object locally in a function and tried to return the pointer to that object. Since the object is local to the function, it no more exists after returning from the function. The pointer, therefore, is invalid outside.

823


What are c++ tokens?

800