Computational Constructs, Data Types and Structures Flashcards
1
Q
Recursive Algorithm
A
one which calls itself repeatedly until a solution is found
2
Q
Record
A
This allows you to create a user-defined structure about something.
3
Q
Array
A
A data structure used to hold multiple values . Each element has a unique index (or subscript)
4
Q
2D array
A
When declaring, we specify the number of rows and columns . Python treats this as a list within a list.