0 votes
in Swift by

Which is not a property of type properties in Swift?

A

Type properties are properties on the type itself, not on the instance

B

type property is declared with static keyword

C

type property can be both stored or computed properties

D

type property is declared with type keyword

1 Answer

0 votes
by

Answer: D

Reason:  Type properties are the static properties which are defined on the type itself instead of any instance. The properties can be accessed by type name without creating a new object. It can be both stored and computed properties.Type Properties are defined with the keyword static if the type property is not meant to be overridden by a subclass and use the keyword class if it can be overridden by subclass.

...