Convert the following “for” loop into a “while” loop that does the same thing: for( int i = 10; i >= 0; i=i-1 ) { println( i ); } Question 25 points Convert the following “while” loop into a “for” loop that does the same thing: int i = 0;
ASSIGNMENT For each question, submit a .pde (Processing) file. The name of the file should be yourname_finalexam_x.pde, where x indicates the number of the…