Answer:
C++ Program .
#include<bits/stdc++.h>
using namespace std;
int main()
{
int x,y;//declaring two variables x and y.
string s;//declaring string s..
cout<<"enter x and y"<<endl;
cin>>x>>y;//taking input of x and y..
if(x>=0 &&y>=0) //condition for 1st quadrant..
cout<<"the point lies in 1st Quadrant"<<endl;
else if(x<=0 &&y>=0)//condition for 2nd quadrant..
cout<<"the point lies in 2nd Quadrant"<<endl;
else if(x>=0 &&y<=0)//condition for 3rd quadrant..
cout<<"the point lies in 3rd Quadrant"<<endl;
else //else it is in 4th quadrant..
cout<<"the point lies in 4th Quadrant"<<endl;
cout<<"enter n to terminate the program"<<endl;
while(cin>>s)//if the user has not entered n the program will not terminate..
{
if(s=="n")
{
cout<<"the program is terminated"<<endl;
exit(0);
}
cout<<"you have not entered n please enter n to terminate the program<<endl;
}
}
Explanation:
The above written program is for telling the point lies in which quadrant.I am first declaring two variables x and y.Then after that taking input of x and y after that checking in which quadrant the point lies.
Taking input of the string s declared earlier for program termination the program will keep running until the user enters n.
Sleep mode (or suspend to RAM) is a low power mode for electronic devices such as computers, televisions, and remote controlled devices. These modes save significantly on electrical consumption compared to leaving a device fully on and, upon resume, allow the user to avoid having to reissue instructions or to wait for a machine to reboot. Many devices signify this power mode with a pulsed or red colored LED power light
Hibernation Edit
Main article: Hibernation (computing)
Hibernation, also called Suspend to Disk on Linux, saves all computer operational data on the fixed disk before turning the computer off completely. On switching the computer back on, the computer is restored to its state prior to hibernation, with all programs and files open, and unsaved data intact. In contrast with standby mode, hibernation mode saves the computer's state on the hard disk, which requires no power to maintain, whereas standby mode saves the computer's state in RAM, which requires a small amount of power to maintain.
Hybrid sleep Edit
Sleep mode and hibernation can be combined: the contents of RAM are first copied to non-volatile storage like for regular hibernation, but then, instead of powering down, the computer enters sleep mode. This approach combines the benefits of sleep mode and hibernation: The machine can resume instantaneously, but it can also be powered down completely (e.g. due to loss of power) without loss of data, because it is already effectively in a state of hibernation. This mode is called "hybrid sleep" in Microsoft Windows other than Windows XP.
A hybrid mode is supported by some portable Apple Macintosh computers,[1] compatible hardware running Microsoft Windows Vista or newer, as well as Linux distributions running kernel 3.6 or newer.
ACPI Edit
ACPI (Advanced Configuration and Power Interface) is the current standard for power management, superseding APM (Advanced Power Management) and providing the backbone for sleep and hibernation on modern computers. Sleep mode corresponds to ACPI mode S3. When a non-ACPI device is plugged in, Windows will sometimes disable stand-by functionality for the whole operating system. Without ACPI functionality, as seen on older hardware, sleep mode is usually restricted to turning off the monitor and spinning down the hard drive.
Answer: Opportunity for Improvement
Explanation:
Any healthcare organization, service, or process that does not reach the established standard or the customer's expectations, is an opportunity for improvement. Furthermore, the Improving Medicare Post-Acute Care Transformation Act (IMPACT) established a quality reporting program aimed to find those opportunities for improvement. Once the problem has been established, is prudent to place an action plan to achieve the desired performance improvement aim.
Answer:
over heating
Explanation:
in computers dust acts as a blanket which traps heat, excessive heat causes components to burn up and short out