Answer:
import java.util.Scanner;
public class Main
{
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
System.out.println("Enter the number of bottles and cans:");
int numberOfbottles = in.nextInt();
int numberOfcans = in.nextInt();
System.out.printf("Bottles: %8d\n", numberOfbottles);
System.out.printf("Cans: %8d\n", numberOfcans);
}
}
Explanation:
Ask user to input the number of bottles and cans using Scanner class
Print the results so that the numbers to the right line up (Since we know that the numbers have at most 8 digits, we can use %8d in printf. Also, be aware that how printf statements are written so that the numbers line up)
False, the storage is being accessed from the cloud which can only be accessed through an internet connection.
Answer:
The overall speedup gained by incorporating the enhancement is 1.563
Explanation:
Using Amdahl's Law;
The overall speedup 
where;
P = Fraction Enhanced for Old Processor
n = speedup enhancement as a result of the new processor
P = 40% = 0.40 and n = 10
∴
The overall speedup (N) is:



= 1.563
Thus, the overall speedup gained by incorporating the enhancement is 1.563
Answer:
Option C, The metric scale
Explanation:
The metric scale is used to draft manual metric draft drawings. The metric scale is generally represented as 1:100
Architect scale is used for interior and exterior dimensions of structures and buildings
Engineer's scale is used for detail drawings of structures referred to as working plans
Hence, option C is correct