Depends on the size of the image
Hope this is helpful
Answer:
#include <iostream>
using namespace std;
int main()
{
float radius = 5.4;
float circumference = 2 * 3.14 * radius;
float area = 3.14 * radius * radius;
cout<<"the circumference of the circle is "<<circumference<<endl;
cout<<"the area of the circle is "<<area<<endl;
return 0;
}
Explanation:
Include the library iostream for using the input/output instructions.
create the main function and define the variable with value. Then,
use the formula to calculate the circumference and are of circle.


here, choose 
after that, display the result.
Note: All variable define in float type.
Answer:
In this case, Riko and hina made the correct steps.
Explanation:
Rin y Sakura made a wrong step because the range A14 to A25 already exist, and they have selected the option Define name, with this option we can make a new range with a new name.
Riko and Hina have selected the option name manager, with this option we can select the range A14 to A25 with the name "Goals", and to expand it to the new range A14 to A45.
Answer:
What is primary storage?
A primary storage device is a medium that holds a memory for short periods of time while a computer is running. Although it has a much lower access time and faster performance, it is also about two orders of magnitude more costly than secondary storage.
A primary storage device may also be referred to as internal memory, main memory, main storage, and primary memory.
Why is primary storage important?
Primary storage provides fast access to the CPU, which allows active programs to deliver optimal performance to the end-user. Speed and usefulness aside, the fact that the loss of power means the loss of data makes RAM a short-term storage solution. In fact, it’s lack of long-term viability is the reason it makes sense to save your progress when working in one program or another.