Answer:
A) Up to 15 characters in each.
Explanation:
Total characters he can use in each of these optional paths are up to 15 characters in each.
<span>C. The same speed as the crankshaft..... hope this helps!
</span>
He should find answers about the population size hope this helps
Function print array to print an array on one line as:
void printArray(int arr[], int n)
{
int i;
for (i = 0; i < n; i++)
printf("%d ", arr[i]);
printf("\n");
}
void bubbleSort(int arr[], int n)
{
int i, j;
for (i = 0; i < n-1; i++)
for (j = 0; j < n-i-1; j++)
if (arr[j] > arr[j+1])
swap(&arr[j], &arr[j+1]);
}
void main()
{
int arr[] = {9, 8, 7, 6, 5, 4, 3, 2, 1, 0};
int n = sizeof(arr)/sizeof(arr[0]);
printf("Given array is \n");
printArray(arr, n);
bubbleSort(arr, n);
printf("\nSorted array is \n");
What is array?
An array is a type of data structure used in computer science that contains a set of elements (values and variables), each of which is designated by an array index or key. The simplest type of data structure is indeed a linear array, also known as a one-dimensional array. For instance, an array of ten 32-bit (4-byte) arithmetic operations, to indices 0 through 9, may be stashed as ten words at memory addresses 2000,2004,2008,..., 2036 (in hexadecimal: 0x7D0, 0x7D4, 0x7D8,..., 0x7F4) so that the element with index
To learn more about array
brainly.com/question/24275089
#SPJ4
Answer:
1. Art director: selecting color palettes.
2. Web project manager: creating budget spreadsheets.
3. Usability lead: researching target audiences.
4. Developer: coding.
Explanation:
HTML is an acronym for hypertext markup language and it is a standard programming language which is used for designing, developing and creating web pages.
Generally, all HTML documents are divided into two (2) main parts; body and head. The head contains information such as version of HTML, title of a page, metadata, link to custom favicons and CSS etc. The body of the HTML document contains the contents or informations of a web page to be displayed.
The various role performed during the web development process (task) includes;
1. Art director: selecting color palettes. This individual is saddled with the responsibility of choosing the color that best fits a website.
2. Web project manager: creating budget spreadsheets. He or she is responsible for performing tasks such as creating a financial (budget) plan, start and finish date (timing), procurement, etc.
3. Usability lead: researching target audiences. This individual is saddled with the responsibility of surveying and collecting data from the demography for which the website is designed.
4. Developer: coding. This is the technical expert referred to as a web developer and is responsible for writing the set of instructions (codes) that enables the website to work properly and serve a purpose.