A family of Microsoft relational database management systems designed for ease of use.
You should not use Name as a field in Access as it is a reserved word and may cause problems.
Use a union query to get to proper table structure --
SELECT Name AS Student, 1 AS Question, Question1 AS Score
FROM YourExcelInput
WHERE Question1 Is Not Null
UNION ALL
SELECT Name AS Student, 2 AS Question, Question2 AS Score
FROM YourExcelInput
WHERE Question2 Is Not Null
SELECT Name AS Student, 3 AS Question, Question3 AS Score
FROM YourExcelInput
WHERE Question3 Is Not Null
etc;