True or False: in the following code, the variable age is accessible where newAge is declared.
public class AgedJeroo
{
public void increase()
{
if (this.seesFlower(HERE))
{
int age = 0;
// ...
}
int newAge = age + 1;
}
}
There are no hints for this question