what is importance of data sturture in a programming
language?
Answer Posted / 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 |
Post New Answer View All Answers
Which c++ compiler is best?
write a function signature with various number of parameters.
What are exceptions c++?
Write down the equivalent pointer expression for referring the same element a[i][j][k][l]?
What is the use of endl in c++?
What is a flag in c++?
Show the declaration for a pointer to function returning long and taking an integer parameter.
What does the following do: for(;;) ; a) Illegal b) Loops forever c) Ignored by compiler...not illegal
Why are arrays usually processed with for loop?
How would you implement a substr() function that extracts a sub string from a given string?
What is the need of a destructor? Explain with the help of an example.
Define the operators that can be used with a pointer.
What are single and multiple inheritances in c++?
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
Is c++ the hardest language?