CIW Exam Questions

Which of the following IDL fragments correctly defines a CORBA data structure that can be published

Which of the following IDL fragments correctly defines a CORBA data structure that can be
published to the naming service and accessed remotely?

A.
enum weekDay {monday, tuesday, Wednesday, thursday, friday};

B.
interface Contact
{
wstring name;
wstring plhoneNo;
};

C.
module MyModule {};

D.
struct Contact
{
string name;
string phoneNo;
};