Lightweight C++ Quiz for Quant Interviews – Looking for Feedback

Thanks both 🙏

This is really valuable input.
I like the idea of mixing different layers:
- basics (constructors, copy semantics, raw vs smart pointers),
- “survival syntax” checks (const correctness, operator overloads, memory management),
- and deeper design questions (Rectangle/Square, SRP, RAII in practice).

That would turn the app into a progression: from reflex-level output prediction to more advanced reasoning and design pitfalls.

I’ll definitely integrate some of these (unique_ptr seems like a must-have!).
Really appreciate the time you took to share this.
 
And maybe critical questions based on versions

C++98/C++03
C++11
// C++14
C++17
C++20

just an idea
 
Back
Top Bottom