Question.6
A firmware system has these relationships:
class System { std::unique_ptr<UART> uart; // A Sensor sensor; // B I2C_Bus& bus; // C };
Match each member to its ownership type:
Select Answer
A=Owner (unique_ptr), B=Owner (member), C=Observer (reference)
A
unique_ptr
B
C
A=Observer, B=Owner, C=Owner
A=Shared owner, B=Observer, C=Owner
All three are owners