<h2>
Answer:</h2>
10
<h2>
Explanation:</h2>
Specific gravity (also called relative density) is the ratio of the density of an object (or substance) to the density of a reference substance (mostly water). It has no unit and is given by the following;
Specific gravity = 
Specific gravity is also given by the ratio of the weight of the object in air to the loss of weight of the object in water. i.e
Specific gravity =
--------------(* * *)
In this case;
i. The object is the solid which has a weight of 20gf in air.
ii. The loss of weight of the solid in water is the difference between the weight in air (20gf) and the weight in water (18gf).
Therefore the loss of weight is
20gf - 18gf = 2gf
Now substitute these values from (i) and (ii) into equation (* * *) as follows;
Specific gravity = 
Specific gravity = 10
Therefore the specific gravity of the solid is 10
Answer:
El formato condicional es una herramienta útil para identificar patrones o tendencias en una hoja de cálculo. Por ejemplo, una regla podría ser: si el valor es mayor que 5.000, que la celda sea amarilla. Así, podrás ver de un vistazo las celdas cuyo valor es superior a 5.000. Puedes usarlo para describir graficas cientificas o Datos matematicos.
Explanation:
El formato condicional facilita el proceso de resaltar celdas o rangos de celdas interesantes, destacar valores inusuales y ver datos empleando barras de datos, escalas de colores y conjuntos de iconos que se correspondan con las variaciones específicas de los datos.
If you print the binary digits just like that, they'll be in the wrong order (lsb to msb). Below program uses recursion to print the digits msb to lsb. Just for fun.
void printBits(unsigned int n)
{
if (n > 1) {
printBits(n >> 1);
}
printf((n & 1) ? "1" : "0");
}
int main()
{
unsigned int number;
printf("Enter an integer number: ");
scanf_s("%d", &number);
printBits(number);
}
Answer:
The C++ code is given below with appropriate comments
Explanation:
//Remove this header file if not using visual studio.
#include "stdafx.h"
//Include the required header files.
#include <iostream>
//Use for maths function.
#include <cmath>
using namespace std;
//Define main function
int main()
{
// Define the variables
double targetValue = 0.3333;
double sensorReading = 0.0;
//Perform the opeartion.
sensorReading = 1.0 / 3.0;
// Get the absolute floating point value and
// Check up to 4 digits.
if (fabs(sensorReading - targetValue) < 1E-4)
{
//Print equal if the values are close enough.
cout << "Equal" << endl;
}
else
{
//Print not equal if the values are not
//close enough.
cout << "Not equal" << endl;
}
system("pause");
//Return the value 0.
return 0;
}
This is referred to as Random Access Memory (RAM), and is used when the computer needs to recall tasks quickly, as opposed to more slowly when it uses the hard drive.