Answer:
c
Explanation:
assuming you are coding in python and have not install any calculation codes, the answer is most likely c
Answer:
it lets you hide the layer
Explanation:
maybe you should go and take some photopea lessons
I’m pretty sure the answer for 1 is B.
And the answer for 2 is True.
Program Area_Circle;
Uses Crt;
Const
Pi = 3.1416;
Var
Radius : Integer;
Area : Real;
Begin
Clrscr;
Writeln('Area of a Circle Solver');
Writeln;
Write('Enter the Radius of the Circle : ');
Readln(Radius);
Area := (Pi * Radius * Radius);
Writeln;
Writeln('The Area of the Circle is ' ,Area:8:2,'.');
Writeln;
Writeln('Program Executed');
Readln;
End.
Hope this helps!