Question - What is String Interpolation in Kotlin?
Answer -
If you want to use some variable or perform some operation inside a string then String Interpolation can be used. You can use the $ sign to use some variable in the string or can perform some operation in between {} sign.
var name = "MindOrks"
print("Hello! I am learning from $name")