Answer do you still need the answer or am i to late lol?
Explanation:
My best guess is the last option (D) tools. Hope it helps
Answer:
In Java:
public static int decimalToBinary(int decimal){
int binary = 0; // initial value
int currUnitPlace = 1; // working location
while(decimal > 0) {
// put remainder in current unit place
binary += currUnitPlace * (decimal%2);
decimal /= 2; // move to next bit
currUnitPlace *= 10; // move unit place
}
return binary;
}
The most common type of task performed by utility program is the file management. The utility program is a program created to help computer users in managing, optimizing, and configuring the computer. Every newly purchased computer has a file managing program to help users for setting the computer up for its personal use. Therefore, file managing is the most common utility program.
Answer:
Ada Lovelace was the first computer programmer