Mention Some keywords which are used by Java and not required in Scala? Why Scala does not require them?
Answer / Rakesh Kumar Pal
Some Java keywords that are not required in Scala include `abstract`, `final`, `native`, `synchronized`, `transient`, and `volatile`. These keywords are either unnecessary due to being implied or replaced by better alternatives in Scala. For example, `abstract` is implicitly used for abstract classes in Scala. Similarly, `final` is not needed as all values in Scala are immutable unless explicitly declared otherwise.
| Is This Answer Correct ? | 0 Yes | 0 No |
What are the available Build Tools to develop Play and Scala based Applications?
What are the advantages of a anonymous function/function literal in scala?
Tell me some features which are supported by Java, but not by Scala and Vice versa?
What is Null in Scala? What is null in Scala? What is difference between Null and null in Scala?
What is the use of ‘???’ in Scala-based Applications?
What is the use of Auxiliary Constructors in Scala?Please explain the rules to follow in defining Auxiliary Constructors in Scala?
Explain the difference between val and var in scala?
When can you use traits?
What is akka in scala? Explain
Explain the scala anonymous function.
Explain traits in scala.
What are the advantages of Play/Scala stack to develop web applications?