BIOS instructs the computer on how to preform basic functions such as booting and keyboard control. It is also used to identify and configure the hardware in a computer
Answer:
see explaination
Explanation:
void insertion( int e,int *x, int start, int end)
{
if (e >= x[end])
x[end+1] = e;
else if (start < end)
{
x[end+1] = x[end];
insertion(e, x, start, end-1);
}
else
{
x[end+1] = x[end];
x[end] = e;
}
}
void insertion_recurssion(int *b, int start, int end)
{
if(start < end)
{
insertion_sort_recur(b, start, end-1);
insertion(b[end], b, start, end-1);
}
}
void main()
{
insertion_recurssion(x,0,5);
}
Answer:
B
Explanation:
design and analyze electrical devices
Answer:
traversed
Explanation:
B-tree is a self balancing tree and it is a data structure which allows insertion, deletion operations.
inorder, preorder and post order, they all are traversing algorithms in the tree data structure.
inorder: first print left, then root and then right.
preorder: first print root, then left and then right.
postorder: first print left, then right and then root.
Therefore, the answer is traversed.