Answer:
Explanation:
255.255.255.0 is the Subnet for the network DCI, it makes it a workable network to allow 254 users.
It as an IP address exclusion range between 192.168.42.100 - 192.168.42.110, this makes it overall accessible through X. X.X.1 - 99 and X. X. X - 110 - 252.From this, 90 address are being used, so 2 addresses can be picked as 192.168.42.6 and 192.168.42.106. These are 100 addresses apart, and the final Ocet is not more than 150.
When working in the navigation pane, you click a folder to open it
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
Fragmented would be the answer