From what my teacher taught us it would be c.
It depends on how much storage. I usually connect mine to another hard drive.
So so far i know that the answer is not B. But my guess would be D...... How long it takes the computer to perform!
Answer:
The output of the given code is 56.43
Explanation:
As the code is given in java language the following are the code
public class code
{
public static void main(String[] args)
{
double num = 56.4321;
System.out.print("%.2f", 56.4321);
}
}
The %f means that it print the floating point number and .2 means that it print the first two digit of the given number after the point .
so " %.2f "means that it print the value first 2 digit of floating point number after the point .
Therefore it print 56.43
The /root directory is the root user's home directory.