Question 56

Which of the following describes a narrow transformation?
  • Question 57

    Which of the following code blocks returns all unique values of column storeId in DataFrame transactionsDf?
  • Question 58

    Which of the following code blocks returns approximately 1000 rows, some of them potentially being duplicates, from the 2000-row DataFrame transactionsDf that only has unique rows?
  • Question 59

    The code block shown below should return a column that indicates through boolean variables whether rows in DataFrame transactionsDf have values greater or equal to 20 and smaller or equal to
    30 in column storeId and have the value 2 in column productId. Choose the answer that correctly fills the blanks in the code block to accomplish this.
    transactionsDf.__1__((__2__.__3__) __4__ (__5__))
  • Question 60

    Which of the following statements about reducing out-of-memory errors is incorrect?