| Consider the following code snippet in Scala
def prnt = {print("scala"); 1}
def fun(a:Int,b: => Int) = print(a)
What will be the output for function call fun(prnt,5)?
Choose the correct options from below list
(1)5
(2)scala1
(3)scala5
(4)5scala1
(5)scala15
Answer:-(2)scala1 | | |