T = gets.to_i T.times do n = gets.to_i a = gets.split.map(&:to_i).sort if n.even? cnt = a.each_slice(2).count { |x, y| x != y } if cnt.even? puts 'Bob' else puts 'Alice' end else puts 'Alice' end end