SELECT * FROM Student WHERE gender = 'F' AND marks > 65;The number of rows returned by this query is:
Step 1: Separate records by gender
From the table, list only the rows where gender = F:
Step 2: Apply marks constraint
Now check which of the above records have marks strictly greater than 65:
Step 3: Count qualifying entries
Number of students satisfying both conditions = 2
Final Answer:
2