Multiple choice technology web technology How to get SessoionFactory from configuration object (config) ? config.createSessionFactory() config.getSessionFactory() config.buildSessionFactory() config. SessionFactory.newInstance() Reveal answer Fill a bubble to check yourself C Correct answer Explanation In Hibernate 3 and earlier, the standard way to obtain a SessionFactory from a Configuration object is by calling config.buildSessionFactory(). The other methods do not exist on the configuration object.