QUESTION #1

CODE
----------------------------------------------------------------------------
animal := models.Animal{}


OLD DATA
----------------------------------------------------------------------------
Name: Dog


NEW DATA
----------------------------------------------------------------------------
Name: Cat


Which uAdmin function will match the given statement above?

A. uadmin.Update("Name", "Cat", animal, "id = 1")
B. uadmin.Update("Name", "Cat", &animal, "id = 1")
C. uadmin.Update(animal, "Name", "Cat", "id = 1")
D. uadmin.Update(&animal, "Name", "Cat", "id = 1")


QUESTION #2

CODE
----------------------------------------------------------------------------
book := models.Book{}


OLD DATA
----------------------------------------------------------------------------
Name: Mickey Mouse


NEW DATA
----------------------------------------------------------------------------
Name: Harry Potter


Which uAdmin function will match the given statement above?

A. uadmin.Update(book, "Name", "Mickey Mouse", "id = 1")
B. uadmin.Update(&book, "Name", "Mickey Mouse", "id = 1")
C. uadmin.Update("Name", "Mickey Mouse", book, "id = 1")
D. uadmin.Update("Name", "Mickey Mouse", &book, "id = 1")


QUESTION #3

CODE
----------------------------------------------------------------------------
card := models.Card{}


OLD DATA
----------------------------------------------------------------------------
Name: Bank Card
Number: 1234567890


NEW DATA
----------------------------------------------------------------------------
Name: Bank Card
Number: 7251408692


Which uAdmin function will match the given statement above?

A. uadmin.Update(card, "Number", "7251480692", "id = 1")
B. uadmin.Update(card, "Number", "7251408692", "id = 1")
C. uadmin.Update(&card, "Number", "7251480692", "id = 1")
D. uadmin.Update(&card, "Number", "7251408692", "id = 1")


QUESTION #4

CODE
----------------------------------------------------------------------------
group := models.Group{}
id := 3


OLD DATA
----------------------------------------------------------------------------
Name: Front Desk
Description: It is an area where visitors arrive and first encounter a staff at a place of business.


NEW DATA
----------------------------------------------------------------------------
Name: Reception
Description: It is an area where visitors arrive and first encounter a staff at a place of business.


Which uAdmin function will match the given statement above?

A. uadmin.Update(&group, "Name", "Reception", "id = ?", id)
B. uadmin.Update(&group, "Name", "Reception", "id == ?", id)
C. uadmin.Update(&group, "Name", "Receiption", "id = ?", id)
D. uadmin.Update(&group, "Name", "Receiption", "id == ?", id)


QUESTION #5

CODE
----------------------------------------------------------------------------
money := models.Money{}
id := 5


OLD DATA
----------------------------------------------------------------------------
Name: Peso
Description: It is a currency name.


NEW DATA
----------------------------------------------------------------------------
Name: Peso
Description: It was a coin that originated in Spain.


Which uAdmin function will match the given statement above?

A. uadmin.Update(&money, "Description", "It is a coin that originated in Spain.", "id = ?", id)
B. uadmin.Update(&money, "Description", "It was a coin that originated in Spain.", "id = ?", id)
C. uadmin.Update(&money, "Description", "It was a coin that originates in Spain.", "id = ?", id)
D. uadmin.Update(&money, "Description", "It was a coin that originated on Spain.", "id = ?", id)


QUESTION #6

CODE
----------------------------------------------------------------------------
sport := models.Sport{}
id := 6


OLD DATA
----------------------------------------------------------------------------
Name: Golf
Description: It is a club-and-ball sport.


NEW DATA
----------------------------------------------------------------------------
Name: Basketball
Description: It is a spherical object that rolls and bounces.


Which uAdmin function will match the given statement above?

A. uadmin.Update(&sport, "Name", "Basketball", "id = ?", id)
        uadmin.Update(&sport, "Description", "It is a spherical object that rolls and bounces.", "id = ?", id)


B. uadmin.Update(&sport, "Name", "It is a spherical object that rolls and bounces.", "id = ?", id)
        uadmin.Update(&sport, "Description", "Basketball", "id = ?", id)


C. uadmin.Update(&sport, "Name", "Basketball", "id == ?", id)
        uadmin.Update(&sport, "Description", "It is a spherical object that rolls and bounces.", "id == ?", id)


D. uadmin.Update(&sport, "Name", "It is a spherical object that rolls and bounces.", "id == ?", id)
        uadmin.Update(&sport, "Description", "Basketball", "id == ?", id)



QUESTION #7

CODE
----------------------------------------------------------------------------
article := models.Article{}
id := 2


OLD DATA
----------------------------------------------------------------------------
Name: Pluto
Description: The ninth planet in the solar system


NEW DATA
----------------------------------------------------------------------------
Name: Planet X
Description: Astronomers are now searching for the predicted planet.


Which uAdmin function will match the given statement above?

A. uadmin.Update(&article, "Name", "Astronomers are now searching for the predicted planet.", "id = ?", id)
        uadmin.Update(&article, "Description", "Planet X", "id = ?", id)


B. uadmin.Update(&article, "Name", "Planet X", "id == ?", id)
        uadmin.Update(&article, "Description", "Astronomers are now searching for the predicted planet.", "id == ?", id)


C. uadmin.Update(&article, "Name", "Astronomers are now searching for the predicted planet.", "id == ?", id)
        uadmin.Update(&article, "Description", "Planet X", "id == ?", id)


D. uadmin.Update(&article, "Name", "Planet X", "id = ?", id)
        uadmin.Update(&article, "Description", "Astronomers are now searching for the predicted planet.", "id = ?", id)



QUESTION #8

CODE
----------------------------------------------------------------------------
instrument := models.Instrument{}
id := 8


OLD DATA
----------------------------------------------------------------------------
Name: Flute
Description: It is a family of musical instruments in the woodwind group.


NEW DATA
----------------------------------------------------------------------------
Name: Piano
Description: It is an acoustic, stringed musical instrument.


Which uAdmin function will match the given statement above?

A. uadmin.Update(&instrument, "Name", "Piano", "id == ?", id)
        uadmin.Update(&instrument, "Description", "It is an acoustic, stringed musical instrument.", "id == ?", id)


B. uadmin.Update(&instrument, "Name", "Piano", "id = ?", id)
        uadmin.Update(&instrument, "Description", "It is an acoustic stringed musical instrument.", "id = ?", id)


C. uadmin.Update(&instrument, "Name", "Piano", "id = ?", id)
        uadmin.Update(&instrument, "Description", "It is an acoustic, stringed musical instrument.", "id = ?", id)


D. uadmin.Update(&instrument, "Name", "Piano", "id = ?", id)
        uadmin.Update(&instrument, "Description", "It is an acoustic, stringed musical instrument", "id = ?", id)



QUESTION #9

CODE
----------------------------------------------------------------------------
building := models.Building{}
id := 6


OLD DATA
----------------------------------------------------------------------------
Name: Empire State Building
Description: It is a 102-story Art Deco skyscraper in Midtown Manhattan, New York City.


NEW DATA
----------------------------------------------------------------------------
Name: Burj Khalifa
Description: It is the world's tallest building.


Which uAdmin function will match the given statement above?

A. uadmin.Update(&building, "Name", "Burj Khalifa", "id = ?", id)
        uadmin.Update(&building, "Description", "It is the worlds tallest building.", "id = ?", id)


B. uadmin.Update(&building, "Name", "Burj Kahlifa", "id = ?", id)
        uadmin.Update(&building, "Description", "It is the world's tallest building.", "id == ?", id)


C. uadmin.Update(&building, "Name", "Burj Khalifa", "id == ?", id)
        uadmin.Update(&building, "Description", "It is the world's tallest building.", "id = ?", id)


D. uadmin.Update(&building, "Name", "Burj Khalifa", "id == ?", id)
        uadmin.Update(&building, "Description", "It is the world's tallest building", "id = ?", id)



QUESTION #10

CODE
----------------------------------------------------------------------------
restaurant := models.Restaurant{}
id := 4


OLD DATA
----------------------------------------------------------------------------
Name: Jollibee
Description: It is a Filipino multinational chain of fast food restaurants owned by Jollibee Foods Corporation.


NEW DATA
----------------------------------------------------------------------------
Name: Share Cafe
Description: It is a casual restaurant that strives to create exquisite cuisine with incredible taste at a modest price point in a welcoming and stylish atmosphere.


Which uAdmin function will match the given statement above?

A. uadmin.Update(&restaurant, "Name", "Share Cafe", "id = ?", id)
        uadmin.Update(&restaurant, "Description", "It is a casual restaurant that strives to create exquisite cuisine with incredible taste at a modest price point in a welcoming and stylish atmosphere.", "id = ?", id)


B. uadmin.Update(&restaurant, "Name", "Share Cafe", "id = ?", id)
        uadmin.Update(&restaurant, "Description", "It is a casual restaurant that strives to create exquisite cuisines with incredible taste at a modest price point in a welcoming and stylish atmosphere.", "id = ?", id)


C. uadmin.Update(&restaurant, "Name", "Share Cafe", "id = ?", id)
        uadmin.Update(&restaurant, "Description", "It is a casual restaurant that strive to create exquisite cuisine with incredible taste at a modest price point in a welcoming and stylish atmosphere.", "id = ?", id)


D. uadmin.Update(&restaurant, "Name", "Share Cafe", "id = ?", id)
        uadmin.Update(&restaurant, "Description", "It is a casual restaurant that strives to create exquisite cuisines with incredible taste at a modest price point in a welcoming and stylish atmosphere", "id = ?", id)



QUESTION #11

CODE
----------------------------------------------------------------------------
person := models.Person{}
id := 3


OLD DATA
----------------------------------------------------------------------------
Name: John Doe
Address: My Address
Phone: My Phone


NEW DATA
----------------------------------------------------------------------------
Name: Allen Dale
Address: 1 Main St, Woodbridge, NJ 07095, USA
Phone: (555) 555 1234


Which uAdmin function will match the given statement above?

A. uadmin.Update(&person, "Name", "Allen Dale", "id == ?", id)
        uadmin.Update(&person, "Address", "1 Main St, Woodbridge, NJ 07095, USA", "id = ?", id)
        uadmin.Update(&person, "Phone", "(555) 555 1234", "id = ?", id)


B. uadmin.Update(&person, "Name", "Allen Dale", "id = ?", id)
        uadmin.Update(&person, "Address", "1 Main St, Woodbridge, NJ 07095, USA", "id == ?", id)
        uadmin.Update(&person, "Phone", "(555) 555 1234", "id = ?", id)


C. uadmin.Update(&person, "Name", "Allen Dale", "id = ?", id)
        uadmin.Update(&person, "Address", "1 Main St, Woodbridge, NJ 07095, USA", "id = ?", id)
        uadmin.Update(&person, "Phone", "(555) 555 1234", "id == ?", id)


D. uadmin.Update(&person, "Name", "Allen Dale", "id = ?", id)
        uadmin.Update(&person, "Address", "1 Main St, Woodbridge, NJ 07095, USA", "id = ?", id)
        uadmin.Update(&person, "Phone", "(555) 555 1234", "id = ?", id)



QUESTION #12

CODE
----------------------------------------------------------------------------
company := models.Company{}
id := 5


OLD DATA
----------------------------------------------------------------------------
Name: Accudata Inc.
Address: Kumintang Ibaba, Batangas
Phone: (043) 980 3970


NEW DATA
----------------------------------------------------------------------------
Name: IntegrityNet Solutions And Services
Address: Joseling Road, Lungsod ng Batangas, 4200 Batangas
Phone: (043) 723 7489


Which uAdmin function will match the given statement above?

A. uadmin.Update(&company, "Name", "IntegrityNet Solutions And Services", "id = ?", id)
        uadmin.Update(&company, "Address", "Joseling Road, Lungsod ng Batangas, 4200 Batangas", "id = ?", id)
        uadmin.Update(&company, "Phone", "(043) 723 7489", "id == ?", id)


B. uadmin.Update(&company, "Name", "IntegrityNet Solutions And Services", "id = ?", id)
        uadmin.Update(&company, "Address", "Joseling Road, Lungsod ng Batangas, 4200 Batangas", "id = ?", id)
        uadmin.Update(&company, "Phone", "(043) 723 7489", "id = ?", id)


C. uadmin.Update(&company, "Name", "IntegrityNet Solutions And Services", "id == ?", id)
        uadmin.Update(&company, "Address", "Joseling Road, Lungsod ng Batangas, 4200 Batangas", "id = ?", id)
        uadmin.Update(&company, "Phone", "(043) 723 7489", "id = ?", id)


D. uadmin.Update(&company, "Name", "IntegrityNet Solutions And Services", "id = ?", id)
        uadmin.Update(&company, "Address", "Joseling Road, Lungsod ng Batangas, 4200 Batangas", "id == ?", id)
        uadmin.Update(&company, "Phone", "(043) 723 7489", "id = ?", id)



QUESTION #13

CODE
----------------------------------------------------------------------------
hardware := models.Hardware{}
id := 5


OLD DATA
----------------------------------------------------------------------------
Name: Computer Monitor
Description: It is an output device that displays information in pictorial form.
Price: $30.00


NEW DATA
----------------------------------------------------------------------------
Name: Random Access Memory (RAM)
Description: It is a form of computer data storage that stores data and machine code currently being used.
Price: $15.00


Which uAdmin function will match the given statement above?

A. uadmin.Update(&hardware, "Name", "Random Access Memory (RAM)", "id = ?", id)
        uadmin.Update(&hardware, "Description", "It is a form of computer data storage that stores data and machine code currently being used.", "id = ?", id)
        uadmin.Update(&hardware, "Price", "$15.00", "id = ?", id)


B. uadmin.Update(&hardware, "Name", "Random Access Memory (RAM)", "id = ?", id)
        uadmin.Update(&hardware, "Description", "It is a form of computer data storage that stores data and machine codes currently being used.", "id = ?", id)
        uadmin.Update(&hardware, "Price", "$15.00", "id = ?", id)


C. uadmin.Update(&hardware, "Name", "Random Access Memory (RAM)", "id = ?", id)
        uadmin.Update(&hardware, "Description", "It is a form of computer data storage that stores data and machine code currently being used", "id = ?", id)
        uadmin.Update(&hardware, "Price", "$15.00", "id = ?", id)


D. uadmin.Update(&hardware, "Name", "Random Access Memory (RAM)", "id = ?", id)
        uadmin.Update(&hardware, "Description", "It is a form of computer data storage that stores data and machine codes currently being used.", "id = ?", id)
        uadmin.Update(&hardware, "Price", "$15.00", "ld = ?", id)



QUESTION #14

CODE
----------------------------------------------------------------------------
game := models.Game{}
id := 1


OLD DATA
----------------------------------------------------------------------------
Name: Flappy Bird
Description: It is a mobile game developed by Vietnamese video game artist and programmer Dong Nguyen.
Publisher: dotGears
Release Date: May 24, 2013


NEW DATA
----------------------------------------------------------------------------
Name: Mobile Legends
Description: It is a multiplayer online battle arena mobile game.
Publisher: Moonton
Release Date: July 11, 2016


Which uAdmin function will match the given statement above?

A. uadmin.Update(&game, "Name", "Mobile Legends", "id = ?", id)
        uadmin.Update(&game, "Description", "It is a multiplayer online battle arena mobile game.", "id = ?", id)
        uadmin.Update(&game, "Publisher", "Moonton", "id = ?", id)
        uadmin.Update(&game, "Release Date", "July 11 2016", "id = ?", id)


B. uadmin.Update(&game, "Name", "Mobile Legends", "id = ?", id)
        uadmin.Update(&game, "Description", "It is a multiplayer online battle arena mobile game", "id = ?", id)
        uadmin.Update(&game, "Publisher", "Moonton", "id = ?", id)
        uadmin.Update(&game, "Release Date", "July 11, 2016", "id = ?", id)


C. uadmin.Update(&game, "Name", "Mobile Legends", "id = ?", id)
        uadmin.Update(&game, "Description", "It is a multiplayer online battle arena mobile game.", "id = ?", id)
        uadmin.Update(&game, "Publisher", "Moonton", "id = ?", id)
        uadmin.Update(&game, "Release Date", "July 11, 2016", "id = ?", id)


D. uadmin.Update(&game, "Name", "Mobile Legends", "id = ?", id)
        uadmln.Update(&game, "Description", "It is a multiplayer online battle arena mobile game.", "id = ?", id)
        uadmin.Update(&game, "Publisher", "Moonton", "id = ?", id)
        uadmin.Update(&game, "Release Date", "July 11, 2016", "id = ?", id)



QUESTION #15

CODE
----------------------------------------------------------------------------
movie := models.Movie{}
id := 10


OLD DATA
----------------------------------------------------------------------------
Name: Train to Busan
Description: It is a 2016 South Korean zombie apocalypse action thriller film directed by Yeon Sang-ho and starring Gong Yoo, Jung Yu-mi, and Ma Dong-seok.
Director: Yeon Sang-ho
Release Date: July 2016
Country: South Korea


NEW DATA
----------------------------------------------------------------------------
Name: Bohemian Rhapsody
Description: It is a 2018 biographical film about Freddie Mercury, lead singer of the British rock band Queen.
Director: Bryan Singer
Release Date: October 24, 2018
Country: United Kingdom


Which uAdmin function will match the given statement above?

A. uadmin.Update(&movie, "Name", "Bohemian Rhapsody", "id = ?", id)
        uadmin.Update(&movie, "Description", "It is a 2018 biographical film about Freddie Mercury, lead singer of the British rock band Queen.", "id = ?", id)
        uadmin.Update(&movie, "Director", "Bryan Singer", "id = ?", id)
        uadmin.Update(&movie, "Release Date", "October 24 2018", "id = ?", id)
        uadmin.Update(&movie, "Country", "United Kingdom", "id = ?", id)


B. uadmin.Update(&movie, "Name", "Bohemian Rhapsody", "id = ?", id)
        uadmin.Update(&movie, "Description", "It is a 2018 biographical film about Freddie Mercury, lead singer of the British rock bond Queen.", "id = ?", id)
        uadmin.Update(&movie, "Director", "Bryan Singer", "id = ?", id)
        uadmin.Update(&movie, "Release Date", "October 24, 2018", "id = ?", id)
        uadmin.Update(&movie, "Country", "United Kingdom", "id = ?", id)


C. uadmin.Update(&movie, "Name", "Bohemian Rhapsody", "id = ?", id)
        uadmin.Update(&movie, "Description", "It is a 2018 biographical film about Freddie Mercury, lead singer of the British rock band Queen.", "id = ?", id)
        uadmin.Update(&movie, "Director", "Bryan Singer", "id == ?", id)
        uadmin.Update(&movie, "Release Date", "October 24, 2018", "id = ?", id)
        uadmin.Update(&movie, "Country", "United Kingdom", "id = ?", id)


D. uadmin.Update(&movie, "Name", "Bohemian Rhapsody", "id = ?", id)
        uadmin.Update(&movie, "Description", "It is a 2018 biographical film about Freddie Mercury, lead singer of the British rock band Queen.", "id = ?", id)
        uadmin.Update(&movie, "Director", "Bryan Singer", "id = ?", id)
        uadmin.Update(&movie, "Release Date", "October 24, 2018", "id = ?", id)
        uadmin.Update(&movie, "Country", "United Kingdom", "id = ?", id)