Threading in CPPHello Everyone!! In this blog I will discuss about concurrency and multi-threading in C++. This blog doesn’t talks about the basic concepts…Dec 17, 2021Dec 17, 2021
New and Delete in Cpp 11/14/17Hello All, in this post I will be talking about New and Delete operator in cpp and discus common FAQ around it.Dec 17, 2021Dec 17, 2021
MutexIn certain situations we like to perform operations on the same data by multiple threads. However if multiple threads will operate on same…Dec 17, 2021Dec 17, 2021
Move SemanticsMove semantics can be terrifying to understand if we don't understand when and where to use them. I got introduced to std::move when I…Dec 17, 2021Dec 17, 2021
Uniform Initialization in C++1XUniform Initialization in C++ has been introduced in C++ 11 and onwards. They help us to initialize all the classes, objects, primitive…Mar 14, 2021Mar 14, 2021
Story of Static Variable in CPP/C++. Why multiple instances of static are created.We all know that static variables and global variables are declared on the Data segment in memory and their lifetime is throughout the…Feb 28, 2021Feb 28, 2021
Ways to pass a variable in modern CPP to a function1) pass by value pass by value will create a copy of the passing variable. this calls the copy constructor of the object. defination…Feb 27, 2021Feb 27, 2021
Question for KNN AlgorithmHi Al, Here are some of the common and general questions and queries related to K nearest neighbors,Sep 1, 2020Sep 1, 2020
Why do we need cross-validation??Cross validation is an important concept in machine learning world. It helps to check how your algorithm will perform-when unknown data is…Aug 31, 2020Aug 31, 2020
Mongo DB: In and OutHello Everyone, this will we be a big blog on Mongo DB in which I will explain you to how to use Mongo DB and why to use Mongo DB for…Jun 28, 2020Jun 28, 2020