Cyber stalking is when someone stalks them on social media sites like facebook. They try to contact you or will even try to find you.
You're substracting one from the variable "exponent" with every iteration of the loop, and you told it to break out of the loop once "exponent" is 0, therefore, it's always going to end up as 0 at the end.
If you want to keep the input from the user, then declare another variable like "counter" and assign the value of "exponent" to it and use it for the loop
Or even better, do this for the loop:
for(int i = 0; i < exponent; i++)
{
//Code here
}
These students analyze each question, and eliminate each wrong answer they know are wrong. Even if they are unsure of the answer. They have a better chance of getting the answer right than the ones who dont.
The answer to this question would be algorithm animation.
Since the algorithm is animate, then you will be able to watch it works. Watching the algorithm executed can give you much information, what the algorithm does and how the algorithm does it.
Normally you will not be able to do this since the algorithm only do what it needs to do without reporting the detail to you