Ultimate access to all questions.
Upgrade Now 🚀
Sign in to unlock AI tutor
Which of the following code blocks correctly retrieves the first 3 rows of the DataFrame storesDF?
storesDF
A
storesDF.top_n(3)
B
storesDF.n(3)
C
storesDF.take(3)
D
storesDF.head(3)
E
storesDF.collect(3)