Consider the following class for a Ninja:

            public class Ninja {
              private int honor;
              public Ninja(int h) {
               this.honor=h;
              }
            }
            

Suppose we instantiate two Ninjas like this:

              Ninja n1=new Ninja(50);
              Ninja n2=new Ninja(50);
            

Is the following statement True, False, or It Depends: 1 == n2

false
  • true
  • it depends

There are no hints for this question