QUESTION #1

Location: main.go
Model: Person

Which uAdmin function will match the given statement above?

A. uadmin.Register(Person)
B. uadmin.Register(Person{})
C. uadmin.Register(&Person)
D. uadmin.Register(&Person{})


QUESTION #2

Location: main.go
Model: Animal

Which uAdmin function will match the given statement above?

A. uadmin.Register(Animal)
B. uadmin.Register(&Animal)
C. uadmin.Register(Animal{})
D. uadmin.Register(&Animal{})


QUESTION #3

Location: main.go
Model: Phone

Which uAdmin function will match the given statement above?

A. uadmin.Register(Phone{})
B. uadmin.Register(&Phone{})
C. uadmin.Register(Phone)
D. uadmin.Register(&Phone)


QUESTION #4

Location: main.go
Models: Cabinet, Drawer

Which uAdmin function will match the given statement above?

A. uadmin.Register(
                Cabinet{},
                Drawer{},
        )


B. uadmin.Register(
                &Cabinet{},
                &Drawer{},
        )


C. uadmin.Register(
                Cabinet,
                Drawer,
        )


D. uadmin.Register(
                &Cabinet,
                &Drawer,
        )



QUESTION #5

Location: main.go
Models: Male, Female

Which uAdmin function will match the given statement above?

A. uadmin.Register(
                &Male,
                &Female,
        )


B. uadmin.Register(
                Male,
                Female,
        )


C. uadmin.Register(
                &Male{},
                &Female{},
        )


D. uadmin.Register(
                Male{},
                Female{},
        )



QUESTION #6

Location: models
Model: Game

Which uAdmin function will match the given statement above?

A. uadmin.Register(models.Game)
B. uadmin.Register(models.Game{})
C. uadmin.Register(Game{})
D. uadmin.Register(&models.Game)


QUESTION #7

Location: models
Model: Video

Which uAdmin function will match the given statement above?

A. uadmin.Register(models.Video{})
B. uadmin.Register(models.Video)
C. uadmin.Register(&models.Video{})
D. uadmin.Register(&models.Video{})


QUESTION #8

Location: models
Model: Photo

Which uAdmin function will match the given statement above?

A. uadmin.Register(models.Photo)
B. uadmin.Register(&models.Photo{})
C. uadmin.Register(models.Photo{})
D. uadmin.Register(models.Photo())


QUESTION #9

Location: models
Model: Hardware

Which uAdmin function will match the given statement above?

A. uadmin.Register(&models.Hardware{})
B. uadmin.Register(models.Hardware)
C. uadmin.Register(models.Hardware())
D. uadmin.Register(models.Hardware{})


QUESTION #10

Location: models
Model: Application

Which uAdmin function will match the given statement above?

A. uadmin.Register(models.Application())
B. uadmin.Register(models.Application{})
C. uadmin.Register(models.Application)
D. uadmin.Register(&models.Application{})


QUESTION #11

Location: models
Models: Device, Gadget

Which uAdmin function will match the given statement above?

A. uadmin.Register(
                models.Device{},
                models.Gadget{}
        )


B. uadmin.Register(
                models.Device{}
                models.Gadget{}
        )


C. uadmin.Register(
                models.Device{},
                models.Gadget{},
        )


D. uadmin.Register(
                models.Device,
                models.Gadget,
        )



QUESTION #12

Location: models
Models: Mobile, Desktop

Which uAdmin function will match the given statement above?

A. uadmin.Register(
                models.Mobile{},
                models.Desktop{},
        )


B. uadmin.Register(
                models.Mobile{}
                models.Desktop{}
        )


C. uadmin.Register(
                models.Mobile{},
                models.Desktop{}
        )


D. uadmin.Register(
                models.Mobile,
                models.Desktop,
        )



QUESTION #13

Location: models
Models: Land, Water, Air

Which uAdmin function will match the given statement above?

A. uadmin.Register(
                models.Land,
                models.Water,
                models.Air,
        )


B. uadmin.Register(
                models.Land{},
                models.Water{},
                models.Air{}
        )


C. uadmin.Register(
                models.Land{},
                models.Water{},
                models.Air{},
        )


D. uadmin.Register(
                models.Land{}
                models.Water{}
                models.Air{}
        )



QUESTION #14

Location: models
Models: Student, Teacher

Location: models/custom
Models: Book, Notebook

Which uAdmin function will match the given statement above?

A. uadmin.Register(
                models.Student{},
                models.Teacher{},
                custom.Book{},
                custom.Notebook{}
        )


B. uadmin.Register(
                models.Student{},
                models.Teacher{},
                models.custom.Book{},
                models.custom.Notebook{}
        )


C. uadmin.Register(
                models.Student{},
                models.Teacher{},
                custom.Book{},
                custom.Notebook{},
        )


D. uadmin.Register(
                models.Student{},
                models.Teacher{},
                models.custom.Book{},
                models.custom.Notebook{},
        )



QUESTION #15

Location: models/person
Models: Admin, User

Location: models/asset
Models: Message, Photo, Video

Which uAdmin function will match the given statement above?

A. uadmin.Register(
                models.person.Admin{},
                models.person.User{},
                models.asset.Message{},
                models.asset.Photo{},
                models.asset.Video{},
        )


B. uadmin.Register(
                models.Person.Admin{},
                models.Person.User{},
                models.Asset.Message{},
                models.Asset.Photo{},
                models.Asset.Video{},
        )


C. uadmin.Register(
                models.person.Admin{},
                models.person.User{},
                models.asset.Message{},
                models.asset.Photo{},
                models.asset.Video{}
        )


D. uadmln.Register(
                models.person.Admin{},
                models.person.User{},
                models.asset.Message{},
                models.asset.Photo{},
                models.asset.Video{},
        )