NEW
Font size
WorksheetsAlgorithm
Total questions: 27
Worksheet time: 14mins
are the programmatic way of storing data so that data can
be used efficiently.
data structure
is a named location that can be used to store and
organize data.
database
data structure
variable
algorithm
is a collection of steps to solve a
particular problem.
is a collection of instructions to perform a specific
task.
database
program
computer program
is a step-by-step procedure, which defines a set of instructions
to be executed in a certain order to get the desired output.
Algorithm to search an item in a data structure.
search
Algorithm to sort items in a certain order.
Sort
delete
reverse
search
Algorithm to insert item in a data structure.
delete
insert
search
update
Algorithm to update an existing item in a data structure.
update
delete
sort
search
Algorithm to delete an existing item from a data structure.
insert
search
sort
delete
Definition should define a single concept.
traceable
atomic
accurate
clear and concise
Definition should be able to be mapped to some data element.
accurate
clear and concise
atomic
traceable
Definition should be unambiguous.
atomic
accurate
clear and concise
traceable
Definition should be understandable
accurate
clear and concise
traceable
atomic
represents an object having a data.
database
data object
data structure
algorithm
is a way to classify various types of data such as integer, string, etc. which
determines the values that can be used with the corresponding type of data, the type
of operations that can be performed on the corresponding type of data.
data object
data type
database
data structure
Those data types for which a language has built-in support are known as __________
data type
built-in data type
library data type
derived data type
Those data types which are implementation independent as they can be
implemented in one or the other way are known as
library data type
data type
built-in data type
derived data type
The data in the data structures are processed by certain operations. The particular data structure
chosen largely depends on the frequency of the operation that needs to be performed on the
data structure.
data structure
basic operations
database
data type
is a container which can hold a fix number of items and these items
should be of the same type.
Each item stored in an array is called an _________
Index
element
array
size
Each location of an element in an array has a numerical _____,
which is used to identify the element.
Index
element
array
variable
print all the array elements one by one.
deletion
traverse
insertion
search
Adds an element at the given index.
search
Insertion
traverse
update
Deletes an element at the given index
traverse
search
insertion
deletion
Searches an element using the given index or by the value
search
deletion
traverse
update
Updates an element at the given index.
deletion
update
insertion
traverse
