If you mean on the phone you can press the home button. if you mean on the computer you could press esc
Answer: Please see below as the answer is self-explanatory
Explanation:
Digital phones, normally uses a keyboard, with the digits 0-9, and special characters like # and *.
When the caller presses any keyboard, an electronic circuit within the phone generates two pure sinusoids, of frequencies within the vocal bandwidth (between 300 Hz and 3 khz, roughly), which identifies uniquely (as decoded by the receiving switch) which was the key pressed.
In this way, the switch reconstructs the phone number called, separating country code, area code and the local number as it receives the tones.
This system is called DTMF (dual tone multi frequency).
Answer:
if (age < 18) // check condition of variable age is less than 18
minors=minors+`1;
else if (age >=18 && age <=64) //check condition of variable age between 18 to 64
adults=adults+1;
else // check condition of variable age more than 65
seniors=seniors+1;
Explanation:
Here we checks the condition if the variable age is less than 18 then it increment the value of variable 'minors' by 1 i.e, minors=minors+`1;
.
if variable age is 18 through 64 then it increment the value of variable adults by 1 i.e,'adults'=adults+1; otherwise increment the value of variable 'seniors ' by 1 i.e seniors=seniors+1;
Answer:
192.168.0.0 / 255.255.255.192
Explanation:
Given:
As the network engineer, you are asked to design an IP subnet plan that calls for three subnets. The largest subnet needs a minimum of 52 hosts. Management requires that a single mask must be used throughout the Class C network.
Solution:
192.168.0.0 / 255.255.255.192 is a private IP network and mask that would meet the requirements.
Answer:
output:
10
13
Explanation:
should be, may be, probably is