Creating news

Report a typo

Choose all the correct ways to create an object of this class:

class News {
    var title: String = "-"
    var text: String = "-"
    var tag: String = "-"

    constructor(title: String, text: String) {
        this.title = title
        this.text = text
        this.tag = "no tags"
    }
}
Select one or more options from the list
___

Create a free account to access the full topic