roxar.ndc2015
Test por , creado hace más de 1 año

Take the Quiz and enter the draw for a USB charger at the end of each day and finally an iPad Mini on Friday.

21
0
0
roxar.ndc2015
Creado por roxar.ndc2015 hace alrededor de 9 años
Cerrar

Roxar @NDC 2015

Pregunta 1 de 3

1

What is true about a Smart Pointers in C++?

Selecciona una o más de las siguientes respuestas posibles:

  • There's an implementation available as part of the C++ standard library

  • The objects they point to are automatically deleted by the garbage collector

  • They are used to help ensure that programs are free of memory and resource leaks and are exception-safe

  • It was invented by John Smart

Explicación

Pregunta 2 de 3

1

What is the order that objects in an array are destroyed in C++? MyClass objs[10];

Selecciona una de las siguientes respuestas posibles:

  • The order is undefined

  • Objects will be destroyed in the same order as they were created

  • The order of destruction is the reverse of the order of construction

Explicación

Pregunta 3 de 3

1

You were given a chunk of memory and constructed a new object in that chunk using placement new. What do you do to destroy that object again?

Selecciona una de las siguientes respuestas posibles:

  • The destructor will be called automatically when the chunk of memory is freed

  • Placement new doesn’t require destruction of constructed objects

  • I will manually invoke the destructor of the object

  • A call to placement delete is necessary to destroy the object

Explicación