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 pointers really good for, anyway?

0 Answers  


What is the exact difference between '\0' and ""

3 Answers  


Write a Program to find whether the given number or string is palindrome.

0 Answers   InterGraph,


1.)how to find d most repeated word in a string? string ="how do you do"?? output should be do

1 Answers   AAS, Nagarro, Vuram,


Explain following declaration int *P(void); and int (*p)(char *a);

3 Answers  






1.write a program to merge the arrays 2.write efficient code for extracting unique elements from a sorted list of array?

3 Answers   Qualcomm,


What is c language and why we use it?

0 Answers  


i=20,k=0; for(j=1;j<i;j=1+4*(i/j)) { k+=j<10?4:3; } printf("%d", k);

8 Answers   HCL,


Explain what is page thrashing?

0 Answers  


A variable that is defined in a specified portion of a program but can be used throughout the program a) global variable b) local variable c) character d) none

0 Answers  


Why is %d used in c?

0 Answers  


void main() { int a=1; printf("%d %d %d",a,++a,a++); } the output is supposed to be 1 2 2....but it is 3 3 1 this is due to calling conventions of C. if anyone can explain me how it happens?

7 Answers  


Categories