CMP 201 - Data Structures and Algorithms Flashcards
1
Q
What does ADT stand for?
A
Abstract Data Type
2
Q
What is a collection in OOP?
A
A group of ADTs
3
Q
Define the term ‘Data Structure’
A
A way of organising information / multiple items of data in memory.
4
Q
Fill in the blanks:
An _ _ _ is the way in which collections work.
A
ADS
5
Q
Define an Algorithm
A
A series of operations that can be performed to solve a problem
(take some data as input, return some data as output)
6
Q
How is Algorithmic Performance measured?
A
Speed and Memory Usage
7
Q
What is a breakpoint?
A
A point in the code where the program will stop executing.
8
Q
A