Ultimate access to all questions.
Upgrade Now 🚀
Sign in to unlock AI tutor
What is the correct order of the following lines of code to read a JSON file at the path filePath into a DataFrame using the specified schema schema?
filePath
schema
Lines of code:
.spark
.read
.json(filePath, schema = schema)
storesDF
A
3, 5, 6
B
2, 4, 1
C
3, 5, 1
D
2, 5, 1
E
3, 4, 1