<span>C. Maintenance
is an important practice can help prevent hardware trouble. Maintenance involves operational and
functional checks, servicing, repairing or replacing if necessary. Maintenance has
two types which are </span>preventive
or scheduled maintenance and corrective maintenance. Inspecting, maintaining
and protecting a device, equipment or facilities before breaking down or other
problems occur it is called preventive while corrective is when it is repaired
or replaced after wear, malfunction or break down.
Answer:
#include<iostream>
#include<string>
int main()
{
double weight;
double weightInPounds;
cout<<"Enter Weight of person in kilograms\n";
cin>>weight;
weightInPounds = weight * 2.2;
cout<<"Your weight in Pounds is : "<<weightInPounds<<endl;
return 0;
}
Answer:
Yes
Explanation:
Yes, something approximating a hierarchical file system be simulated. This is done by assigning to each file name the name of the directory it is located in.
For example if the directory is UserStudentsLindaPublic, the name of the file can be UserStudentsLindaPublicFileY.
Also the file name can be assigned to look like the file path in the hierarchical file system. Example is /user/document/filename
Answer:
Plastic container
Explanation:
because if we use iron it may rust and oil may also damage
Answer:
Lowest Level; Machine Language.
Explanation:
The lowest level of a computer is machine language, which are strings of 0's and 1's in bits, and it's possible to perform tasks at this level. It's however difficult to do and humans created <em>Assembly</em>; a type of low level programming language to be readable, and converts to machine language so that we don't have to work in binary.