Files
Java-Projects/IndustrialTrainingProjects/README.MD

29 lines
2.3 KiB
Markdown

## 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:
1. A coding IDE or just use the CMD/Terminal on your Windows Pc/Mac respectively (I used VS Code for this).
2. Check that Java is properly installed in your system and the Path to Java is integratively set in your system.
3. 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.
4. Done! You have successfully created the program in Java by your own.
## Serial:
|Serial No.|Program Name|Description of the program|
|----------|------------|--------------------------|
|1 | [PrivateConBasic.java](https://github.com/psavarmattas/Java-Projects/blob/master/IndustrialTrainingProjects/PrivateConBasic.java) | Program to implement private constructor using the basic method. |
|2 | [PrivateConSingleton.java](https://github.com/psavarmattas/Java-Projects/blob/master/IndustrialTrainingProjects/PrivateConSingleton.java) | Program to implement private constructor using the Singleton method. |
|3 | [EmployeeModelClass.java](https://github.com/psavarmattas/Java-Projects/blob/master/IndustrialTrainingProjects/EmployeeModelClass.java) | Program to create Model Class, Getters, Setters and display the data. |
|4 | [TwoDimensionalArraySum.java](https://github.com/psavarmattas/Java-Projects/blob/master/IndustrialTrainingProjects/TwoDimensionalArraySum.java) | Program to sum 2 two dimensional arrays forming a matrix. |
|5 | [CompoundInterestCalculator.java](https://github.com/psavarmattas/Java-Projects/blob/master/IndustrialTrainingProjects/CompoundInterestCalculator.java) | Program to calculate compound interest for the provided principle amount & time by following certain criteria. |
|6 | [testAppMaven](https://github.com/psavarmattas/Java-Projects/blob/master/IndustrialTrainingProjects/testAppMaven) | Program to understand maven configs with Spring Boot Framework. |