No, not really cuz I think that would be too personal for the president.
Answer:
There is Name resolution failure
Explanation:
This normally occurs when the computer can't access the host (your server). It can be caused by several factors, such as:
-Internet connectivity is down
-The client does not have DNS servers configured or is configured with the incorrect DNS server IP addresses.
-The DNS servers are failing.
Answer:
if ((b*b - 4*a*c)<0)
cout << "no real solutions";
return;
Explanation:
To check if "b squared" – 4ac is negative, we use the expression if ((b*b - 4*a*c)<0). This expression evaluates the 'bsquared' and substracts '4ac' from it. It then compares the resulting value with zero. if it is less than zero it means it is a negative number, so it executes the statement following cout << "no real solutions"; and returns