what is importance of data sturture in a programming
language?
Answer Posted / shruti
data structures are abstractions we use to manage large
amounts of information and the relationships different
pieces of information have with each other. sometimes we
use data to allow us to do more. data structure also
provide guarantees about algorithmic complexity, coosing an
appropriate data structure for a job is crucial to writing
good software.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What does std :: flush do?
Is multimap sorted c++?
Define a constructor - what it is and how it might be called (2 methods)?
Is python better than c++?
What is the use of setfill in c++?
How the virtual functions maintain the call up?
Given the following seqment of code containing a group of nested if instructions: y = 9; if ((x==3) || (x == 5)) y++; else if (x == 2) y *= 2; else if (x == ) y-= 7; else y = 8; if the value of x is 4 before the nested IFs are executed, what is the value of y after the nested IFs are executed?
What does the following code do: int c=0; cout< a) Undefined *Updated* b) 01 c) 00
How java is different from c and c++?
What is an associative container in c++?
What is the benefit of learning c++?
Can c++ do everything c can?
True or false, if you keep incrementing a variable, it will become negative a) True b) False c) It depends
What is the use of namespace std in C++?
How can you prevent accessing of the private parts of my class by other programmers (violating encapsulation)?