Answer:
GUI stands for graphical user interface. The function of the GUI is almost like when your right click on your computer and click inspect and it pulls up your computers coding, and codes. That is what GUI basically is it shows a visual presentation of all available functions of a software. operating system like ( Windows 7, Windows XP) or program.
Explanation:
Hope this helped : )
The question is broad and vague, but I would say hardware.
Answer:
import java.util.Scanner;
public class ANot {
public static void main(String[] args) {
Scanner in = new Scanner (System.in);
System.out.println("How many cookies did you eat today");
int numOfCookies = in.nextInt();
double numCalories = (numOfCookies*300)/4;
System.out.println("The total number of calories you consumed in "+numOfCookies+" cookies is " +
" "+numCalories);
}
}
Explanation:
This code is implemented in Java.
- We know from the question that 4 cookies contain 300 calories
- Therefore number of calories consumed = (number of cookies eaten*300)/4
- To implement this in java we used the scanner class to prompt user for the input
- save the input to a variable and write mathematical expression for the number of calories consumed
- Then output the result
Answer:
The control unit and arithmetic logic unit are part of which hardware component IS CPU
CPU IS THE ANSWER
Explanation: