Write the Java expression for the following:
`3/4 (a + b) - 2/5 ab`
((3 / 4) * (a + b)) - ((2 / 5) * (a * b))