I would imagine car would still be the best means , it's tough to define without knowing where he lives and how much he travels
Explanation:
it can also be sent through flashdrive
The system partition must be marked active
A. marked active
<u>Explanation:</u>
To boot on bootmgr and load the operating system, first it should be formatted with fat32 or ntf32 and make it active the partition. Partition is made through windows disk manager from control panel or DISKPART tools which is available in operating system.
These tools are ready and handy which is available. When we make partition it will prompt for number GIGA BYTE OR MEGA BYTE size after end user input or select, next step to select disk format type such as FAT32 or NTFS.
Partition can be made at during installing operating system and made active (BOOTMGR).
Answer:
#include<stdio.h>
int GetLargest()
{
int a[100],n,largest;
printf("Enter number of elements\n");
scanf("%d",&n);
printf("Enter elements\n");
for(int i=0;i<n;i++)
scanf("%d",&a[i]);
i=0;
largest=a[i];
while(i<n)
{
i++
if(a[i]>largest)
largets=a[i];
}
return largest;
}
void main(){
int largest;
largest=GetLargest();
printf("Largest Number is %d",largest);
}
Explanation:
Here we define one function "GetLargest". This function reads n number of elements and finds the largest number among the n elements. Here we took one array and assumed first element is the largest element. if any element of the array is greater that that element we make that as larger and continues.at the end we are getting largest element in the n numbers and returning that to the main.
The answer that best answer this question is A