what is importance of data sturture in a programming
language?
Answer Posted / 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 |
Post New Answer View All Answers
State the difference between pre and post increment/decrement operations.
What is the use of :: operator in c++?
What is a .lib file in c++?
How can you differentiate between inheritance and implementation in c++?
Write bites in Turbo c++ Header ("Include") Files.
What is a lambda function c++?
What is endl c++?
Why do we learn c++?
There are 100 students in a class. The management keep information in two tables. Those two tables are given like Roll no Name Age 001 ABC 15 002 XYZ 14 and Roll No Subject Marks 001 Math 75 001 Physics 55 002 Math 68 001 Hindi 69 They want the information like this Roll No Name Hindi Physics Math Total 001 ABC 69 55 75 199 002 XYZ 68 74 84 226 And Roll No Suject Highest 001 Math 98 007 Physics 84 021 Hindi 74 All 275 All information is kept in structure in main memory. You have to find last two tables.
What is the difference between a "copy constructor" and an "assignment operator" in C++?
Do you know what are pure virtual functions?
What is the difference between an external iterator and an internal iterator? Describe an advantage of an external iterator?
When we use Abstract Class and when we use Interface?where we will implement in real time?
What is extern c++?
What are the advantages of pointers?