Answer: Debug
Debugging is the process of finding bugs and fixing them.
Answer:
Characteristics of RAM or ROM memory
Explanation:
RAM (Random Access Memory).
• It is a read (R) and write (W) memory (R/W)
• Types of RAM - SDR SDRAM, RDRAM, DDR SDRAM. The difference is the speed in sending data.
• It is used for the operating system, programs and most of the software.
• Recommendations of at least 8 GB of RAM for PC and At least 2 GB of RAM for a mobile.
ROM (Read Only Memory)
• Store instructions and data permanently
• it's read only
• Type of non-volatile memory
• Save data and system information, settings and programs
• Types of ROM - Mask ROM, PROM, EPROM and EEPROM.
- A PC must have at least 256 GB.
Answer:
skin care personal care
Explanation:
just search up what line of business in l orea
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

Convert
0.625 to binary

Translate 0.625 into a fraction. We all know that 0.5 is ½. We know that the remainder, 0.125, is ⅛. Add them together, and you get ½ + ⅛ = ⅝.
Now, in binary, the positions to the right of the point are , which is ½, ¼, and ⅛ respectively.
⅝ is 5 × ⅛. 5 in binary is 101. So, ⅝ is
= 0.101