what does data structure mean?

Answers were Sorted based on User's Feedback



what does data structure mean?..

Answer / <<123>>

data structure is a way of storing data in a computer so
that it can be used efficiently.

Is This Answer Correct ?    23 Yes 1 No

what does data structure mean?..

Answer / richa

and also by default static variable is initialised to
zero...

Is This Answer Correct ?    10 Yes 0 No

what does data structure mean?..

Answer / ajay009ajay@yahoo.co.in

every group of element be arranged in either mathematical or
logical way, understanding of mathematical or logical way
are known as data structure.

Is This Answer Correct ?    9 Yes 0 No

what does data structure mean?..

Answer / baskar.m

An organization of information, usually in memory, for
better algorithm efficiency, such as queue, stack, linked
list, heap, dictionary, and tree, or conceptual unity, such
as the name and address of a person. It may include
redundant information.

what does data structure mean?
Answer
# 3 every group of element be arranged in either
mathematical or
logical way, understanding of mathematical or logical way
are known as data structure.

Is This Answer Correct ?    6 Yes 0 No

what does data structure mean?..

Answer / rose

An organization of information, usually in memory, for
better algorithm efficiency, such as queue, stack, linked
list, heap, dictionary, and tree, or conceptual unity, such
as the name and address of a person. It may include
redundant information.

Is This Answer Correct ?    3 Yes 1 No

what does data structure mean?..

Answer / jarke

Data structure is an organized way of storing and
retrieving data or information that includes different
methods like queues,stack,link list,tree etc.

Is This Answer Correct ?    4 Yes 2 No

what does data structure mean?..

Answer / dippi

data structure is a structure in which elements having
different datatypes can be kept

Is This Answer Correct ?    5 Yes 4 No

what does data structure mean?..

Answer / irfan ullah(pak)

Data structure is an organization of data in computer memory to minimize memory wastage and improve processing speed.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

What are control structures? What are the different types?

0 Answers  


main() { struct test { char c; int i; char m; } t1; printf("%d %d\n", sizeof(t1), sizeof(t1.c)); }

1 Answers   Vector, Vector India,


Explain enumerated types in c language?

0 Answers  


what is the difference between arrays and linked list

26 Answers   MAHINDRA, Tech Mahindra, Wipro,


what is the function of pragma directive in c?

0 Answers  






Can you please explain the difference between exit() and _exit() function?

0 Answers  


int main() { int i=-1,j=-1;k=0,l=2,m; m=i++&&j++&&k++||l++; printf("%d%d%d%d%d",i,j,k,l,m); }

3 Answers   HCL,


c program to input values in a table(using 2D array) and print odd numbers from them

1 Answers  


what is the use of call back function in c?tell me with example

2 Answers   Bosch,


identify the in correct expression a.a=b=3=4; b.a=b=c=d=0; float a=int b=3.5; d.int a; float b; a=b=3.5;

8 Answers   TCS,


what is the output of the following code? main() { int I; I=0x10+010+10; printf("x=%x",I); } give detailed reason

3 Answers  


swap 2 numbers without using third variable?

0 Answers   IBS,


Categories