Right answer is (d) Use uipanel()
For explanation I would say: The uipanel can be used to give a major title to the subplots created. The title name is given as a string input by the following way:
f=figure;
c=uipanel(‘Parent’,f,’BorderType’,’none’);
c.Title=’Title Name’;
c.TitlePosition=’centertop’