#include <bits/stdc++.h>
#define ll long long
#define endl '\n'
#define pb push_back
#define vi vector<ll>
#define print(v) for (auto it : v) cout << it << " "; cout << endl;
#define read(v) for(auto &it:v) cin>>it;
#define Faster ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0)
using namespace std;
const ll mod = 998244353, mx = 1e5 + 10;
void ravana()
{
ll n;
cin >> n;
vi v(n);
read(v);
vector<vector<ll>> ar(32, vector<ll>(n, 0));
for (ll i = 0; i < 32; i++)
{
for (ll j = 0; j < n; j++)
{
if (j > 0)
ar[i][j] = ar[i][j - 1];
ar[i][j] += ((v[j] >> i) & 1);
}
}
ll count = 0;
for (ll i = 0; i < n - 1; i++)
{
ll ok = 1;
for (ll j = 0; j < 32; j++)
{
if ((ar[j][i] % 2) != ((ar[j][n - 1] - ar[j][i]) % 2))
{
ok = 0;
break;
}
}
if (ok)
count++;
}
cout << count << endl;
}
signed main()
{
auto begin = std::chrono::high_resolution_clock::now();
Faster;
ll t = 1;
cin >> t;
for (ll i = 1; i <= t; ++i)
{
ravana();
}
auto end = std::chrono::high_resolution_clock::now();
auto elapsed = std::chrono::duration_cast<std::chrono::nanoseconds>(end - begin);
cerr << "Time measured: " << elapsed.count() * 1e-9 << " seconds.\n";
return 0;
}