1.What is a Data Structure? Explain its need?
2.What is a Directed Graph? Write an algorithm to find
whether a Directed Graph is connected or not?
3.Explain the process of converting a Tree to a Binary Tree.
Answers were Sorted based on User's Feedback
Answer / gsrinivas
1.Data structure is mathematicle model to represent a data
in a computers memory.programming becomes easy.
| Is This Answer Correct ? | 12 Yes | 4 No |
Answer / diwakar anand
What is a Data Structure? Explain its need?
Ans- 1. A data structure is a systematic way of
organizing and accessing data.
2. A data structure tries to structure data!
* Usually more than one piece of data
* Should define legal operations on the data
* The data might be grouped together (e.g. in an
linked list)
3. When we define a data structure we are in fact
creating a new data type of our own.
* i.e. using predefined types or previously user
defined types.
* Such new types are then used to reference
variables type within a program
| Is This Answer Correct ? | 6 Yes | 2 No |
Answer / tejveer sambariya
data structure is a specialized format for organizing and storing data.
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / mallikharjuna rao k
Data Structure is a collection of logical and mathematical
representation of data.
| Is This Answer Correct ? | 2 Yes | 1 No |
What are the different types of endless loops?
What library is sizeof in c?
Can a pointer be volatile in c?
Write a simple program to find the size of different basic data types in C.
What are the types of type qualifiers in c?
what do you mean by defining a variable in our c code?
Software Interview Questions
How macro execution is faster than function ?
void main() { for(; 0 ;) ... { printf("hello"); ... } getch(); }
Method Overloading exist in c ?
If 4 digits number is input through the keyboard, Write a program to calculate sum of its 1st & 4th digit.
main() { charx; while (x=0;x<=255;x++) printf("\nAscii value %d Character %c,x,x); }