Discuss the below:
Q1: Create a recursive function sum_squares(int N) that computes the sum of squared, positive integers smaller than or equal to N.
Q2: Create a program that:
1) asks the user to enter an integer Q;
2) creates an array of Q integers;
3) fills all the array with, in position number j, the sum of squared integers up to j, as computed by the sum_squares() function;
4) prints the content of the array to the console.