Write a C++ application to apply the following Boolean functions and display the results. int a = 10; int b; // the variable b will take the values 5, 10 and 15 bool q; q = a < b; q = a <= b; q = a == b; q = a >= b; q = a > b; q = b > 5 && b > 15; q = b > 5 && b < 15; q = b < 5 && b > 15; q = b < 5 && b < 15; q = b > 5 || b > 15; q = b > 5 || b < 15; q = b < 5 || b > 15; q = b < 5 || b < 15; Write the program to display the value of q. Compare the results for b = 5, b = 10 and b = 15.