CSE MCQs :: Swift
- What are the characteristics of Switch in Swift?
- How do you declare an Iboutlet property?
- What are the features of Swift Programming?
- What are the control transfer statements used in Swift?
- What are the advantages of Swift?
- What's are the new features in Swift 4.0?
- Given : var stringValue:String = "Justin Gif. What is the result of stringValue = nil?
- What are the collection types in Swift?
- Swift is which type of language?
A.
It supports any kind of data, and not only synchronize but also checks for equality
|
B.
When a case is matched in switch, the program exists from the switch case and does not continue checking next cases. So you don't need to explicitly break out the switch at the end of case
|
C.
Switch statement must be exhaustive, which means that you have to cover all possible values for your variable
|
D.
All of the above
|