Applying mvc
16 important questions on Applying mvc
Is Range a generic?
Can you nemumerate a range?
What are the three fundamental data structures in swift?
- Higher grades + faster learning
- Never study anything twice
- 100% sure, 100% understanding
Can classes, structures and enums have properties and functions?
Which of the following can have initialisers: Structs, classes, enums
Structs and enums are passed by value, true or false?
When you assign a struct or enum to a variable, what happens?
When do you use the keyword "mutating" ?
What does the keyword "final" mean
When a property is accessed you can implement two methods, which are they?
i.e.
var anInt: Int = 8 {
willSet { println("i will be set set")}
didSet { println("i just got set")}
}
Can you lazily intitialize let properties?
Do you have to create an init method in a struct?
What can you do inside an init?
Can you call other init(args) in init()?
How can you describe "AnyObject"
How can you typecast anyObject?
or check with as?. If u use as? it will return will if its not the correct type.
The question on the page originate from the summary of the following study material:
- A unique study and practice tool
- Never study anything twice again
- Get the grades you hope for
- 100% sure, 100% understanding