Answer:
the ROM chip
Explanation:
the ROM chip is installed on the motherboard which helps boot the system
The len ( ) function will run with each iteration, printing the element number each time.
Communication doesn't necessarily mean you're communicating to a large audience. So that is false.
Answer:
Here is c program:
#include<stdio.h>
#include<conio.h>
void main()
{
//Variable declaration
//array to hold 6 values you can change this as needed
float nums[6];
//integer i is for loop variable
int i;
//to hold maximum value
float max=0.0;
//clear screen
clrscr();
//iterate 6 times you can change as per your need
for(i=0;i<6;i++)
{
printf("Enter a number:");
scanf("%f",&nums[i]);
//check if entered value is greater than previous value
//if it is greater then assign it
if(nums[i]>max)
max = nums[i];
}
//print the value
printf("The largest number entered was %f",max);
getch();
}
Explanation:
Answer:
D. by using different background colors for different sections
Explanation:
This can help people differentiate the different sections of your webpage.
Hope this helps!