Ultimate access to all questions.
Upgrade Now 🚀
Sign in to unlock AI tutor
Which of the following code blocks returns a new DataFrame from DataFrame storesDF where column storeId has a string data type?
storesDF
storeId
A
storesDF.withColumn("storeId, cast(col("storeId"), StringType()))
B
storesDF.withColumn("storeId, col("storeId").cast(StringType()))
C
storesDF.withColumn("storeId, cast(storeId).as(StringType)
D
storesDF.withColumn("storeId, col(storeId).cast(StringType)
E
storesDF.withColumn("storeId, cast("storeId").as(StringType()))