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

  • Thread starter Thread starter Bouni
  • Start date Start date
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
 
And maybe critical questions based on versions

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

just an idea
That’s a really good idea — thanks Daniel 🙏
Version-specific pitfalls (C++03 vs C++11, C++14/17/20) are indeed very relevant, especially since many banks still run on older standards.
I’ll add this dimension to the roadmap.
 
Back
Top Bottom