CIW Exam Questions

Which IDL definition correctly defines the Child interface as a subinterface of Parent?

Which IDL definition correctly defines the Child interface as a subinterface of Parent?

A.
interface Parent {};
interface Child : Parent {};

B.
interface Parent {};
interface Child extends Parent {};

C.
interface Parent {};
interface Child :: Parent {};

D.
interface Parent {};
interface Child implements Parent {};