When making a call to getAliases() on the BeanFactory using the name of a bean that h
When making a call to getAliases() on the BeanFactory using the name of a bean that has aliases, is lazy loaded, and has not yet been created, what will be the result?
options are
a>An unchecked exception will be thrown, indicating that the bean has not been instantiated.
b>No aliases will be returned.
c>The list of aliases will be returned and the bean will not be instantiated.
d>A checked exception will be thrown, indicating that the bean has not been instantiated.
e>The list of aliases will be returned and the bean will be instantiated.