Question:

What output will be produced by the code below?

class Starship {
    var type: String
    var age: Int
}
let serenity = Starship(type: "Firefly", age: 24)
print(serenity.type)

Answers:


Keywords:

© 2017 QuizBucket.org