Develop a program by designing a class to represent a bank account. Include the following members:Data Members:Name of the DepositorAccount NumberType of accountBalanceMethods:getdetails( ) ---To assign initial valuesdeposit( ) ---To deposit an amountwithdraw( ) ---To withdraw an amount after checking balancedisplay( )--- To display the name and balance.