Question
Develop a complete Java graphics application in which you draw your FATHERS complete name in capital letters using the different graphics methods discussed in the
Develop a complete Java graphics application in which you draw your FATHERS complete name in capital letters using the different graphics methods discussed in the class. You are required to use at least five different colors to draw the name. You must also change the default background color of the panel to any other color of your choice
Q. No. 2 Develop a complete Java application. In the main method of the application, create a jagged 2D array of type int having six rows (i.e. an array having six arrays). The number of elements in a particular row must be equal to the corresponding digit of your own roll number. For example, if somebodys roll number is 141257, then the resultant array would look like: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 Next, you must use nested loops to initialize the elements of the 2D array with the value of a counter that is incremented by 1 during each iteration of the inner loop, as shown in the above example. Finally, use nested loops to display the values of all the elements stored in the array. Each row must be printed in a separate line. For example, following would be the output for the above array. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started