Posted inComputer Networks Internet Architecture Posted by admin August 13, 2021 In the late 1960s, the US Department of Defense decides to make a large network…
Posted inComputer Networks Protocol Layering Posted by admin August 13, 2021 Protocol layering is a common technique to simplify networking designs by dividing them into functional layers,…
Posted inC++ Programming C++ Files and Streams Posted by admin August 13, 2021 The iostream standard library cin and cout methods for reading from standard input and writing to standard output respectively. To read…
Posted inC++ Programming Data Encapsulation in C++ Posted by admin August 13, 2021 All C++ programs are composed of following two fundamental elements: ยท Program statements (code): This is the…
Posted inC++ Programming Data Abstraction in C++ Posted by admin August 13, 2021 Data abstraction refers to, providing only essential information to the outside word and hiding their…
Posted inC++ Programming Polymorphism in C++ Posted by admin August 13, 2021 C++ polymorphism means that a call to a member function will cause a different function…
Posted inC++ Programming C++ Overloading Posted by admin August 13, 2021 C++ allows you to specify more than one definition for a function name or an operator in the same…
Posted inC++ Programming C++ Inheritance Posted by admin August 13, 2021 One of the most important concepts in object-oriented programming is that of inheritance. Inheritance allows…
Posted inC++ Programming Accessing the Data Members Posted by admin August 13, 2021 The public data members of objects of a class can be accessed using the direct…
Posted inC++ Programming Define C++ Objects Posted by admin August 13, 2021 A class provides the blueprints for objects, so basically an object is created from a…