Unnamed: 0
int64 1
5.86k
| Question
stringclasses 24
values | Sample ANS
stringclasses 24
values | Student ANS
stringlengths 1
1.06k
| Score
float64 0
2.5
|
---|---|---|---|---|
978 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | linear data structure are those which store data in a linear form and not in the form of levels examples include array, stack,queue,linked list | 2.5 |
979 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | linear data structure ,data structure where elements are arranged linearly or sequencially like array ,queue | 2.5 |
980 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | Linear Data Structure are the data structures that store data in the memory contiguously, i.e, data is stored one after another | 2.5 |
981 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | Linear data structure is a data structure that is represented in memory contiguously. For example, array is a linear data structure. Each element is represented in memory one after other. If one element is at 4000 then next element of array will be at 4001(in case of char array).\n\nNon linear data structure would be a linked list where different nodes are present at different location in memory and each one is linked using pointers to their memory addresses. | 2.5 |
982 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | Linear data structures are data structures used to store data in a 1-dimensional array. \nTraversing the total data structure will only take take O(n) time complexity.\nExamples : array,string | 2.5 |
983 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | linear data structure is one where data items are arranged in a linear fashion. each member is attached to its neighboring element. the structure allows single level data storage because the data elements are stored in linear fashion. | 2 |
985 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | Linear data structure is a 1 dimensional data structure like 1-D array link list | 1.5 |
986 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | Data structure where data elements are arranged linearly where each and every element is attached to its previous and next adjacent is called a linear data structure . | 2.5 |
987 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | linear data structure is basically the data structure in which the static memory is used to allocate space in the memory.\nex- arrays. linked list | 2.5 |
988 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | Data structures that use linear time complexity or we can say 0(n) this time complexity's to evaluate any algorithm . | 2.5 |
989 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | Linear data structure is the place which stores the data in a linear or single form. | 2.5 |
990 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | Linear data structure include arrays | 2.5 |
991 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | a data structure which stores value in a single order are called linear data structures .\nex: array. | 2.5 |
992 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | Storing data/values in consecutive manner for example Array, Linked List. | 2 |
993 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | Data structures that store the data in a linear format are called linear data structures\n\nExample: array, Linked List | 2 |
994 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | There are many data structures which stores the data in different manners or ways.\nLinear data structures, stores the data linearly in themselves. | 2.5 |
995 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | linear data structures are one dimention in space just like 1D array . | 2.5 |
996 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | Linear data structure is the data structure which uses 1 dimension such as list, 1-D array, stack, queue, | 2.5 |
997 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | A linear data structure is a data structure where all the individual elements are arranged in a linear order so traversal and many other operations become very simple. \nIn linear data structures like an array or linked list the elements are connected in a single order without any branches . Every other element is only connected to two other \nelements unlike graphs and trees. | 2.5 |
998 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | a linear data structure is one where the elements are arranged in a linear order. Examples of linear data structure- linked list | 2 |
999 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | Data Structures are basic unit to develop an algorithm.Data Structures which can be solved in linear time complexities are termed as Linear data structures. If the algorithm carries time and space complexity of O(n) it can be classifies under linear data structures. | 1.5 |
1,000 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | Linear data structures are those data structures which occupy space in memory in form of continuous blocks. Some examples of linear data structures can be array, stacks, queues, etc. | 2.5 |
1,001 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | liner data structure take O(n) space , such as array , linked list , stack and queue .where our most of the operations take linear time to give us solution. | 2.5 |
1,002 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | Arrays , Linked list, stacks , queues which have elements in one line are linear data structures. searching in them is done in O(n) time. | 2.5 |
1,003 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | A data structure that that has no child nodes(levels or heights) and can be stored in the form of a single 1-d array are called as linear data structures. For ex, linked lists, stacks, queues, arrays etc. | 2.5 |
1,004 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | A structure which has no child noes ( Height of the tree is 1), this can be stored in a 1-D array . Examples are linked lists and arrays | 2.5 |
1,005 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | linear data structure are those data structure which store data in only one direction that is either row wise or column wise. like array ,vector, linked list etc. here we can see the array, linked list store data one by each node of the linked list contain the address of the other and we do nt find two path (either left or right) while traversing from one node. | 2.5 |
1,006 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | A data structure that stores data linearly (adjacent to each other) in continuous memory location is known as linear data structure. | 1.5 |
1,007 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | linear data structure are structures in which the tasks are performed one by one linearly | 2.5 |
1,008 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | linear data structure involves simple data structure like sorting ,searching . | 2.5 |
1,009 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | linear data structure is a data structure which is in linear form in memory and can be traversed linearly in one - direction (parallel and anti-parallel).\nevery memory block is linked to only one memory block.\ncommon examples are array, linked list etc. | 2.5 |
1,010 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | In data structure tasks are performed linearly one by one. | 1 |
1,011 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | A linear data structure is a data structure which takes time complexity of O(n)\nFor ex: 1. 1-D Array\n 2. pointers\n 3. linked list | 2.5 |
1,012 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | Linear data structure is a data structure in which the elements are arranged linearly. All the elements can be traversed in one go. | 2.5 |
1,013 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | elements are in liner order in linear data structure like array. | 2.5 |
1,014 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | The data structures which can be traversed only at a 1 dimensional plane or they are 1 D in nature are know as Linear data structures .\nEg: 1-D array, Linear Linked List | 2.5 |
1,015 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | Liner Data Structure are the data structures which has only one link to the next element.\n1. array.\n2. linked list | 2.5 |
1,016 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | a linear data structure has only a single link to the next element like array, linked list,etc. | 2.5 |
1,017 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | A data structure in which the data is stored in a linear format such as an array or a linked list. | 2.5 |
1,018 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | Those data structure that has no ambiguity while accessing the next or previous element as they are arranged in a linear format , one after another. are called linear data structure. They have only one element succeeding or preceding them. | 2.5 |
1,019 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | linear data structure includes arrays, queues, string, linked list. In linear data structure you perform operations like merge sort, bubble sort, quick sort, etc | 2.5 |
1,020 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | Linear data structure is one that stores data linearly. \nE.g.: Array, Linked List. | 2.5 |
1,021 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | A data structure which store values linearly one by one as in an array,is known as linear data structure. | 1.5 |
1,022 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | Linear data structures are those that stores the data in linear form where a chain like memory is formed in and data are linked to each other in successive format. Example queue, linked list, etc. | 2.5 |
1,023 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | A linear data structure is such that that can be implemented using one\nEg: Array, Stack, Queue | 2.5 |
1,024 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | A linear data structure is a type of data structure that can be implemented in 1D.\nEx: Array, stack, queue, etc., | 2.5 |
1,025 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | a linear data structure is a data structure which stores data in 1-D such as arrays, stack, queue, etc. | 2.5 |
1,026 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | Linear data structure are those data structures which works on a single level. They do not form multiple levels. They store the data in 1-D such as queue, stack, etc. | 2.5 |
1,027 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | Linear data structure is defined as a type of data structure that stores data or information one after the other linearly. Ex :Arrays | 2.5 |
1,028 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | Data structure which stores data linearly is called linear data structure. | 2.5 |
1,029 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | Data structure where data elements are arranged sequentially or linearly where each and every element is attached to its previous and next adjacent is called a linear data structure.\n\n | 2.5 |
1,030 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | it is a data structure with linear data. | 2.5 |
1,031 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | Linear data structures are basic data structures which do not have children or branches. The elements are inserted in a sequence. Ex-> Array, Linked list, etc. | 2.5 |
1,032 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | Linear data structures are the data structures in which the data is stored in a linear 1-D format. In these data can be stored in only a unidirectional way. Eg. - array, vector. | 2.5 |
1,033 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | the data structure with only 1 hashing involved are known as linear data structure | 2 |
1,034 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | Linear data structure are those which occupies linear space in the memory. For example - Arrays, Linked List | 2.5 |
1,035 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | Linear data structures are data structure that go in only one direction. You don't have different paths from a particular point. Arrays, linked lists, vectors are linear data structures. Trees, graphs are non linear data structure | 2.5 |
1,036 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | Linear data structure refers to the approach to any solution within linear time complexity. Example: Linear search | 2.5 |
1,037 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | data is stored linearly | 2.5 |
1,038 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | A linear data structure is where data is stored linearly with the neighbor element connected to each other | 2.5 |
1,039 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | data structure which have fixed size and we can update it that called linear data structure | 2.5 |
1,040 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | linear data structures are those where data is stored in a linear format. example linked list, stacks and queues | 2.5 |
1,041 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | A data structure that could be defined in which items are inserted or arranged in a linear order. Example- Array, linked list. | 2.5 |
1,042 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | Data structures that take the input value linearly and eject the values in the same way are linear data structures. Example of such data structures are as FIFO (first in first out), LIFO (last in first out) | 2.5 |
1,043 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | A linear data structure is a type of data structure which perform its operations linearly like insertion, deletion, updating and searching/ | 2.5 |
1,044 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | In the Linear data structure where data elements are arranged sequentially or linearly where each and every element is attached to its previous and next adjacent is called a linear data structure. In linear data structure, single level is involved. | 2.5 |
1,045 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | it is a data structure in which data is arranged linearly like array and linked list | 2.5 |
1,046 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | A linear data structure is one that stores data linearly in the memory. An array is an example of a linear data structure. | 2.5 |
1,047 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | Linear data structure are the type of data structures in which the elements are stored in sequential memory locations. One can traverse through all the elements knowing only the location of first element in the structure. For example: Arrays. | 2.5 |
1,048 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | data structure that stores data sequentially, after after another\nfor example: queue, vector, lists. etc | 2.5 |
1,049 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | Linear data structure : array | 1.5 |
1,050 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | A linear data structure is one where data items are arranged in a linear fashion. Each member is attached to its neighboring elements. The structure permits single-level data storage because the data elements are stored in a linear fashion. The data can be traversed in one run. \ncertain examples of linear data structure are-stacks, linked lists, queues etc. | 2.5 |
1,051 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | It is a data structure where elements are arranged sequentially or linearly.\nFor example arrays. | 2.5 |
1,052 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | Linear data structure is a data structure in which the elements or the required data are kept linearly for example:\nArrays, Queue, stack, vector etc. | 2.5 |
1,053 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | A linear data structure is a data structure that can only be traversed unidirectionally. Eg: Arrays, linked list, etc. | 2.5 |
1,054 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | a linear data structure is a one in which the data is allocated in such a way that we traverse the data in linear fashion like (one after the other) example in an array rather than jumping from one memory location to other. | 2.5 |
1,055 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | Data structure where data elements are arranged sequentially or linearly where each and every element is attached to its previous and next adjacent is called a linear data structure. Here can traverse all the elements in single run only. Linear data structures are easy to implement because computer memory is arranged in a linear way. Its examples are array, stack, queue, linked list, etc. | 2.5 |
1,056 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | data structures that store information one after the other in the memory.\neg: array, string | 2.5 |
1,057 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | in which each data are4 connected one after the other | 2.5 |
1,058 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | In a linear data structure, the elements are stored in a continuous memory space | 2.5 |
1,059 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | linear data structures like 1d array,stack,queue | 2.5 |
1,060 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | A linear data structure is one where data items are arranged in a linear way. Each member of the data structre is attached to its neighboring element. | 2.5 |
1,061 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | linear data structures:\narray\nlinked list\nstack\nqueue | 2.5 |
1,062 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | Linear data structure stores data in 1D manner.Example-array,vector,stack,queue | 2.5 |
1,063 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | a linear data structure is one that stores single type of data such as array | 2.5 |
1,064 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | Linear Data Structure has lesser time complexity | 1 |
1,065 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | linear data structure is arrangement of data where data is arranged in linear way. | 2 |
1,066 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | Linear data structure is arrangement of data where data items are arranged in a linear way. | 2 |
1,067 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | linear data structure is the structure in which node has only one child or one branch . You can go only in one direction. | 2 |
1,068 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | A linear data structure is a data structure having elements arranged in a linear fashion \nEg - Array | 2 |
1,069 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | Linear data structure are the data structure that performs operation in single dimension such as array , strings , stack , queue and etc. | 2.5 |
1,070 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | having elements arranged in linear fashion. | 2 |
1,071 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | Data structures that are linear in size like linked lists are called linear data structures | 2.5 |
1,072 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | The data structures in which the data is stored in a sequential order is a linear data structure. For example: arrays. | 2.5 |
1,073 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | linear as the name only suggest it is arranging something in the linear or the sequntial order \nso in linear data structure the data is arranged in the linear order | 2.5 |
1,074 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | The linear data structure includes:\n1-Stack\n2-Queue\n3-Lists | 2.5 |
1,075 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | all data items are connected in linear manner example array | 2.5 |
1,076 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | A linear data structure is the one in which we can iterate through the whole data without without coming back to an element which has already been iterated through. For example, an array, a singly linked list, a hash table. Here the length of the data structure is the number of hops or iterations it takes to reach from the starting element to the ending element. | 2 |
1,077 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | like arrays, linked list, that data structure that can be useful linearly in both its work and while iterating | 2 |
1,078 | What is linear data structure? | A linear data-structure has sequentially arranged data items. The next time can be located in the next memory address. It is stored and accessed in a sequential manner. Array and list are example of linear data structure. | Linear Data Structure are Data Structure which have continuous memory for storage\nfor eg. array , linked list etc.. | 1 |