Ask Question
10 March, 03:40

counter = 0 rdd = sc. parallelize (data) def increment_counter (x) : global counter counter + = x rdd. foreach (increment_counter) print ("computed sum: ", counter) a. The sum is correctly computed; b. The program throw exception because variable is read before initialized; c. The program runs without exception but the sum is not computed correctly; d. None of the above

+2
Answers (2)
  1. 10 March, 07:30
    0
    a) the sum is correctly computed

    Explanation:

    The syntax of the program is also correct and the variables are declared and initialized in a properly effective and efficient manner. Therefore, we can conclude that the sum will be displayed correctly in the screen and no exceptions will appear.
  2. 10 March, 07:36
    0
    a. The sum is correctly computed

    Explanation:

    Entering this function;

    Counter = 0 rdd = sc. parallelize (data) def increment_counter (x) : global counter counter + = x rdd. foreach (increment_counter) print ("computed sum: ", and running the program produced the correct calculation for the sum.

    This entails that The syntax of the program is also correct and the variables are declared and initialised properly.
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “counter = 0 rdd = sc. parallelize (data) def increment_counter (x) : global counter counter + = x rdd. foreach (increment_counter) print ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers