T = int(input()) for _ in range(T): N = int(input()) A = list(map(int, input().split())) if N % 2 == 0: print("Bob") else: print("Alice")