logo

Crowdly

Browser

Add to Chrome

Millised read väljastatakse ekraanile? public class KlassC {   public Klas...

✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.

Millised read väljastatakse ekraanile?

public class KlassC {

  public KlassC() {

      System.out.println("c");

  }

  public KlassC(boolean suur) {

      if (suur)

          System.out.println("C");

  }

}

public class KlassD extends KlassC {

  public KlassD(boolean suur) {

      if (suur)

          System.out.println("D");

  }

}

public class TestCD {

  public static void main(String[] args) {

      KlassD d = new KlassD(true);

  }

}

0%
0%
0%
More questions like this

Want instant access to all verified answers on moodle.ut.ee?

Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!

Browser

Add to Chrome