Write a boolean expression involving a variable with the identifier height that evaluates to true when height is greater than 48 and less than 90 and assign that result to a boolean variable that you declare
a) boolean result = (height > 48 && height < 90);
b) boolean result = (height >= 48 || height <= 90);
c) boolean result = (height < 48 || height > 90);
d) boolean result = (height >= 48 && height <= 90);