Testing Fundamentals - Non-Functional Testing
What will be the output of this code simulating a performance test?
max_users = 10
current_users = 0
while current_users < max_users:
current_users += 2
print(f"Users reached: {current_users}")