Array
Linked List
Graphs
Data types
Rules
100

How do arrays deal with memory?

Fixed memory size

100

What is the difference between a linked list and a doubly linked list?

Doubly linked list have a previous, allows for reverse traversal

100

What connects the nodes in a graph?

Edges

100

What are structs ideal for?

Smaller data structures

100

What is the more common form of Data Transfer Objects?

Bean

200

In a stack, what is the order in which elements are removed/inserted?

First In, Last out. FILO.

200

Each node in a linked list contains two fields, what are they?

Value and Next
200

Which Graphing neural network tasks is commonly used in social networks?

Link Prediction

200
What are classes stored in?

Heap memory

200

Which coding method makes its harder to add new functions without changing the existing data structures?

OO(Object Orientated)

300

What is the time complexity of searching through a stack?

O(n)

300

How do you reduce the chances of a collision in a hash map?

Increasing the size of the map

300

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.

300

What object is only found in C++ or C#?

Struct

300

What does Data Abstraction simplify?

Updating changes to the code

M
e
n
u