Process scheduling with Java

As we know a single-core CPU executes its processors one by one at a particular time, but when there are lots of processors in the ready queue, the CPU needs some mechanism to choose one of those processors. In order to do that, we use a logical mechanism for selecting and executing a particular process…… Continue reading Process scheduling with Java

How to create a simple 2 by 2 equation solver in JavaFX with GUI

A powerful way of developing stand-alone applications with awesome interfaces is JavaFX, it uses FXML codes to develop application’s interfaces whereas the back-end of an application is developed by Java. The way of developing JavaFX applications is somewhat different than developing Java Swing applications, in the beginning, you will be a little bit confusing, but…… Continue reading How to create a simple 2 by 2 equation solver in JavaFX with GUI