#include using namespace std; void fast_io() { ios_base::sync_with_stdio(false); cin.tie(nullptr); } int main() { fast_io(); // vector dp(30, 0); // for (int i = 1; i < 30; i++) { // set st{0}; // for (int j = 1; j < i; j++) { // st.insert(dp[j] ^ dp[i - j]); // } // while (st.count(dp[i])) { // dp[i]++; // } // cout << i << " " << dp[i] << endl; // } int t; cin >> t; for (; t--;) { int n; cin >> n; vector a(n); for (int i = 0; i < n; i++) { cin >> a[i]; } cout << (n % 2 ? "Alice\n" : "Bob\n"); } }