In this tutorial we will see how to pass an object to a function as an argument and how to return an object from a… [Read More]
Concurrency Control in DBMS
When more than one transactions are running simultaneously there are chances of a conflict to occur which can leave database to an inconsistent state. To… [Read More]
Transaction Management in DBMS
A transaction is a set of logically related operations. For example, you are transferring money from your bank account to your friend’s account, the set… [Read More]
Enumeration in C++
Enum is a user defined data type where we specify a set of values for a variable and the variable can only take one out… [Read More]
Structure and Function in C++
In this previous tutorial we learnt about structures, the compound data type that groups different types of variables. In this tutorial, we will learn how… [Read More]
Structures in C++
Structure is a compound data type that contains different variables of different types. For example, you want to store Student details like student name, student… [Read More]
Interfaces in C++: Abstract Class
In C++, we use terms abstract class and interface interchangeably. A class with pure virtual function is known as abstract class. For example the following… [Read More]
Abstraction in C++ with example
Abstraction is one of the feature of Object Oriented Programming, where you show only relevant details to the user and hide irrelevant details. For example,… [Read More]
Encapsulation in C++ with example
Encapsulation is a process of combining data members and functions in a single unit called class. This is to prevent the access to the data… [Read More]
Virtual functions in C++: Runtime Polymorphism
In this guide, we will see what are virtual functions and why we use them. When we declare a function as virtual in a class,… [Read More]
- « Previous Page
- 1
- …
- 85
- 86
- 87
- 88
- 89
- …
- 150
- Next Page »