Ch. 9 random Flashcards

1
Q

Unit Testing

A

Individual component/module of system tested in isolation to verify correctness. Can be done with a piece of code that passes arguments to function to be tested. Calculates value expected value and compares it to the actual value. Checks whether they are equal and records result

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Unit

A

Smallest component of a program that can be tested

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Benefits of unit testing

A

-fast
-identifies bugs easily
-makes it easy for members to check each others code
-provides documentation
-provides confidence that code works as intended

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Recursion

A

breaking problem down into subsets of problem.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Recursive function

A

function that calls itself. Passes a subset of the function as an argument. Breaks down into smaller subsets of itself until a stopping point is reached: a base case. e.g. factorial

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

parts of recursive function

A
  1. define recursive function
  2. define base case
  3. specify value to be returned when base case is reached
  4. specifying operation to be done with each returned value
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Searching algorithms

A

-Linear Search
-Binary Search

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Linear search

A

Iterates through each item in a list and compares each one to a key until this key is found

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

what is the final print of this code:
for i in range(6):
print(i)

A

5

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Binary Search

A

requires list to be sorted. Selects middle value and if the key isn’t the value it checks if it’s higher or lower. It then searches the corresponding half of the list in the same manner by selecting the middle card. This repeats until the key is found or determined to not be present. [Like quicksort but for searching instead of sorting]
-floor divides the half interval so goes to lower value if the half interval is in between two values

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Selection Sort

A

Passes across every item in list from left to right and element being passed over is current element. The algorithm compares current with next element and if it is smaller, they swap.
Finds smallest item in a list and places it in first position. The next smallest item is then found and placed in second position. This repeats for all items in the list

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Insertion Sort

A

First item is considered sorted all elements to right considered unsorted. Passes across each element in list starting from second element and inserts them into sorted list at the correct position.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Bubble Sort

A

Passes through list and compares each pair of adjacent items at a time and swaps their positions if item on right is smaller. Continues through list for each pair. List may not be sorted after one pass so more passes are done on the list until it is fully sorted.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Quick Sort

A

Assigns an item in the list to be the pivot value. All other items in the list are sorted into sublists as either above or below this value. These two sublists get their own pivot values and the cycle repeats until there is only one item in every sublist. The list is now sorted. Can be implemented recursively.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Benefits of recursion

A
  1. clearer more readable code since it usually uses less lines. Coding quicksort iteratively would require manually making recursion
  2. Alignment with problem structure. Algorithms like quicksort involve dividing a problem into smaller parts so recursion is a natural fit.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Binary Search worst case time complexity

A

O(log2(n))

17
Q

Binary Search best case time complexity

18
Q

Linear Search best case time complexity

19
Q

Linear Search worst case time complexity

20
Q

O(1) meaning

A

the time taken to complete a task remains constant regardless of input size

21
Q

purpose of return statement

A

to end function and to pass result of a function back to the calling code

22
Q

Disadvantages of recursion

A
  1. Slower execution time due to memory overheads
  2. If recursion is too deep, there is danger of running out of space on the stack and the program crashing
23
Q

XOR Gate

A

Exclusive Or Gate that only outputs 1 if only one of its two inputs is 1 but not both. Created by passing A and B to both an OR Gate and a NAND Gate which are then passed on to an AND Gate.

24
Q

Hardware

A

physical components of a computer system.
Examples processor, memory, storage devices, any input or output device, peripherals, registers, logic gates

25
Q

Software

A

general term used to describe programs/instructions that are executed by the processor.
e.g. Microsoft Word, Microsoft Teams, Spotify