The initial response when the output is not equal to input is called

The initial response when the output is not equal to input is called Correct Answer Transient response

Transient response in the response at any time instant other than final response and this response is at any instant which is mainly dependent on the maximum peak overshoot and settling time.

Related Questions

What is the output after compile and run the following code ? int Output = 10;
boolean b = false;
if((b == true) && ((Output += 10) == 20))
{
System.out.println("We are equal " + Output);
}
else
{
System.out.println("Not equal! " + Output);
}