Question - What do you understand by the Ranges operator in Kotlin? 
          
        
        Answer - 
        
Ranges operators help to iterate within a range. Its operator form is (..) For Example:
for (i in 1..15)  
print(i)  
The above example will give the output to print from 1 to 15.