Basic SQL Query question

Hello,

I was given this SQL question and was hoping someone could please help me understand the query? Thank you, J

SQL CONCEPT 1 Please write the result for the following query Table1 name 1.

A 2. B 3. C Table2 name 1. B 2. C 3. D Select t1.name, t2.name FROM Table1 t1 INNER JOIN Table2 t2 ON t1.name = t2.name

thanks ifor