✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
1. What is the time complexity of following code:
int a = 0;
for (i = 0; i < N; i++)
{
for (j = N; j > i; j--)
{
a = a + i + j;
}
}