Which constructors can be inserted at (1) in MySub without causing a compiletime error? Select the one

Question:

Which constructors can be inserted at (1) in MySub without causing a compiletime error?

image text in transcribed

Select the one correct answer.

(a) MySub() {}

(b) MySub(int count) { this.count = count; }

(c) MySub(int count) { super(); this.count = count; }

(d) MySub(int count) { this.count = count; super(count); }

(e) MySub(int count) { this(count, count); }

(f) MySub(int count) { super(count); this(count, 0); }

Fantastic news! We've Found the answer you've been seeking!

Step by Step Answer:

Related Book For  book-img-for-question
Question Posted: