What is the output of the IC 7924?

What is the output of the IC 7924? Correct Answer -24V

The IC of series 78xx and 79xx are fixed voltage regulators, wherein the 78 represents those with a positive output and 79 is for those with a negative output. The xx value represents the magnitude of the output voltage being achieved. For proper operation, the input voltage should be at least 2V greater than the output voltage.

Related Questions

What is the output after compile and run the following code ? int Output = 10;
boolean b = false;
if((b == true) && ((Output += 10) == 20))
{
System.out.println("We are equal " + Output);
}
else
{
System.out.println("Not equal! " + Output);
}