👉 Initializations are a process in programming where variables are set to their initial values at the time of initialization. This is often referred to as "initialization" or "constructor". In C++, this typically occurs when an object is created, and it is necessary for the program to know what values are being used when the object is accessed later on. For example: ```cpp class MyClass { public: int x = 0; int y = 1; // Constructor