Well, you did not technically answer the question. They wanted you to
create a "Make Table" query. But, their request was not necessarily valid.
I would almost never create a new table from two existing table unless I was
trying to "normalize" a bad design.
So, for example, if you have a table listing all "boys" and a table listing
all "girls" it might be better to combine these into a new table of "kids".
To do so, you'd need to add a new "gender" field, then combine the data and
put it in a new table.
If you are working with a properly normalized database, it would be rare
that you'd need to create a new table from two existing tables. The reason
is that you can do pretty much anything with the saved query that you can do
with a table AND... if someone changes data in the tables, the stored query
would reflect those changes. If you create a new table and someone goes
back and needs to modify data, they must now update the existing table AND
your new table. By using the query instead, they would only need to update
the existing table. Those changes would be reflected in your query, and in
any object using that query as it's data source.
Maybe someone else will have some additional comments as to how they think
your answer was taken. I have never been in an interview that asked me to
perform a skill like that.
Hope you get it!!!