Difference between revisions of "2022 Paper 1 Revision Quiz"
(→Queues) |
(→Stacks) |
||
Line 143: | Line 143: | ||
- First in First Out. | - First in First Out. | ||
||Incorrect | ||Incorrect | ||
+ | |||
+ | {A stack is ? | ||
+ | |type="()"} | ||
+ | - The location to store the next item | ||
+ | ||Incorrect | ||
+ | + Top of the stack. | ||
+ | ||Correct | ||
+ | - Bottom of the stack. | ||
+ | ||Incorrect | ||
+ | |||
+ | {To add an item to the stack you? | ||
+ | |type="()"} | ||
+ | - Pop. | ||
+ | ||Incorrect | ||
+ | + Push. | ||
+ | ||Correct | ||
+ | - Peek. | ||
+ | ||Incorrect | ||
+ | |||
+ | {To remove an item from the stack you? | ||
+ | |type="()"} | ||
+ | + Pop. | ||
+ | ||Correct | ||
+ | - Push. | ||
+ | ||Incorrect | ||
+ | - Peek. | ||
+ | ||Incorrect | ||
+ | |||
+ | {To look at the top of the stack without removing it you? | ||
+ | |type="()"} | ||
+ | - Pop. | ||
+ | ||Incorrect | ||
+ | - Push. | ||
+ | ||Incorrect | ||
+ | + Peek. | ||
+ | ||Correct | ||
</quiz> | </quiz> | ||
Revision as of 10:43, 2 June 2022
Contents
Recursion
Arrays
Abstract Data Types & Dynamic vs Static
Queues
Stacks
Graphs
Trees
Graph Traversal
Searching Algorithms
Sorting Algorithms
Optimisation Algorithms
Order of Complexity