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?