- Write a nested loop structure that prints out the followingnumber series: 111
ID: 3619124 • Letter: #
Question
- Write a nested loop structure that prints out the followingnumber series: 111 112 121 122 211 212 221 222. The inner loop mayhave only one print statement and no literal string output except aspace (" " something in quotes) output.- Write a class declaration for a student that has String first,last, and middle names as data members. Declare only the datamembers and a no-arg constructor.
- Write a program that will ask the user for 10 data elements whichwill be assigned sequentially to an array, print the array and thencopy that data into a second array in reverse order and printit.