Answer:
A fossil is any preserved remains, impression, or trace of any once-living thing from a past geological age. Examples include bones, shells, exoskeletons, stone imprints of animals or microbes, objects preserved in amber, hair, petrified wood, oil, coal, and DNA remnants
Explanation:
thanks
Answer:
Speaker, Keyboard, Monitor, Mouse
Explanation:
A peripheral device is used to put input into (or receive output from) a computer. Parts of a computer wouldn't be considered peripheral.
Answer:
void print2(int row) {
for (int i = 0; i < row; i++) {
char ch = 'a';
char print = ch;
for (int j = 0; j <= i; j++) {
cout << print++;
}
cout << endl;
}
}
int count_digits(int num) {
int count = 0;
int temp = num;
while (temp != 0) {
temp = temp / 10;
count++;
}
return (num % count);
}
Explanation:
MAC addresses are part of the header that's put on the packet.