SnowPro Advanced: Data Engineer — Question 13

Which methods can be used to create a DataFrame object in Snowpark? (Choose three.)

Answer options

Correct answer: B, C, F

Explanation

The correct methods to create a DataFrame in Snowpark are session.read.json(), session.table(), and session.sql(). The other options do not directly create a DataFrame object; for example, session.jdbc_connection() establishes a connection, DataFrame.write() is used for writing data, and session.builder() is for configuring a session.