Answer :
The values of x make the if condition true is 6, 7, 8, 9.
The statement "if(x > 5 and x < 10)" represents a conditional statement that checks if the value of x falls within the range of numbers greater than 5 and less than 10. To determine the values that make this condition true, we need to examine the range between 5 and 10, excluding the boundary values.
The condition explicitly states that x must be greater than 5 and less than 10. By satisfying both parts of the condition, the values of x that make the if condition true are 6, 7, 8, and 9.
These values meet the criteria of being greater than 5 and less than 10. It is important to note that the condition specifically excludes the values of 5 and 10. Therefore, they are not considered true for the given condition.
The values of x that make the if condition "x > 5 and x < 10" true are 6, 7, 8, and 9. Any values below 6 or equal to or greater than 10 do not satisfy both parts of the condition and would not make the if statement true.
Correct option is 6, 7, 8, 9.
For more such questions on Condition
https://brainly.com/question/30848414
#SPJ11