QUESTION #1

Which uAdmin function returns the pointer to the DB?

A. uadmin.ReturnDB()
B. uadmin.PointerDB()
C. uadmin.GetDB()
D. uadmin.ReturnPointer()


QUESTION #2

Which uAdmin function clears the database object?

A. uadmin.ClearDB()
B. uadmin.ClearDatabase()
C. uadmin.ClearDatabaseObject()
D. uadmin.ClearObject()


QUESTION #3

uadmin.Database = &uadmin.DBSettings {
        Type: "sqlite",
        Name: "computer.db",
}

Which uAdmin function will match the given statement above?

A. uadmin.ReturnDB()
B. uadmin.PointerDB()
C. uadmin.ClearDB()
D. uadmin.GetDB()


QUESTION #4

uadmin.Database = &uadmin.DBSettings {
        Type: "sqlite",
        Name: "animal.db",
}

Which uAdmin function will match the given statement above?

A. uadmin.ClearDB()
B. uadmin.PointerDB()
C. uadmin.ReturnDB()
D. uadmin.GetDB()


QUESTION #5

uadmin.Database = &uadmin.DBSettings {
        Type: "mysql",
        Name: "vehicle.sql",
}

Which uAdmin function will match the given statement above?

A. uadmin.ReturnDB()
B. uadmin.GetDB()
C. uadmin.PointerDB()
D. uadmin.ClearDB()


QUESTION #6

activity := []models.Activity{}
sql := `SELECT * FROM activitys`

Which uAdmin function will match the given statement above in order to scan data?

A. db := uadmin.GetDB()
        db.Raw(&sql).Scan(activity)


B. db := uadmin.GetDB()
        db.Raw(sql).Scan(activity)


C. db := uadmin.GetDB()
        db.Raw(&sql).Scan(&activity)


D. db := uadmin.GetDB()
        db.Raw(sql).Scan(&activity)



QUESTION #7

telephone := []models.Telephone{}
sql := `SELECT * FROM telephones`

Which uAdmin function will match the given statement above in order to scan data?

A. db := uadmin.GetDB()
        db.Raw(sql).Scan(&telephone)


B. db := uadmin.GetDB()
        db.Raw(&sql).Scan(&telephone)


C. db := uadmin.GetDB()
        db.Raw(&sql).Scan(telephone)


D. db := uadmin.GetDB()
        db.Raw(sql).Scan(telephone)



QUESTION #8

person := []models.Person{}
sql := `SELECT * FROM persons`

Which uAdmin function will match the given statement above in order to scan data?

A. db := uadmin.GetDB()
        db.Raw(sql).Scan(&person)


B. db := uadmin.GetDB()
        db.Raw(&sql).Scan(&person)


C. db := uadmin.GetDB()
        db.Raw(&sql).Scan(person)


D. db := uadmin.GetDB()
        db.Raw(sql).Scan(person)



QUESTION #9

paper := []models.Paper{}
sql := `SELECT * FROM papers`

Which uAdmin function will match the given statement above in order to scan data?

A. db := uadmin.GetDB()
        db.Raw(&sql).Scan(&paper)


B. db := uadmin.GetDB()
        db.Raw(sql).Scan(paper)


C. db := uadmin.GetDB()
        db.Raw(sql).Scan(&paper)


D. db := uadmin.GetDB()
        db.Raw(&sql).Scan(paper)



QUESTION #10

table := []models.Table{}
sql := `SELECT * FROM tables`

Which uAdmin function will match the given statement above in order to scan data?

A. db := uadmin.GetDB()
        db.Raw(&sql).Scan(&table)


B. db := uadmin.GetDB()
        db.Raw(sql).Scan(&table)


C. db := uadmin.GetDB()
        db.Raw(sql).Scan(table)


D. db := uadmin.GetDB()
        db.Raw(&sql).Scan(table)



QUESTION #11

Condition: The database should migrate from your current ones to the movie.db.

Which uAdmin function will match the given statement above?

A. uadmin.ClearDB()
        uadmin.Database := &uadmin.Database {
                Type: "mysql",
                Name: "movie.db",
        }
        uadmin.GetDB()


B. uadmin.GetDB()
        uadmin.Database := &uadmin.Database {
                Type: "mysql",
                Name: "movie.db",
        }
        uadmin.ClearDB()


C. uadmin.ClearDB()
        uadmin.Database := &uadmin.Database {
                Type: "sqlite",
                Name: "movie.db",
        }
        uadmin.GetDB()


D. uadmin.GetDB()
        uadmin.Database := &uadmin.Database {
                Type: "sqlite",
                Name: "movie.db",
        }
        uadmin.ClearDB()



QUESTION #12

Condition: The database should migrate from your current ones to the game.sql.

Which uAdmin function will match the given statement above?

A. uadmin.ClearDB()
        uadmin.Database := &uadmin.Database {
                Type: "mysql",
                Name: "game.sql",
        }
        uadmin.GetDB()


B. uadmin.ClearDB()
        uadmin.Database := &uadmin.Database {
                Type: "sqlite",
                Name: "game.sql",
        }
        uadmin.GetDB()


C. uadmin.GetDB()
        uadmin.Database := &uadmin.Database {
                Type: "mysql",
                Name: "game.sql",
        }
        uadmin.ClearDB()


D. uadmin.GetDB()
        uadmin.Database := &uadmin.Database {
                Type: "sqlite",
                Name: "game.sql",
        }
        uadmin.ClearDB()



QUESTION #13

Condition: The database should migrate from your current ones to the interest.db.

Which uAdmin function will match the given statement above?

A. uadmin.ClearDB()
        uadmin.Database := &uadmin.Database {
                Type: "mysql",
                Name: "interest.db",
        }
        uadmin.GetDB()


B. uadmin.ClearDB()
        uadmin.Database := &uadmin.Database {
                Type: "sqlite",
                Name: "interest.db",
        }
        uadmin.GetDB()


C. uadmin.GetDB()
        uadmin.Database := &uadmin.Database {
                Type: "mysql",
                Name: "interest.db",
        }
        uadmin.ClearDB()


D. uadmin.GetDB()
        uadmin.Database := &uadmin.Database {
                Type: "sqlite",
                Name: "interest.db",
        }
        uadmin.ClearDB()



QUESTION #14

Condition: The database should migrate from your current ones to the galaxy.sql.

Which uAdmin function will match the given statement above?

A. uadmin.ClearDB()
        uadmin.Database := &uadmin.Database {
                Type: "sqlite",
                Name: "galaxy.sql",
        }
        uadmin.GetDB()


B. uadmin.GetDB()
        uadmin.Database := &uadmin.Database {
                Type: "sqlite",
                Name: "galaxy.sql",
        }
        uadmin.ClearDB()


C. uadmin.ClearDB()
        uadmin.Database := &uadmin.Database {
                Type: "mysql",
                Name: "galaxy.sql",
        }
        uadmin.GetDB()


D. uadmin.GetDB()
        uadmin.Database := &uadmin.Database {
                Type: "mysql",
                Name: "galaxy.sql",
        }
        uadmin.ClearDB()



QUESTION #15

Condition: The database should migrate from your current ones to the message.db.

Which uAdmin function will match the given statement above?

A. uadmin.GetDB()
        uadmin.Database := &uadmin.Database {
                Type: "sqlite",
                Name: "message.db",
        }
        uadmin.ClearDB()


B. uadmin.ClearDB()
        uadmin.Database := &uadmin.Database {
                Type: "mysql",
                Name: "message.db",
        }
        uadmin.GetDB()


C. uadmin.GetDB()
        uadmin.Database := &uadmin.Database {
                Type: "mysql",
                Name: "message.db",
        }
        uadmin.ClearDB()


D. uadmin.ClearDB()
        uadmin.Database := &uadmin.Database {
                Type: "sqlite",
                Name: "message.db",
        }
        uadmin.GetDB()