Answer:
=IF(D15<1500, "Discontinue", "No Change")
Explanation:
Assuming that this is excel, you can locate the cell F15 and input the IF function. The formula for IF function is
IF(<condition>, <action if true>, <action if false>)
So before the 1st comma, we place the condition which is D15 < 1500
In the middle, before the 2nd comma, we place the text to display if D15 is less than 1500, which is "Discontinue".
In the last place, we place the text to display if D15 is greater than or equals to 1500, which is "No Change"
So the overall formula is =IF(D15<1500, "Discontinue", "No Change")
<span>You can toggle between different types of references by pressing the F4 key on your keyboard.</span>
The python program that creates a Bankaccount class for a Bank ATM that is made up of the customers and has a deposit and withdrawal function is given below:
<h3>Python Code</h3>
# Python program to create Bankaccount class
# with both a deposit() and a withdraw() function
class Bank_Account:
def __init__(self):
self.balance=0
print("Hello!!! Welcome to the Deposit & Withdrawal Machine")
def deposit(self):
amount=float(input("Enter amount to be Deposited: "))
self.balance += amount
print("\n Amount Deposited:",amount)
def withdraw(self):
amount = float(input("Enter amount to be Withdrawn: "))
if self.balance>=amount:
self.balance-=amount
print("\n You Withdrew:", amount)
else:
print("\n Insufficient balance ")
def display(self):
print("\n Net Available Balance=",self.balance)
# Driver code
# creating an object of class
s = Bank_Account()
# Calling functions with that class object
deposit()
s.withdraw()
s.display()
Read more about python programming here:
brainly.com/question/26497128
#SPJ1
Answer:
Short Data lifetime, Less Expensive, Needs to be refreshed often, Smaller in size, etc. tell me if you need more.