Which statements is false:

a. shared_ptrs provide the pointer operators dot(.), star(*) and arrow(->).
b. We get the reference count using the shared_ptr member function use_count, which returns the number of
shared_ptrs to the resource.
c. Changes made to the resource of a shared_ptr are “seen” by all shared_ptrs to that resource.
d. shared_ptr member function reset releases the current resource and sets the shared_ptr to NULL. If there are no
other shared_ptrs to the resource, it’s destroyed.


a. shared_ptrs provide the pointer operators dot(.), star(*) and arrow(->).

Computer Science & Information Technology

You might also like to view...

If an exception is thrown in a Catch handler, any code in the handler that follows the thrown exception will:

a) generate a syntax error b) generate a logic error c) never be executed d) run after the Finally block is done

Computer Science & Information Technology

When setting up your profile, you should NOT provide your personal information such as your address

Indicate whether the statement is true or false

Computer Science & Information Technology

Explain what loose coupling means.

What will be an ideal response?

Computer Science & Information Technology

C++ is in fact a "subset" of C, meaning that all of the C++ language is part of C.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology