Consider the following PySpark scriptline 1: logsDF = spark….

Consider the following PySpark scriptline 1: logsDF = spark.read.text(“/loudacre/weblogs/logfile”)line 2: htmllogsDF = logsDF.filter(logsDF.value.contains(“html”))line 3: htmllogsDF.show()line 4: htmllogsDF.count()Which of the following statements is TRUE about the execution of the above script?

In the context of Databricks Commuity Edition, Suppose that…

In the context of Databricks Commuity Edition, Suppose that you have created a Hive table in the `default` database on DBFS using “CREATE TABLE mytable(column1 INT, column2 INT, …)”. The data currently resides on the driver node’s local file system at “/databricks/driver/mydata/”. Which of the following can load the data into `mytable`?