The greatest number of bits you could borrow from the host portion of a class b subnet mask and still have at least 130 host per subnet is 24.
<h3>What is a host bit?</h3>
Host bits are known to be the parts of an IP address that can state out a particular host in any subnet.
Note that whenever we take or borrow an host-bit, we can also double the number of subnets that we are said to create and as such, when we borrowing 2 host bits we can have 4 subnets.
Learn more about Bits from
brainly.com/question/19667078
I believe a graph, because it shows data.
Answer:
Check the explanation
Explanation:
#source code:
import sys
def is_balanced(input_string):
stack = []
for i in input_string:
if(i=="{"):
stack.append("{")
elif(i=="}"):
stack.pop()
if(len(stack)==0):
return True
else:
return False
if __name__ == '__main__':
try:
_input_string = sys.argv[1]
balanced = is_balanced(_input_string)
if balanced:
print("The string {} is balanced".format(_input_string))
else:
print("The string {} is not balanced".format(_input_string))
except:
print("String can't be empty")
Kindly check the attached image below to see the code screenshot and code output.