InterviewSolution
| 1. |
Why Scala is called a Scalable Language? |
|
Answer» Scala is a general-purpose language which runs on JVM. It has some unique features which make it very useful to develop programs of different shapes and sizes. Starting from a SMALL script to enterprise level multi-module applications, Scala GIVES the developers a lot of flexibility in design and implementation. Inferring types, implicit conversions and its conciseness help defining custom control structures and domain-specific languages. On one side, its object-oriented features help to design systems with complex ENTITIES. On the other hand, the functional programming constructs help to develop bug-free and reusable code. In short, the language FITS in serving all kinds of requirements. That’s why it is called a scalable language. |
|