Use a different calculator for your equation or put ,variable at end in variable u would put variable u put x y z or whatever variable u solve for
Answer:
I think it means that was the first question they had asked in that particular subject. eg: english/math.
Answer:
18
Explanation:
In First iteration y = 3 and condition is y<=14 i.e. 3<=14 means true and continue the loop and increment the value of y by 5, means y will become 8
In Second iteration y = 8 and condition is y<=14 i.e. 8<=14 means true and continue the loop and increment the value of y by 5, means y will become 13
In Third iteration y = 13 and condition is y<=14 i.e. 13<=14 means true and continue the loop and increment the value of y by 5, means y will become 18
In Fourth iteration y = 18 and condition is y<=14 i.e. 18<=14 means false and exit from the loop
So the value of y will be 18 after the loop
Answer:
public double max(double m, double n)
{
if (m>=n)
return m;
else
return n;
}
public int max(int m, int n)
{
if (m>=n)
return m;
else
return n;
}
public char max(char m, char n)
{
if (m>=n)
return m;
else
return n;
}
Explanation:
In each of the three methods declarations (Java) above, we are comparing two variables. m and n. The question did not specify what should happen when both variables are the same (i.e. m = =n). We make an assumption and set the condition to be if(m>=n) m should be returned as the greater.
Its like a fake message that people believe. for example say that jimmy went to a party. people might start making up things about what happened with him to make gossip. Rumors are not always true, and they are fake a lot of the time.