✅ Перевірена відповідь на це питання доступна нижче. Наші рішення, перевірені спільнотою, допомагають краще зрозуміти матеріал.
Which statements are true for generics and generic arrays? a) At compile time, an unbounded generic type is resolved to type Object. b) When deriving a generic class, this subclass is NOT allowed to use more type parameters than the superclass. c) Constraining a type parameter T with an interface IF is implemented as: T implements IF. d) Given a type parameter T, an array can be declared and initialized as: T[] myArray = new T[10].