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

          n1==n2
          

False
  • True
  • It Depends

There are no hints for this question