Difference between revisions of "2022 Paper 1 Revision Quiz"
(→Arrays) |
|||
Line 99: | Line 99: | ||
=Arrays= | =Arrays= | ||
+ | <quiz display=simple> | ||
+ | {In Recursion, the part of the code which runs itself is called? | ||
+ | |type="()"} | ||
+ | + General Case. | ||
+ | ||Correct | ||
+ | - Base Case. | ||
+ | ||Incorrect | ||
+ | - Repeating Case. | ||
+ | ||Incorrect | ||
+ | - Recursive Case. | ||
+ | ||Incorrect | ||
+ | </quiz> | ||
+ | |||
+ | =Abstract Data Types & Dynamic vs Static= | ||
+ | <quiz display=simple> | ||
+ | {In Recursion, the part of the code which runs itself is called? | ||
+ | |type="()"} | ||
+ | + General Case. | ||
+ | ||Correct | ||
+ | - Base Case. | ||
+ | ||Incorrect | ||
+ | - Repeating Case. | ||
+ | ||Incorrect | ||
+ | - Recursive Case. | ||
+ | ||Incorrect | ||
+ | </quiz> | ||
+ | =Queues= | ||
+ | <quiz display=simple> | ||
+ | {In Recursion, the part of the code which runs itself is called? | ||
+ | |type="()"} | ||
+ | + General Case. | ||
+ | ||Correct | ||
+ | - Base Case. | ||
+ | ||Incorrect | ||
+ | - Repeating Case. | ||
+ | ||Incorrect | ||
+ | - Recursive Case. | ||
+ | ||Incorrect | ||
+ | </quiz> | ||
+ | |||
+ | =Stacks= | ||
+ | <quiz display=simple> | ||
+ | {In Recursion, the part of the code which runs itself is called? | ||
+ | |type="()"} | ||
+ | + General Case. | ||
+ | ||Correct | ||
+ | - Base Case. | ||
+ | ||Incorrect | ||
+ | - Repeating Case. | ||
+ | ||Incorrect | ||
+ | - Recursive Case. | ||
+ | ||Incorrect | ||
+ | </quiz> | ||
+ | |||
+ | =Graphs= | ||
+ | <quiz display=simple> | ||
+ | {In Recursion, the part of the code which runs itself is called? | ||
+ | |type="()"} | ||
+ | + General Case. | ||
+ | ||Correct | ||
+ | - Base Case. | ||
+ | ||Incorrect | ||
+ | - Repeating Case. | ||
+ | ||Incorrect | ||
+ | - Recursive Case. | ||
+ | ||Incorrect | ||
+ | </quiz> | ||
+ | |||
+ | =Trees= | ||
+ | <quiz display=simple> | ||
+ | {In Recursion, the part of the code which runs itself is called? | ||
+ | |type="()"} | ||
+ | + General Case. | ||
+ | ||Correct | ||
+ | - Base Case. | ||
+ | ||Incorrect | ||
+ | - Repeating Case. | ||
+ | ||Incorrect | ||
+ | - Recursive Case. | ||
+ | ||Incorrect | ||
+ | </quiz> | ||
+ | |||
+ | =Graph Traversal= | ||
+ | <quiz display=simple> | ||
+ | {In Recursion, the part of the code which runs itself is called? | ||
+ | |type="()"} | ||
+ | + General Case. | ||
+ | ||Correct | ||
+ | - Base Case. | ||
+ | ||Incorrect | ||
+ | - Repeating Case. | ||
+ | ||Incorrect | ||
+ | - Recursive Case. | ||
+ | ||Incorrect | ||
+ | </quiz> | ||
+ | |||
+ | =Searching Algorithms= | ||
+ | <quiz display=simple> | ||
+ | {In Recursion, the part of the code which runs itself is called? | ||
+ | |type="()"} | ||
+ | + General Case. | ||
+ | ||Correct | ||
+ | - Base Case. | ||
+ | ||Incorrect | ||
+ | - Repeating Case. | ||
+ | ||Incorrect | ||
+ | - Recursive Case. | ||
+ | ||Incorrect | ||
+ | </quiz> | ||
+ | |||
+ | =Sorting Algorithms= | ||
+ | <quiz display=simple> | ||
+ | {In Recursion, the part of the code which runs itself is called? | ||
+ | |type="()"} | ||
+ | + General Case. | ||
+ | ||Correct | ||
+ | - Base Case. | ||
+ | ||Incorrect | ||
+ | - Repeating Case. | ||
+ | ||Incorrect | ||
+ | - Recursive Case. | ||
+ | ||Incorrect | ||
+ | </quiz> | ||
+ | |||
+ | =Optimisation Algorithms= | ||
+ | <quiz display=simple> | ||
+ | {In Recursion, the part of the code which runs itself is called? | ||
+ | |type="()"} | ||
+ | + General Case. | ||
+ | ||Correct | ||
+ | - Base Case. | ||
+ | ||Incorrect | ||
+ | - Repeating Case. | ||
+ | ||Incorrect | ||
+ | - Recursive Case. | ||
+ | ||Incorrect | ||
+ | </quiz> | ||
+ | |||
+ | =Order of Complexity= | ||
+ | <quiz display=simple> | ||
+ | {In Recursion, the part of the code which runs itself is called? | ||
+ | |type="()"} | ||
+ | + General Case. | ||
+ | ||Correct | ||
+ | - Base Case. | ||
+ | ||Incorrect | ||
+ | - Repeating Case. | ||
+ | ||Incorrect | ||
+ | - Recursive Case. | ||
+ | ||Incorrect | ||
+ | </quiz> | ||
+ | |||
+ | =Halting Problem= | ||
<quiz display=simple> | <quiz display=simple> | ||
{In Recursion, the part of the code which runs itself is called? | {In Recursion, the part of the code which runs itself is called? |
Revision as of 09:52, 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