What is a Stack
A Data Strcuture that operates on a first in, last out bias
What are the Stack Operations

What is a Queue
A datastructure that opperates on a First in First out Bais
What are the Queue Operations

What is a Linked List
What are the Two types of Tree Traverses
What is a Depth first Traversal
What is a Breadth first Traversal
Describe the pseudocode for a Queue Enqueue
if(isFull() = True then
Print “The queue is full”
Else
rear = (rear+1) % maxSize
arrQueue[rear] = newValue
size = size + 1
Endif
End function
Describe the pseudocode for a Queue Dequeue
int item
if(isEmpty()) then
Print “The queue is empty”
Else
item = arrQueue[front]
front = (front+1) % maxSize
size = size -1
Endif
End function