Swift - Variables and Constants
What will be the output of this Swift code?
var score = 5 score = 10 let score = 15 print(score)
var score = 5 score = 10 let score = 15 print(score)
let score after var score in the same scope is not allowed.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions