Data Structure and Algorithms Crossword Puzzle
QUESTIONS LIST: data structure : a method of organizing and storing data for efficient access and modification, data : raw facts and figures that can be processed into meaningful information, classification : the process of categorizing data structures based on their organization, linear : data structure in which elements are arranged sequentially, non linear : data structure in which elements are organized hierarchically or as a network, primitive : basic built-in data type provided by a programming language, non primitive : data type derived from primitive types to store collections of data, integer : primitive data type used to store whole numbers, float : primitive data type used to store decimal values, character : primitive data type used to store a single letter, digit, or symbol, boolean : primitive data type that stores only true or false values, array : linear data structure that stores elements in contiguous memory locations, linked list : linear data structure in which nodes are connected through links, stack : linear data structure that follows the last in first out (lifo) principle, queue : linear data structure that follows the first in first out (fifo) principle, tree : non-linear data structure consisting of parent and child nodes, graph : non-linear data structure made up of vertices connected by edges.