A、replaced
B、pasted
C、frightened
D、patched
第1题:
A.Has-arelationshipsshouldneverbeencapsulated.
B.Has-arelationshipsshouldbeimplementedusinginheritance.
C.Has-arelationshipscanbeimplementedusinginstancevariables.
D.Is-arelationshipscanbeimplementedusingtheextendskeyword.
E.Is-arelationshipscanbeimplementedusingtheimplementskeyword.
F.Anarrayoracollectioncanbeusedtoimplementaone-to-manyhas-arelationship.
G.TherelationshipbetweenMovieandActressisanexampleofanis-arelationship.
第2题:
第3题:
第4题:
You are signing on a deck officer,who will be designated as one of the GMDSS operators,before sailing foreign.Which statement is TRUE ________.
A.He/she must have an STCW certificate endorsed as“Valid for Service on Vessels Operating in the GMDSS System”
B.He/she must present either an FCC-issued license or a Coast Guard-issued license
C.You must consult the“List of Qualifications”on the reverse of his/her FCC-issued license
D.His/her Merchant Mariners Document must have an added endorsement as “Radio Electronics Officer”
第5题:
第6题:
已知基类Employee只有一个构造函数,其定义如下: Employee::Employee(int n):id(n){ } Manager是Employee的派生类,则下列对Manager的构造函数的定义中,正确的是?
A.Manager::Manager(int n):id(n){}
B.Manager::Manager(int n){id=n;}
C.Manager::Manager(int n):Employee(n){}
D.Manager::Manager(int n){Employee(n);}