The right answer is A<span>.Active cell </span>
Answer:
Create an answer file named config.xml. Place the file on a USB flash drive and run setup.exe.
Create an answer file named automated.exe. Place the file on a USB flash drive and run
Answer:
1111111111101111
Explanation:
The binary representation of 17 is 0000000000010001.
In order to get the binary representation of -17 we need to calculate the 2's complement of 0000000000010001.
Step 1 : 1s complement of 0000000000010001 = 1111111111101110
Step 2 : 2s complement => 1111111111101110 + 1 = 1111111111101111
This actually corresponds to the negative of the original number which was 17.
So the 2s complement representation of -17 is 1111111111101111 .
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!