Podcast
Questions and Answers
Given a Scala list called numbers initialised with integer values, what does the following line of Scala code do?
numbers.map(_ / 2.0).reduce(_ * _)
Given a Scala list called numbers initialised with integer values, what does the following line of Scala code do? numbers.map(_ / 2.0).reduce(_ * _)
Suppose you are given any list of numbers - for example, List(1, 3, 3, 4, 2, 5, 9, 6, 1) - and you are asked to return the highest even number. Which of the following set of functions best solves the problem?
Suppose you are given any list of numbers - for example, List(1, 3, 3, 4, 2, 5, 9, 6, 1) - and you are asked to return the highest even number. Which of the following set of functions best solves the problem?
How does Apache Spark achieve fault tolerance?
How does Apache Spark achieve fault tolerance?
Which of the following Yarn managers is responsible for keeping track of all the tasks for big data processing jobs?
Which of the following Yarn managers is responsible for keeping track of all the tasks for big data processing jobs?
Signup and view all the answers
Consider the following Scala code: val cost = 29.19. Which of the following statements is false?
Consider the following Scala code: val cost = 29.19. Which of the following statements is false?
Signup and view all the answers
Which one of the following components of Storm is responsible for performing the computing?
Which one of the following components of Storm is responsible for performing the computing?
Signup and view all the answers
Which of the following tasks should NOT be done using Storm?
Which of the following tasks should NOT be done using Storm?
Signup and view all the answers
Which of the following are NOT contributing reasons for MapReduce to be so bad for processing graph algorithms?
Which of the following are NOT contributing reasons for MapReduce to be so bad for processing graph algorithms?
Signup and view all the answers