#define rep(i,n) for(int i=0;i<(int)(n);i++) #define ALL(v) v.begin(),v.end() typedef long long ll; #include using namespace std; int main(){ ios::sync_with_stdio(false); std::cin.tie(nullptr); int t; cin>>t; while(t--){ int n; string s; cin>>n>>s; stack sta; rep(i,n){ if(sta.size()>=2 && s[i]=='B'){ while(sta.size()>=2){ auto l=sta.top(); sta.pop(); auto r=sta.top(); if(r=='A' && l=='B') sta.pop(); else{ sta.push(l); break; } } } sta.push(s[i]); } string ans; while(!sta.empty()){ auto r=sta.top(); sta.pop(); ans+=r; } reverse(ALL(ans)); cout<