Answer:
Answered below
Explanation:
//Program is written in Java programming //language
Class Box{
private double length;
private double width;
private double height;
Box(double len, double wid, double hgt){
length = len;
width = wid;
height = hgt;
}
public double volumeOfBox( ){
double volume = length * width * height;
return volume;
}
public double getLength( ){
return length;
}
public double getWidth( ){
return width;
}
public double getHeight( ){
return height;
}
}
Answer:
7200 RPM magnetic HDD
Explanation:
This gives her all the benefits of the above mentioned.
Inside the case are the components that make up the computer itself, such as the RAM memories, the processor and the hard disk, all of which are directly or indirectly connected to the motherboard. In addition, the case allocates the power suplly, which is responsible for supplying power to the computer.
<h3>What is a computer case?</h3>
The case is the hardware component used to house most parts of a computer. It is inside it that components such as CPU, motherboard, SSD, video card and power supply are placed.
In addition, it is where the outputs for connections to other equipment are found, such as USB and HDMI outputs, plug for sound box and microphone and input for memory card.
The case has the important function of protecting the internal components of a computer from knocks, heat, light, moisture and dust. That's because most of the electronic components inside a computer are very sensitive and need this protection.
It is also used to connect to other hardware components, such as a monitor, keyboard, mouse and headset, through the various outputs provided on its exterior.
See more about computing at: brainly.com/question/15707178
#SPJ1
A microprocessor can directly process machine code but most programmers almost never write in it.
C. Machine code
Answer:
e. 4
Explanation:
The code segment will not work as intended if the value of the variable val is 4. This is because the while loop is comparing the value of the variable val to the value of each element within the numList. Since there is no element that is bigger than or equal to the number 4, this means that if the variable val is given the value of 4 it will become an infinite loop. This would cause the program to crash and not work as intended.