character: List
topic: A collection of elements that can be ordered and accessed by their index. Example: [1, 2, 3, 4]
grade: 8
subject: Computer Science
LearnActions
SearchCreate
character: Stack
topic: A Last-In-First-Out (LIFO) data structure. Example: A stack of plates where you can only add/remove the top plate.
grade: 8
subject: Computer Science
LearnActions
SearchCreate
character: Queue
topic: A First-In-First-Out (FIFO) data structure. Example: A line of people where the first person to arrive is the first to be served.
grade: 8
subject: Computer Science
LearnActions
SearchCreate
character: Dictionary
topic: A collection of key-value pairs. Example: {'name': 'Alice', 'age': 12}
grade: 8
subject: Computer Science
LearnActions
SearchCreate