2.3 KiB
Introduction:
Here are programs that every budding programmer who is learning to code in Java should start with. These programs are a compilation of many different types of programs and levels of programming you should try.
** These Codes are done during the Industrial Training Program. Any program you find here is taught during the the training program. **
Pre-Requisites:
-
A coding IDE or just use the CMD/Terminal on your Windows Pc/Mac respectively (I used VS Code for this).
-
Check that Java is properly installed in your system and the Path to Java is integratively set in your system.
-
Start by trying to create the program by yourself if you encounter any problems refer to the code in the program file, if the problem still persist then create a issue or use Google/Stack Overlflow for help.
-
Done! You have successfully created the program in Java by your own.
Serial:
| Serial No. | Program Name | Description of the program |
|---|---|---|
| 1 | PrivateConBasic.java | Program to implement private constructor using the basic method. |
| 2 | PrivateConSingleton.java | Program to implement private constructor using the Singleton method. |
| 3 | EmployeeModelClass.java | Program to create Model Class, Getters, Setters and display the data. |
| 4 | TwoDimensionalArraySum.java | Program to sum 2 two dimensional arrays forming a matrix. |
| 5 | CompoundInterestCalculator.java | Program to calculate compound interest for the provided principle amount & time by following certain criteria. |
| 6 | testAppMaven | Program to understand maven configs with Spring Boot Framework. |