QUESTION #1

What are the six fields in the database function?

A. Type, Name, Username, Password, Host, Port
B. Type, Name, User, Password, Host, Port
C. Type, Name, User, Pass, Host, Port
D. Type, Name, Username, Pass, Host, Port


QUESTION #2

What are the types in the database function supported by uAdmin?

A. SQLite, MySQL
B. MySQL, SQL Server, SQLite
C. Oracle, MySQL
D. SQLite, MS Access, SQL Server


QUESTION #3

The database name is uadmin.db.

Which uAdmin function will match the given statement above?

A. database := uadmin.Database
        database.Name = uadmin.db


B. database := uadmin.Database
        database.Name = "uadmin.db"


C. database := uadmin.Database{}
        database.Name = uadmin.db


D. database := uadmin.Database{}
        database.Name = "uadmin.db"



QUESTION #4

The database name is vanilla.db.

Which uAdmin function will match the given statement above?

A. database := uadmin.Database{}
        database.Name = vanilla.db


B. database := uadmin.Database{}
        database.Name = "vanilla.db"


C. database := uadmin.Database
        database.Name = vanilla.db


D. database := uadmin.Database
        database.Name = "vanilla.db"



QUESTION #5

The username of Employee #1 is John and the password is Doe.

Which uAdmin function will match the given statement above?

A. database := uadmin.Database
        database.Username = "John"
        database.Password = "Doe"


B. database := uadmin.Database
        database.Username = "John"
        database.Pass = "Doe"


C. database := uadmin.Database
        database.User = "John"
        database.Password = "Doe"


D. database := uadmin.Database
        database.User = "John"
        database.Pass = "Doe"



QUESTION #6

The username of the player is abc123 and the password is 123456.

Which uAdmin function will match the given statement above?

A. database := uadmin.Database
        database.Username = "abc123"
        database.Password = "123456"


B. database := uadmin.Database
        database.Username = "abc123"
        database.Pass = "123456"


C. database := uadmin.Database
        database.User = "abc123"
        database.Password = "123456"


D. database := uadmin.Database
        database.User = "abc123"
        database.Pass = "123456"



QUESTION #7

The database name is animal.db. The username is FarmHouse and the password is reptilian64.

Which uAdmin function will match the given statement above?

A. database := uadmin.Database
        database.Name = "animaldb"
        database.User = "FarmHouse"
        database.Password = "reptilian64"


B. database := uadmin.Database
        database.Name = "animal.db"
        database.Username = "FarmHouse"
        database.Password = "reptilian64"


C. database := uadmin.Database
        database.Name = "animal.db"
        database.User = "FarmHouse"
        database.Pass = "reptilian64"


D. database := uadmin.Database
        database.Name = "animal.db"
        database.User = "FarmHouse"
        database.Password = "reptilian64"



QUESTION #8

The database name is building.db. The username is HotelCity and the password is reservation.

Which uAdmin function will match the given statement above?

A. database := uadmin.Database
        database.Name = "building.db"
        database.User = "HotelCity"
        database.Password = "reservation"


B. database = uadmin.Database
        database.Name = "building.db"
        database.User = "HotelCity"
        database.Password = "reservation"


C. database := uadmin.Database
        database.Name = "building.db"
        database.Username = "HotelCity"
        database.Password = "reservation"


D. database := uadmin.Database
        database.Name = "building.db"
        database.User = "HotelCity"
        database.Pass= "reservation"



QUESTION #9

The type of database is SQLite and the database name is computer.db. The username is administrator and the password is lambda32.

Which uAdmin function will match the given statement above?

A. uadmin.Database = uadmin.DBSettings{
                Type: "SQLite",
                Name: "computer.db",
                User: "administrator",
                Password: "lambda32",
        }


B. uadmin.Database = &uadmin.DBSettings{
                Type: "SQLite",
                Name: "computer.db",
                User: "administrator",
                Password: "lambda32",
        }


C. uadmin.DBSettings = uadmin.Database{
                Type: "SQLite",
                Name: "computer.db",
                User: "administrator",
                Password: "lambda32",
        }


D. uadmin.DBSettings = &uadmin.Database{
                Type: "SQLite",
                Name: "computer.db",
                User: "administrator",
                Password: "lambda32",
        }



QUESTION #10

The type of database is MySQL and the database name is time.sql. The username is zero123 and the password is 9803080.

Which uAdmin function will match the given statement above?

A. uadmin.Database = &uadmin.DBSettings{
                Type: "MySQL",
                Name: "time.sql",
                User: "zero123",
                Password: "9803080",
        }


B. uadmin.DBSettings = &uadmin.Database{
                Type: "MySQL",
                Name: "time.sql",
                User: "zero123",
                Password: "9803080",
        }


C. uadmin.Database = uadmin.DBSettings{
                Type: "MySQL",
                Name: "time.sql",
                User: "zero123",
                Password: "9803080",
        }


D. uadmin.DBSettings = uadmin.Database{
                Type: "MySQL",
                Name: "time.sql",
                User: "zero123",
                Password: "9803080",
        }



QUESTION #11

The type of database is SQLite and the database name is restaurant.db. The username is jacksoncxv and the password is 1a2b3c4d. The IP address is 192.168.10.5 and the port is 8080.

Which uAdmin function will match the given statement above?

A. uadmin.Database = &uadmin.DBSettings{
                Type: "SQLite",
                Name: "restaurant.db",
                User: "jacksoncvx",
                Password: "1a2b3c4d",
                Host: "192.168.10.5",
                Port: 8080,
        }


B. uadmin.Database = &uadmin.DBSettings{
                Type: "SQLite",
                Name: "restaurant.db",
                User: "jacksoncxv",
                Password: "1a2b3c4d",
                Host: "192.168.18.5",
                Port: 8080,
        }


C. uadmin.Database = &uadmin.DBSettings{
                Type: "SQLite",
                Name: "restaurant.db",
                User: "jacksoncxv",
                Password: "1a2b3c4d",
                Host: "192.168.10.5",
                Port: 8080,
        }


D. uadmin.Database = &uadmin.DBSettings{
                Type: "SQLite",
                Name: "restaurant.db",
                User: "jacksoncxv",
                Password: "1a2b3c4d",
                Host: "192.168.10.5",
                Port: 8000,
        }



QUESTION #12

The type of database is SQLite and the database name is employee.db. The username is mqxvgc3b and the password is nx$1b8&77f. The IP address is 192.168.122.46 and the port is 5000.

Which uAdmin function will match the given statement above?

A. uadmin.Database = &uadmin.DBSettings{
                Type: "SQLite",
                Name: "employee.db",
                User: "mqxvgc3b",
                Password: "nx$1b8&77f",
                Host: 192.168.122.46,
                Port: 5000,
        }


B. uadmin.Database = &uadmin.DBSettings{
                Type: "SQLite",
                Name: "employee.db",
                User: "mqxvgc8b",
                Password: "nx$1b8&77f",
                Host: "192.168.122.46",
                Port: 5000,
        }


C. uadmin.Database = &uadmin.DBSettings{
                Type: "SQLite",
                Name: "employee.db",
                User: "mqxvgc3b",
                Password: "nx$1b6&77f",
                Host: "192.168.122.46",
                Port: 5000,
        }


D. uadmin.Database = &uadmin.DBSettings{
                Type: "SQLite",
                Name: "employee.db",
                User: "mqxvgc3b",
                Password: "nx$1b8&77f",
                Host: "192.168.122.46",
                Port: 5000,
        }



QUESTION #13

The type of database is MySQL and the database name is vote.sql. The username is 1f6xhvj8f and the password is xm4z1cvx7lj. The IP address is 192.168.75.106 and the port is 3805.

Which uAdmin function will match the given statement above?

A. uadmin.Database = &uadmin.DBSettings{
                Type: "MySQL",
                Name: "vote.sql",
                User: "1f6xhvj8f",
                Password: "xm4z1cvx7lj",
                Host: "192.168.75.106",
                Port: 3805,
        }


B. uadmin.Database = &uadmin.DBSettings{
                Type: "MySQL",
                Name: "vote.sql",
                User: "1f6xhvi8f",
                Password: "xm4z1cvx7lj",
                Host: "192.168.75.106",
                Port: 3805,
        }


C. uadmin.Database = &uadmin.DBSettings{
                Type: "MySQL",
                Name: "vote.sql",
                User: "1f6xhvj8f",
                Password: "xm4zlcvx7lj",
                Host: "192.168.75.106",
                Port: 3805,
        }


D. uadmin.Database = &uadmin.DBSettings{
                Type: "MySQL",
                Name: "vote.sql",
                User: "1f6xhvj8f",
                Password: "xm4z1cvx7lj",
                Host: "192.168.75.106",
                Port: 3085,
        }



QUESTION #14

The type of database is SQLite and the database name is secret.db. The username is 6bv#1&$bn and the password is ?y#jh1v&3*cx$^%. The IP address is 192.168.132.59 and the port is 6273.

Which uAdmin function will match the given statement above?

A. uadmin.Database = &uadmin.DBSettings{
                Type: "SQLite",
                Name: "secret.db",
                User: "6bv#1&$bn",
                Password: "?y#jh1v&8*cx$^%",
                Host: "192.168.132.59",
                Port: 6273,
        }


B. uadmin.Database = &uadmin.DBSettings{
                Type: "SQLite",
                Name: "secret.db",
                User: "6bv#1&$bn",
                Password: "?y#jh1v&3*cx$^%",
                Host: "192.168.132.59",
                Port: 6273,
        }


C. uadmin.Database = &uadmin.DBSettings{
                Type: "SQLite",
                Name: "secret.db",
                User: "6bv#l&$bn",
                Password: "?y#jh1v&3*cx$^%",
                Host: "192.168.132.59",
                Port: 6273,
        }


D. uadmin.Database = &uadmin.DBSettings{
                Type: "SQLite",
                Name: "secret.db",
                User: "6bv#1&$bn",
                Password: "?y#jh1v&3*ox$^%",
                Host: "192.168.132.59",
                Port: 6273,
        }



QUESTION #15

The type of database is MySQL and the database name is astronomy.sql. The username is jv&1Bv%#8lX!8czv and the password is fh!&^*#?>%v1*@hF^bCoGx^. The IP address is 192.168.152.176 and the port is 5169.

Which uAdmin function will match the given statement above?

A. uadmin.Database = &uadmin.DBSettings{
                Type: "MySQL",
                Name: "astronomy.sql",
                User: "jv&1Bv%#8lX!8czv",
                Password: "fh!&^*#?>%v1*@nF^bCoGx^",
                Host: "192.168.152.176",
                Port: 5169,
        }


B. uadmin.Database = &uadmim.DBSettings{
                Type: "MySQL",
                Name: "astronomy.sql",
                User: "jv&1Bv%#8lX!8czv",
                Password: "fh!&^*#?>%v1*@nF^bCoGx^",
                Host: "192.168.152.176",
                Port: 5169,
        }


C. uadmin.Database = &uadmin.DBSettings{
                Type: "MySQL",
                Name: "astronomy.sql",
                User: "jv&1Bv%#8lX!8czv",
                Password: "fh!&^*#?>%vl*@nF^bCoGx^",
                Host: "192.168.152.176",
                Port: 5169,
        }


D. uadmin.Database = &uadmin.DBSettings{
                Type: "MySQL",
                Name: "astronomy.sql",
                User: "jv&1Bv%#8lX!8czv",
                Password: "fh!&^*#?>%v1*@nF^bCoGx^",
                Host: "192.168.152.176",
                Port: 5169,
        }