Here, we will create two sets using the Set collection class. Then we will check created set is empty or not using the isEmpty property and print an appropriate message on the console screen.
The source code to check given set is empty or not is given below. The given program is compiled and executed on the ubuntu 18.04 operating system successfully.
// Scala program to check given set
// is empty or not
import scala.collection.immutable._
object Sample {
// Main method
def main(args: Array[String]) {
//empty set.
val emptySet = Set();
// Set of cities.
val cities = Set("DELHI", "MUMBAI", "AGRA", "GWALIOR")
if (emptySet.isEmpty)
println("Empty Set");
else
println("Non-empty Set");
if (cities.isEmpty)
println("Empty Set");
else
println("Non-empty Set");
}
}
Output:
Empty Set
Non-empty Set
Explanation:
Here, we used an object-oriented approach to create the program. And, we imported Collection classes using below statement,
import scala.collection.immutable._
Here, we also created a singleton object Sample and defined the main() function. The main() function is the entry point for the program.
In the main() function, we created two sets emptySet and cities. Then we checked created set is empty or not using the isEmpty property and print an appropriate message on the console screen.
Program/Source Code:
The source code to check given set is empty or not is given below. The given program is compiled and executed on the ubuntu 18.04 operating system successfully.
Output:
Explanation:
Here, we used an object-oriented approach to create the program. And, we imported Collection classes using below statement,
Here, we also created a singleton object Sample and defined the main() function. The main() function is the entry point for the program.
In the main() function, we created two sets emptySet and cities. Then we checked created set is empty or not using the isEmpty property and print an appropriate message on the console screen.
need an explanation for this answer? contact us directly to get an explanation for this answer