Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Match the names in the following class to their label below. class Bank _ account: Represents a bank account that the user

Match the names in the following class to their label below.
class Bank_account:
"""
Represents a bank account that the user can deposit money to and
withdraw money from.
"""
def __init__(self, account_ID, balance):
"""Returns a bank account object with an account ID and balance"""
self._account_ID = account_ID
self._balance = balance
def get_account_ID(self):
"""Returns the account ID."""
return self._account_ID
def set_account_ID(self, new_ID):
"""Sets the account ID to a new value."""
self._account_ID = new_ID
def get_balance(self):
"""Returns the current balance."""
return self._balance
def deposit(self, amount):
"""Deposits the specified amount into the account."""
self._balance += amount
def withdraw(self, amount):
"""Withdraws the specified amount from the account."""
self._balance -= amount
Group of answer choices
get_balance
get method
set_account_ID
private data member
self._balance
set method
"""Returns a bank account object with an account ID and balance"""

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions