Which syntax to use to take the sum of list of collection in scala

0 votes
Can someone explain how to take out the sum of list of collection scala?
Jul 5, 2019 in Apache Spark by tanvi
2,504 views

1 answer to this question.

0 votes

Hi,

You can see this example to get more idea of how you can take out the sum of all list of the collection in scala:

scala> val x = (1 to 1000) .toList 

It will list down the sum of all the integer and then use the below-given code to take the sum below:

scala> x.reduce(_ + _)

You can see this example and result below:

Hope it helps!

If you want to know more about Apache Spark Scala, It's highly recommended to go for Apache Spark certification course today.

Thanks!!

answered Jul 5, 2019 by Gitika
• 65,730 points

Related Questions In Apache Spark

0 votes
1 answer
0 votes
1 answer

How to use yield keyword in scala and why it is used instead of println?

Hi, The yield keyword is used because the ...READ MORE

answered Jul 6, 2019 in Apache Spark by Gitika
• 65,730 points
2,584 views
0 votes
1 answer

What is the use of App class in Scala?

Hi, Scala provides a helper class, called App, that ...READ MORE

answered Jul 31, 2019 in Apache Spark by Gitika
• 65,730 points
12,352 views
+1 vote
2 answers
+1 vote
1 answer

Hadoop Mapreduce word count Program

Firstly you need to understand the concept ...READ MORE

answered Mar 16, 2018 in Data Analytics by nitinrawat895
• 11,380 points
13,858 views
0 votes
1 answer

hadoop.mapred vs hadoop.mapreduce?

org.apache.hadoop.mapred is the Old API  org.apache.hadoop.mapreduce is the ...READ MORE

answered Mar 16, 2018 in Data Analytics by nitinrawat895
• 11,380 points
4,703 views
+2 votes
11 answers

hadoop fs -put command?

Hi, You can create one directory in HDFS ...READ MORE

answered Mar 16, 2018 in Big Data Hadoop by nitinrawat895
• 11,380 points
117,797 views
0 votes
1 answer

How can you use "for" statement in scala to print list from collection?

Hi, You can use for loop in scala using ...READ MORE

answered Jul 5, 2019 in Apache Spark by Gitika
• 65,730 points
1,482 views
0 votes
3 answers

1)Given sfpd RDD, to create a pair RDD consisting of tuples of the form (Category. 1) in scala ,which of the following is used?

C would be an answer which shows ...READ MORE

answered Mar 30, 2023 in Apache Spark by anonymous

edited Mar 5, 2025 8,153 views
webinar REGISTER FOR FREE WEBINAR X
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP