Compute the McCabe Cyclomatic Complexity of the said program. Interpret the computed value of this coding
cus_id=[]
cus_name=[]
gen=[]
mob_num=[]
amount=[]
for i in range(50):
cus_id.append(int(input("Enter Customer id")))
cus_name.append(input("Enter customer name"))
gen.append(input("Enter customer gender M/F"))
mob_num.append(int(input("Enter the mobile number")))
amount.append(int(input("Enter amount payable")))
print("Total Number of Male customers",gen.count("M"))
print("Total Number of Female customers",gen.count("F"))
Already registered? Login
Not Account? Sign up
Enter your email address to reset your password
Back to Login? Click here