How do arrays deal with memory?
Fixed memory size
What is the difference between a linked list and a doubly linked list?
Doubly linked list have a previous, allows for reverse traversal
What connects the nodes in a graph?
Edges
What are structs ideal for?
Smaller data structures
What is the more common form of Data Transfer Objects?
Bean
In a stack, what is the order in which elements are removed/inserted?
First In, Last out. FILO.
Each node in a linked list contains two fields, what are they?
Which Graphing neural network tasks is commonly used in social networks?
Link Prediction
Heap memory
Which coding method makes its harder to add new functions without changing the existing data structures?
OO(Object Orientated)
What is the time complexity of searching through a stack?
O(n)
How do you reduce the chances of a collision in a hash map?
Increasing the size of the map
How does the Recurrent Graph Neural Network use the regularization technique to make it more efficient?
Minimizing needless complexity and exposing the network to more diverse data.
What object is only found in C++ or C#?
Struct
What does Data Abstraction simplify?
Updating changes to the code