Answer:
1 no. ans
none of above
this ans is not 100% correct but also it help may help you
The report footer section appears at the bottom of the last page. The correct option is b.
<h3>What is a report footer section?</h3>
The report footer is that contain the report items. It is placed in the last page or the bottom of the report border. It is present only one time exactly at the last page.
Thus, the correct option is b, at the bottom of the last page.
Learn more about report footer section
brainly.com/question/13261774
#SPJ1
Answer:
The bleed is the part on the side of a document that gives the printer a small amount of space to account for movement of the paper, and design inconsistencies. Artwork and background colors often extend into the bleed area. After trimming, the bleed ensures that no unprinted edges occur in the final trimmed document.
Explanation:
<u>C++ program - Insertion sort</u>
<u></u>
#include <bits/stdc++.h>
using namespace std;
/* Defining function for sorting numbers*/
void insertionSort(int array[], int n)
{
int i, k, a;
for(i=1;i<n;i++)
{
k=array[i];
a=i-1;
while(a>=0 && array[a] > k) // moving elements of array[0 to i-1] are greater than k, to one position //
{
array[a+1] = array[a];
a =a-1;
}
array[a+1] =k;
}
}
/* Driver function */
int main()
{
int array[] = { 12,56,76,43,21};
//input integers
int n = sizeof(array) / sizeof(array[0]);
//finding size of array
insertionSort(array, n);
//Calling function
for (int i = 0; i < n; i++)
//printing sorted array
cout << array[i] << " ";
cout << endl;
return 0;
}