CSC 250 - Data Structure - Quiz Sample Questions
CSC 250 - Data Structure - Quiz Sample Questions
Quiz
Sample Questions
2 Choose the statements needed for the declaration of a dynamically allocated array that
holds 500 characters.
C) top++; D) top++;
items[top] = newItem;
A) True B) False
3.3 IsFull function, will return true if and only if there is an empty space in the stack.
A) True B) False
3.4 The Push function, is called when a new item is to be added to the stack.
A) True B) False