Difference between revisions of "2022 Paper 1 Revision Quiz"
(→Graph Traversal) |
(→Arrays) |
||
Line 101: | Line 101: | ||
<quiz display=simple> | <quiz display=simple> | ||
+ | {An Array is a: | ||
+ | |type="()"} | ||
+ | -Abstract Data Structure | ||
+ | ||Incorrect | ||
+ | -Dynamic Data Structure | ||
+ | ||Incorrect | ||
+ | +Static Data Structure | ||
+ | ||Correct | ||
+ | -Strong Data Structure | ||
+ | ||Incorrect | ||
+ | |||
+ | {When considering arrays, which of the following are correct | ||
+ | |type="[]"} | ||
+ | +You must declare a size when creating the array | ||
+ | ||Correct | ||
+ | -You don't need to specify a size when creating an array | ||
+ | ||Incorrect | ||
+ | +The memory for the entire structure is allocated when it is created | ||
+ | ||Correct | ||
+ | -Only the initial memory is allocated when creating, the rest is allocated when we add items | ||
+ | ||Incorrect | ||
+ | |||
+ | {An array can be of any data type or class. | ||
+ | |type="()"} | ||
+ | +True | ||
+ | ||Correct | ||
+ | -False | ||
+ | ||Incorrect | ||
+ | |||
+ | {A 2D array can still only be of one data type or class. | ||
+ | |type="()"} | ||
+ | +True | ||
+ | ||Correct | ||
+ | -False | ||
+ | ||Incorrect | ||
</quiz> | </quiz> | ||
Revision as of 16:28, 3 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