Multiple choice Which of the following queries returns the number of rows in the table student? select count()from student; select count(*)from student; select No_Rows_Tablefrom student; select max(age)from student; select min(salary)from student; Reveal answer Fill a bubble to check yourself B Correct answer Explanation This is the correct query and returns the total number of rows in the table student.