Mathematical operators in Java

In Java, we have seven mathematical operators including: +: plus –: subtraction *: multiplication /: division %: modular division ++: double plus —: double subtraction It is easy for plus, subtraction, multiplication, division, and modular division, isn’t it? So, in this tutorial, I will focus… Read More

Questions Management – Frontend – Apply routing using RouterModule of Angular

I gave you an overview about routing in Angular. In this tutorial, we will apply it to our Questions Management application. First, I will create a new module called AppRoutingModule in the app-routing.module.ts file in the src/app directory: with the following content:

As you… Read More

Remote access for MySQL

By default, MySQL does not allow us to access it from other machines, accessible only from the machine itself. Therefore, if we want to access MySQL from another machine, we must make changes in the configuration of MySQL. What the changes are, in this tutorial,… Read More