Data Structures Flashcards

1
Q

Data structure category where data arrangement follows a specific trend such that the element is directly linked to the previous and next elements.

A

Linear Data Structure

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Defined as the particular way of how data is organized.

A

Data Structures

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Data structure category capable of storing more than one data type.

A

Non-Primitive Data Structure

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

The Static and Dynamic categories belong to which specific Data Structure?

A

Linear Data Structure

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What are the four types of linear data structures?

A
  • Array
  • Linked Lists
  • Stack
  • Queue
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What data structure has data elements connected to each other so that elements are arranged in sequential manner and each element is connected to the element in the front of it and behind it?

A

Linear Data Structure

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Which data structure can be traversed in a single run?

A

Linear Data Structures

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What type of linear data structure is a collection of the same data types stored at contiguous memory locations?

A

Array

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What linear data structure where the elements are linked using pointers?

A

Linked Lists

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What is the linear data structure that stores data elements in a Last-In/First-Out (LIFO) or First-In/Last-Out (FILO) order?

A

Stack

How well did you know this?
1
Not at all
2
3
4
5
Perfectly