Linkiden Flashcards
What is an abstract class
An abstract class exists only so that other “concrete” classes can inherit from the abstract class
What happens when you use the build-in function any() on a list?
the any() function returns True if all item in the list evaluates to True. Other wise, it returns False.
what data structure does a binary tree degenerate to if it isn’t balanced properly?
Linked List
What statement about static methods is true?
Static methods server mostly as utility methods or helper methods, since they can’t access or modify a class’s state
What are attributes
Attributes are a way to hold data or describe a state for a class or instance of a class
What is the term to describe this code?
count, fruit, price = (2, 'apple', 3.5)
Tuple unpacking
What built-in list method would you use to remove items from a list?
“.pop()” method
what is one of the most common use of Python’s sys library
To capture command-line arguments given at a file’s runtime
what is the runtime of accessing a value in a dictionary by using its key?
O(1), also called constant time
What is the correct syntax for defining a class called Game
class Game: pass
what is the correct way to write a doctest
def sum(a, b):
“””
»_space;> sum(4,3)
7
>>> sum(-4,5) 1 """ return a + b
What built-in Python data type is commonly used to represent a stack
list
What would this expression return?
~~~
college_years = [‘Freshman’, ‘Sophomore’, ‘Junior’, ‘Senior’] return list(enumerate(college_years, 2019))
~~~
[(2019, ‘Freshman’), (2020, ‘Sophomore’), (2021, ‘Junior’), (2022, ‘Senior’)]
How doses defaultdict work
if you try to access a key in a dictionary that doesn’t exist, defaultdict will create a new key for you instead
What is the correct syntax for defining a class called “Game” ,if it inherits from a parent class called “LogicGame”?
class Game(LogicGame): pass
What is the purpose of the “self” keyword when defining or calling instance methods?
self refers to the instance whose method was called
Which is NOT a characteristic of Named tuples
No import is needed to use named tuples because they are available in the standard library
What is an instance Method?
Instance methods can modify the state of an instance or the state of its parent class.
Which choice is the most syntactically correct example of the conditional branching?
num_people = 5
if num_people > 10:
print(“There is a lot of people in the pool.”)
elif num_people > 4:
print(“There are some people in the pool.”)
elif num_people > 0:
print(“There are a few people in the pool.”)
else:
print(“There is no one in the pool.”)
Which statement does NOT describe the object-oriented programming concept of encapsulation?
It only allows the data to be changed by methods.
What is the purpose of an If/else statement
An if/else exectues one chunk of code if the condition is true, but a different chunk of code if the condition is false
what built-in Python data type is commonly used to represent a queue
list
What is the correct syntax for instantiating a new object of the type Game
my_game = Game()
what does the built-in map() function do?
it applies a function to each item in an iterable and returns the value of that function.
If you don’t explicitly return a value from a function, what happens?
If the return keyword is absent, the function will return None
What is the purpose of the pass statement in Python?
it is a null operation used mainly as a placeholder in functions, classes, etc
What is the term used to describe items that may be passed into a function
arguments
Which collection type is used to associate values with unique keys
dictionary
when does a for loop stop iterating
when it has assessed each item in the iterable it is working on or a break keyword is encountered
Assuming the node is in a singly linked list what is the runtime complexity of searching for a specific node within a singly linked list
The runtime is O(n) because in the worst case, the node you are searching for is the last node, and every node in teh linked list must be visited.
Given the following three list, how would you create a new list that matches the desired output printed below..
fruits = ['Apples', 'Oranges', 'Bananas'] quantities = [5, 3, 4] prices = [1.50, 2.25, 0.89]
Desired output
[(‘Apples’, 5, 1.50),
(‘Oranges’, 3, 2.25),
(‘Bananas’, 4, 0.89)]
i = 0 output = [] for fruit in fruits: temp_qty = quantities[i] temp_price = prices[i] output.append((fruit, temp_qty, temp_price)) i += 1 return output
What happens when you use the built-in function all() on a list
The all() function returns True if all items in the list evaluate to True Otherwise, it returns False
What is the correct syntax for calling an instance method on a class named Game?
> > > dice = Game()
|»_space;> dice.roll()
What is the algorithmic paradigm of quick sort?
divide and conquer
What is the runtime complexity of the list’s built-in .append() method?
O(1), also called constant time
What is the key difference between a set and a list?
A set is an unordered collection of unique items. A list is an ordered collection of non-unique items
What is the definition of abstraction as applied to object-oriented Python?
Abstraction means the implementation is hidden from the user, and only the relevant data or information is shown
What does this function print?
>>> def print_alpha_nums(abc_list, num_list): for char in abc_list: for num in num_list: print(char, num) return
print_alpha_nums([‘a’, ‘b’, ‘c’], [1, 2, 3])
a 1 a 2 a 3 b 1 b 2 b 3 c 1 c 2 c 3
What is the correct syntax for calling an instance method on a class named Game?
my_game = Game()
my_game.roll_dice()
Correct representation of doctest for function in Python
def sum(a, b): """ >>> a = 1 >>> b = 2 >>> sum(a, b) 3 """
return a + b
Suppose a Game class inherits from two parent classes: BoardGame and LogicGame. Which statement is true about the methods of an object instantiated from the Game class
An instance of the Game class will inherit whatever methods the BoardGame and LogicGame classes have
What does calling namedtuple on a collection type return
a tuple subclass with iterable named fields
What symbol(s) do you use to asses equality between two elements
==
Review the code below. What is the correct syntax for changing the price to 1.5
>>> fruit_info = { 'fruit': 'apple', 'count': 2, 'price': 3.5 }
fruit_info[‘price] = 1.5
What value would be returned by this check for equality?
5 != 6
True
What does a class’s init() method do?
The __init__ method is a constructor method that is called automatically whenever a new object is created from a class. It sets the initial state of a new object
What is meant by the phrase “space complexity”
The amount of space taken up in memory as a function of the input size
What is the correct syntax for creating a variable that is bound to a dictionary?
fruit_info = {‘fruit’: ‘apple’, ‘count’: 2, ‘price’: 3.5}
What is the proper way to write a list comprehension that represents all the keys in the dictionary?
»>
fruits = {‘Apples’: 5, ‘Oranges’: 3, ‘Bananas’: 4}
fruit_names = [x for x in fruits.keys()}
What is the algorithmic paradigm of quick sort?
divide and conquer
What is the purpose of the self keyword when defining or calling methods on an instance of an object
self refers to the instance whose method was called
What statement about a class method is true
A class method can modify the state of the class but they can’t directly modify the state of an instance that inherits from that class
What does it mean for a function to have linear runtime?
The amount of time it takes the function to complete grows linearly ass the input size increases
What is the proper way to define a function
def get_max_num(list_of_nums): #body of function goes here
according to the PEP 8 coding style guidelines, how should constant values be named in Python
in all caps with underscores separating words – e.g. MAX_VALUE = 255
Describe the functionality of a deque
A deque adds items at either or both ends, and remove items at either or both ends
What is the correct syntax for creating a variable that is bound to a set?
myset = {0, ‘apple’, 3.5}
What is the correct syntax for defining an __init__() method that takes no parameters
def \_\_init\_\_(self): pass
Which statement about the class methods is true
A class method can modify the state of the class but it cannot directly modify the state of an instance to hat inherits from that class
Which of the following is True about how numeric data would be organized in a binary Search tree
For any given Node in a binary Search Tree, the child node to the left is less that the value of the given node and the child node to its right is greater that the given node
Why would you use a decorator
You use the decorator to alter the functionality of a function without having to modify the functions code
When would you use a for loop?
When you need to check every element in an iterable of known length
What is the most self-descriptive way to define a function that calculates sales tax on a purchase?
def sales_tax(amount): '''Calculates the sales tax of a purchase. Takes in a float representing the subtotal as an argument and returns a float representing the sales tax.'''
What would happen if you did not alter the state of the element that an algorithm is operating on recursively
You would get a RuntimeError: maximum recursion depth exceeded.
What is the runtime complexity of searching for an item in a binary search tree?
the runtime for searching a binary search tree is generally O(h) where h is the height of the tree
Why would you use mixin
If you have many classes that all need to have the same functionality you’d use a mixin to define that functionality
What is the runtime complexity of adding an item to a stack and removing an item from a stack?
Add items to a stack in O(1) or constant and remove items from a stack on O(n) time or linear
What does calling namedtuple on a collection type return
a tuple subclass with iterable named fields
which statement accurately describes how items are added to and removed from a stack
a stack adds items to the top and removes items from the top
what is the base cases in a recursive function?
A base case is the condition that allows the algorithm to stop recursing. it is usually a problem that is small enough to solve directly