AniketTheProgrammer
Home
(current)
Courses
Projects
YT Projects
Coding Questions
Notification
Contact Us
Log In
All Topics
C Language
C++ Language
Greedy Algorithm
Hashing
Java Language
Linked List
Python
Queue
Stack
String
Sorting
Searching
Recursion
Backtracking
Dynamic Programming
Graph Theory
Bit Manipulation
Mathematics
Sliding Window Technique
Divide And Conquer
Matrix Manipulation
Two Pointers
Binary Tree
Topic: Cpp-conceptual-questions / Level: Intermediate
381. What are the advantages of using std::array over C-style arrays?
382. How do you create a simple URL parser in C++?
383. What is the purpose of std::shared_ptr and its use cases?
384. How do you implement a simple database connection pool in C++?
385. Explain the differences between std::string and std::wstring.
386. What is the significance of std::string::find?
387. How do you implement a simple memory leak detector in C++?
388. What are the differences between std::unordered_set and std::set?
389. How do you implement a basic image viewer in C++?
390. What is the role of std::unique_ptr in resource management?
391. How do you manage exceptions across different threads?
392. What are the benefits of using templates in C++?
393. How do you implement a simple timer in C++?
394. Explain the use of std::getline for reading input.
395. What is the purpose of std::for_each in algorithms?
396. How do you create a simple HTTP client in C++?
397. What are the advantages of using STL containers?
398. How do you implement a basic image processing pipeline in C++?
399. Explain the differences between std::shared_ptr and std::weak_ptr.
400. How do you implement a simple graph traversal algorithm (BFS/DFS) in C++?
Previous
1
2
3
4
5
6
7
Next
More Levels
Beginner
Advanced
Most Visited
How do you implement a custom exception handling mechanism?
How do you manage exceptions across multiple threads?
What is the purpose of std::lock in multithreading?
What is the purpose of std::map and when should you use it?
What is the difference between std::copy and std::move?
What is the purpose of std::shared_ptr and its use cases?
How do you implement a generic observer pattern in C++?
How do you implement a basic thread-safe singleton in C++?
How do you implement a basic socket server in C++?
How do you implement a basic file compression algorithm in C++?
What is the role of std::unique_ptr in resource management?
How do you implement a basic image manipulation library in C++?
What is a class in C++?
How do you implement a custom parser for programming languages?
How do you create a simple file manager in C++?