Answer:
c) Starting with the biggest function and then moving to smaller ones
Explanation:
This design is a breakdown of a structure to determine the text functionality for small parts. The system analyzes the built-in top-down style, which defines and does not define some first-level components, often referred to as an unstable layout.
so correct answer is c) Starting with the biggest function and then moving to smaller ones
Netflow and IDS (intrusion detection system) are the two tools used for incident detection can be used to detect anomalous behavior, to detect command and control traffic, and to detect infected hosts.
The Netflow is CISCO feature used for collecting IP traffic information and monitoring network traffic on a specific interface. Similar to this, IDS is an a<span>pplication that monitors a network or systems for malicious activity or policy violations.</span>
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:
INPUT "What is the amount of rupees you want converted into paisa"; rupees
paisa = rupees*100
PRINT paisa
Explanation:
done in QBASIC
the semicolon in the 1st line makes the question have a ? at the end. the rupees key word in the 1st line saves the input as a variable
then the second line multiplies by 100 since there are 100 paisa in 1 rupee