<span>When a computer is booted the checks the computer's components. No, </span>power-on self test (POST) checks the computers components. The OS will check for the OS errors and attached device functionality like printers/scanners/camera, availability of the network, mapped drives, etc.
Answer:
1940 – 1956: First Generation
1956 – 1963: Second Generation
1964 – 1971: Third Generation
1972 – 2010: Fourth Generation
2010- : (Present )Fifth Generation
Explanation:
- First Generation Computers (1940-1956):In this Generation the main component of computers were Vacuum Tubes.
- Second Generation Computers (1956-1963):In this generation the main component of computers were Transistors.
- Third Generation Computers (1964-1971):In this generation the main component of computers were Integrated Circuits.
- Fourth Generation Computers (1972-2010):In this generation the main component of computers were Microprocessor
- Fifth Generation (2010-Present):In this generation the main component of computers is Artificial Intelligence
Stealing someone else’s identity or identification
Answer:
#include <stdio.h>
void spaces(int n) {
for(int i=0; i<n; i++) {
putchar(' ');
}
}
void numbersdown(int n) {
for(int i=n; i>1; i--) {
putchar('0'+i);
}
}
void numbersup(int n) {
for(int i=1; i<=n; i++) {
putchar('0'+i);
}
putchar('\n');
}
int main(void) {
int number;
printf("Please enter a digit: ");
scanf("%d", &number);
for(int i=number; i>0; i--)
{
spaces(number-i);
numbersdown(i);
numbersup(i);
}
}
Explanation:
I deliberately separated the solution into different functions for readability. If needed, the code could be made much more compact.