Categories
|
Test: Swift - Forced Unwrapping of Optionals 5. var totalScore = 100 - what’s the type of totalScore variable in Swift?
Results Congratulations! Correct Answer. You Answered: None. If you took the test, your answer will show up here. Correct Answer: Int Explanation Swift infers the type of the variable by looking at the assigned value during initialization. Here 100 is an integer literal. And hence the type would be Int. I will not be an optional Int (i.e. not Int?) and assigning a nil value to totalScore after the above declaration will be an error.Take the Test Take the complete test on this topic. You will be able to review answers to questions and get a test score.
Take the Test
Question 5 of 5
Test is Based on this Article
This article talks about getting the value wrapped inside an optional by unwrapping it forcibly.
|
Test on Forced Unwrapping of the Optionals in Swift.
|
|
More Articles With Similar Tags
|
This article talks about unwrapping the optionals in Swift implicitly and the circumstances where you would use this functionality.
|
Test on how and when optionals are implicitly unwrapped in Swift.
|
Test on Forced Unwrapping of the Optionals in Swift.
|
This article discusses the safer ways of unwrapping an optional in Swift that includes Optional Binding.
|
This article talks about the Nil Coalescing Operator (??) in Swift.
|
|
|
|
|