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
Can you help me with this one? Make a program that when a user inputed a Product Name, it will display its price, and when the user inputed the quantity of the inputed product, it will show its total price. The output must be like this: Product Name: Price: Quantity: Total Price: ..this is the list of products to be inputed: Cellphone - 1500 Washing Machine - 5200 Television - 6000 Refrigirator - 8000 Oven - 2000 Computer - 11000 thanks..:D
Write a program using shift_half( ) function to shift the elements of first half array to second half and vice versa.
what is Member Functions in Classes?
What is the difference between while and do while loop? Explain with examples.
What are single and multiple inheritances in c++?
Do you know what are pure virtual functions?
Evaluate !(1&&1||1&&0) a) Error b) False c) True
What is low level language in simple words?
What is the difference between a type-specific template friend class and a general template friend class?
What things would you remember while making an interface?
Does c++ have string data type?
What is the difference between a definition and a declaration?
Which header file allows file i/o with streams a) fileio.h b) iostream.h c) fstream.h
Draw a flow chart and write a program for the difference between the sum of elements with odd and even numbers. Two dimensional array.
How the programmer of a class should decide whether to declare member function or a friend function?