Total Questions : 50
Expected Time : 50 Minutes

1. What is the purpose of the 'yield' keyword in Scala?

2. What is the purpose of the 'apply' method in Scala?

3. What is the purpose of 'unapply' method in Scala's extractor objects?

4. Which keyword is used for defining a method in Scala?

5. In Scala, what does 'sealed' trait or class mean?

6. What is the purpose of 'View Bounds' in Scala?

7. In Scala, what is the purpose of the 'trait' keyword?

8. What is the purpose of the 'flatten' method in Scala?

9. Which programming paradigm does Scala support?

10. Which keyword is used for defining a constant value in Scala?

11. In Scala, what is the purpose of the 'object' keyword?

12. What is the default visibility of a member in Scala if no access modifier is specified?

13. What is the purpose of 'Option' in Scala?

14. Which collection type in Scala is suitable for key-value pairs?

15. Which keyword is used for creating an anonymous function in Scala?

16. Which of the following is a feature of Scala's type system?

17. What is the purpose of 'scalaz' library in Scala?

18. What is the difference between 'var' and 'val' in terms of mutability?

19. How is 'flatMap' different from 'map' in the context of Option monad in Scala?

20. In Scala, what does 'covariant' mean in the context of type parameters?

21. What is the purpose of the 'implicit' keyword in Scala?

22. What is the significance of 'match' keyword in Scala?

23. What is a higher-order function in Scala?

24. What is the significance of the 'sealed' keyword in Scala?

25. What is the significance of 'yield' in a for comprehension?

26. What is the role of 'Pattern Matching' in Scala, and how is it used?

27. In Scala, what is the 'apply' method commonly used for in companion objects?

28. How does Scala handle 'null' values, and what alternative does it provide?

29. What is the purpose of 'lazy val' in Scala?

30. What is the purpose of 'implicit parameters' in Scala?

31. Explain the concept of 'pattern matching' in Scala and provide an example.

32. Which design pattern is commonly used in Scala for managing shared functionality across multiple classes?

33. What is the primary purpose of Scala programming language?

34. What is the purpose of the 'lazy' keyword in Scala?

35. Which type of exception handling is used in Scala?

36. Which collection type is mutable in Scala?

37. How does Scala handle exceptions, and what is the primary construct for exception handling?

38. In Scala, how is 'case class' different from a regular class?

39. How does 'by-name' parameter differ from 'by-value' parameter in Scala?

40. What is the difference between 'val' and 'var' in Scala?

41. What is the purpose of the 'getOrElse' method in Scala's Option type?

42. How is 'foldLeft' different from 'foldRight' in Scala?

43. Explain the concept of 'type classes' in Scala and provide a use case where they are beneficial.

44. What is the role of 'Future' in Scala, and how is it used for asynchronous programming?

45. What is the purpose of Scala's Option type?

46. What is the purpose of 'implicit' conversions in Scala?

47. Which collection type is immutable in Scala?

48. What is tail recursion, and how does Scala optimize tail-recursive functions?

49. Which feature of Scala allows concise syntax for working with lists?

50. What does 'var' keyword represent in Scala?