(Arduino C++): Assume we are looking at only the void loop() part of an Arduino program, below. What is the value of i and j at the end of each completion of the loop? Assume i and j have been declared as integers and initialized to 0 in the void setup() function. void loop() { for (i = 0; i < 100; i++) { for (j = 0; j<10; j++){ } } i=i+j; print(i); } // end loop Value of i= Value of j put answer here put answer here Note: you may show your work for Q10 below for partial credit chances.