Right choice is (d) Alter table teaches add Name varchar(20);
Easy explanation - The form of the alter table command is
alter table r add AD;
where r is the name of an existing relation, A is the name of the attribute to be added, and D is the type of the added attribute.