/*
*Copyright (c) Swadheen Islam Robi (SIR01)
*Created on Tue Jan 06 2026 8:26:22 PM
*/
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define ld long double
#define pie 2 * (acos(0.0))
#define yes cout << "YES\n"
#define no cout << "NO\n"
#define pb push_back
#define endl "\n"
#define lcm(a, b) (a * b) / (__gcd<ll>(a, b))
#define mod 1000000007
#define srt(v) sort(v.begin(), v.end())
#define rsrt(v) sort(v.rbegin(), v.rend())
#define print(vec) \
for (auto e : vec) \
cout << e << " "; \
cout << endl
#define ALLAHU_AKBAR \
ios::sync_with_stdio(false); \
cin.tie(nullptr);
void sir()
{
int n;
cin >> n;
string s, p;
cin >> s >> p;
bool p00 = true;
for (char c : p)
{
if (c == '1')
{
p00 = false;
break;
}
}
bool p11 = true;
for (char c : p)
{
if (c == '0')
{
p11 = false;
break;
}
}
if (p00)
{
for (char c : s)
{
if (c == '1')
{
no;
return;
}
}
yes;
return;
}
if (p11)
{
for (char c : s)
{
if (c == '0')
{
no;
return;
}
}
yes;
return;
}
yes;
}
int main()
{
ALLAHU_AKBAR
ll t;
cin >> t;
while (t--)
sir();
return 0;
}