The answer to your question would be option B- False
Answer:
The answer to your query is Yes and the details are in explanation section.
Explanation:
The general rule video is
- if you have 3 MB speed is enough for normal video.
- 5 MB for HD
- 25 MB for HDR or 4K
For the above it is clear that yes your connection is good enough for videos.
but it lack in HDR or 4K videos.
Answer:
The latest PCIe ×16 primary slot top near to CPU should be the answer to this question.
Answer:
Following are the program in c language
#include <stdio.h> // header file
int main() // main function
{
int runTimes[5]={800,775,790,805,808}; // declared the array
for (int k = 0; k < 3; k++) // itearting the loop
{
printf("\n%d",runTimes[k]); // display array
}
return 0;
}
Output:
800
775
790
Explanation:
Following are the description of program
- Declared a array "runTimes[5]" as the" int " type and store the five integer value in it .
- After that iterating the for loop from the 0 index to the less then 3 index .
- Inside the for loop we print the corresponding value that are stored in the particular index in the nextline .