Write a program that takes a command-line argument N and prints an N-by-N triangular pattern like the one below.
Implement a class called Account which defines a modified banking account that can be created with a given balance and account name. It must be able to perform the following operations in the public interface:
Write a Java application called AccountSystem to simulate an instance of the class. You need to use deposit and withdrawal methods in this program.
Write a program to create the applet as shown below. The applet uses a paint method that draws steps based on an integer the user inputs via input dialog.
Write a program called GradesAverage, which prompts user for the number of students, reads it from the keyboard, and saves it in an int variable called numStudents. It then prompts user for the grades of each of the students and saves them in an int array called grades. Your program shall check that the grade is between 0 and 100.