Associate-Developer-Apache-Spark Exam Question 26

Which of the following is the deepest level in Spark's execution hierarchy?
  • Associate-Developer-Apache-Spark Exam Question 27

    Which of the following code blocks reads in the parquet file stored at location filePath, given that all columns in the parquet file contain only whole numbers and are stored in the most appropriate format for this kind of data?
  • Associate-Developer-Apache-Spark Exam Question 28

    The code block displayed below contains an error. The code block should arrange the rows of DataFrame transactionsDf using information from two columns in an ordered fashion, arranging first by column value, showing smaller numbers at the top and greater numbers at the bottom, and then by column predError, for which all values should be arranged in the inverse way of the order of items in column value. Find the error.
    Code block:
    transactionsDf.orderBy('value', asc_nulls_first(col('predError')))
  • Associate-Developer-Apache-Spark Exam Question 29

    Which of the following code blocks returns the number of unique values in column storeId of DataFrame transactionsDf?
  • Associate-Developer-Apache-Spark Exam Question 30

    Which of the following statements about executors is correct?