Cpp Interview Questions
Everything on SkillVeris tagged Cpp Interview Questions — collected across the glossary, study notes, blog, and cheat sheets.
4 resources across 1 library
Interview Questions(4)
What Are Templates in C++?
C++ templates let you write a function or class once with a placeholder type parameter, and the compiler generates a fully concrete, type-checked version for e…
What is a Smart Pointer?
A smart pointer is a class template that wraps a raw pointer and automatically manages the lifetime of the object it points to, deallocating it when it is no l…
RAII vs Garbage Collection
RAII (Resource Acquisition Is Initialization) ties a resource’s lifetime deterministically to an object’s scope so it is released the instant that object is de…
What is Object Slicing in C++?
Object slicing happens in C++ when a derived-class object is assigned or passed by value into a base-class object, causing the derived-class-specific members a…