Respuesta :

private boolean issenior( int age )
{
  return( ( age >= 65 ) ? true : false; )
  // I enjoy the ternary operator!
}