Respuesta :

These statement are about OOP in C++:

  1. In C++ structs are fully OOP but it changes the base assumption of visibility from private to public
  2. "this" is a pointer in C++ and therefore we use -> to access from it
  3. Generally follows a pattern of forward declaration in a .h file and definitions in a .cpp file


What is C++ ?

As an expansion of the C programming language, also known as "C with Classes," computer scientist Bjarne Stroustrup developed C++ (pronounced "C plus plus"), a high-level general-purpose programming

language. Over the years, the language has grown significantly, and contemporary C++ now includes facilities for low-level memory manipulation along with object-oriented, generic, and functional features.

Since it is almost always implemented as a compiled language and is offered by numerous vendors, such as the Free Software Foundation, LLVM, Microsoft, Intel, Embarcadero, Oracle, and IBM, C++ is available on a wide range of platforms.

Performance, efficiency, and flexibility of use were key design focuses when C++ was created, with an emphasis on systems programming, embedded, resource-constrained software, and large systems.

Learn more about C++

https://brainly.com/question/13441075

#SPJ4