QUESTION #1
Which of the following will be used to choose the Approval Action as Approved?
QUESTION #2
Which of the following will be used to choose the Approval Action as Rejected?
QUESTION #3
Suppose you have this model as shown below:
| APPROVAL | MODEL NAME | MODEL PK | COLUMN NAME | OLD VALUE | NEW VALUE | NEW VALUE DESCRIPTION | CHANGED BY | CHANGE DATE | APPROVAL ACTION | APPROVAL BY | APPROVAL DATE | VIEW RECORD |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| activity.Name 1 | activity | 1 | Name | Read a book | Read a magazine | Read a magazine | user | 2019-07-01 12:00:00 | - | - | - |
Which uAdmin function will match the given statement above?
QUESTION #4
Suppose you have this model as shown below:
| APPROVAL | MODEL NAME | MODEL PK | COLUMN NAME | OLD VALUE | NEW VALUE | NEW VALUE DESCRIPTION | CHANGED BY | CHANGE DATE | APPROVAL ACTION | APPROVAL BY | APPROVAL DATE | VIEW RECORD |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| music.Instrument 1 | music | 1 | Instrument | Guitar | Piano | Piano | user | 2019-07-01 12:00:00 | - | - | - |
Which uAdmin function will match the given statement above?
QUESTION #5
Suppose you have this model as shown below:
| APPROVAL | MODEL NAME | MODEL PK | COLUMN NAME | OLD VALUE | NEW VALUE | NEW VALUE DESCRIPTION | CHANGED BY | CHANGE DATE | APPROVAL ACTION | APPROVAL BY | APPROVAL DATE | VIEW RECORD |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| animal.Breed 1 | animal | 1 | Breed | German Shepherd | Labrador Retriever | Labrador Retriever | user | 2019-07-01 12:00:00 | - | - | - |
Which uAdmin function will match the given statement above?
QUESTION #6
Suppose you have this model as shown below:
| APPROVAL | MODEL NAME | MODEL PK | COLUMN NAME | OLD VALUE | NEW VALUE | NEW VALUE DESCRIPTION | CHANGED BY | CHANGE DATE | APPROVAL ACTION | APPROVAL BY | APPROVAL DATE | VIEW RECORD |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| appliance.Name 1 | appliance | 1 | Name | Refrigerator | Microwave Oven | Microwave Oven | author | 2019-07-01 12:00:00 | - | - | - |
Code:
user := uadmin.User{}
uadmin.Get(&user, "id = ?", 1)
now := time.Now()
Which uAdmin function will match the given statement above?
QUESTION #7
Suppose you have this model as shown below:
| APPROVAL | MODEL NAME | MODEL PK | COLUMN NAME | OLD VALUE | NEW VALUE | NEW VALUE DESCRIPTION | CHANGED BY | CHANGE DATE | APPROVAL ACTION | APPROVAL BY | APPROVAL DATE | VIEW RECORD |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| body.Organ 1 | body | 1 | Organ | Lungs | Heart | Heart | doctor | 2019-07-01 12:00:00 | - | - | - |
Code:
user := uadmin.User{}
uadmin.Get(&user, "id = ?", 1)
now := time.Now()
Which uAdmin function will match the given statement above?
QUESTION #8
Suppose you have this model as shown below:
| APPROVAL | MODEL NAME | MODEL PK | COLUMN NAME | OLD VALUE | NEW VALUE | NEW VALUE DESCRIPTION | CHANGED BY | CHANGE DATE | APPROVAL ACTION | APPROVAL BY | APPROVAL DATE | VIEW RECORD |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| comedy.Show 1 | comedy | 1 | Show | Laugh In | Just for Laughs | Just for Laughs | producer | 2019-07-01 12:00:00 | - | - | - |
Code:
user := uadmin.User{}
uadmin.Get(&user, "id = ?", 1)
now := time.Now()
Which uAdmin function will match the given statement above?
QUESTION #9
Suppose you have this model as shown below:
| APPROVAL | MODEL NAME | MODEL PK | COLUMN NAME | OLD VALUE | NEW VALUE | NEW VALUE DESCRIPTION | CHANGED BY | CHANGE DATE | APPROVAL ACTION | APPROVAL BY | APPROVAL DATE | VIEW RECORD |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| building.Skyscraper 1 | building | 1 | Skyscraper | Empire East Building | Burj Khalifa | Burj Khalifa | architect | 2019-07-01 12:00:00 | Approved | chief officer | 2019-07-01 16:00:00 |
Code:
approver := uadmin.User{}
uadmin.Get(&approver, "id = ?", 1)
user := uadmin.User{}
uadmin.Get(&user, "id = ?", 2)
now := time.Now()
then := now.Add(-time.Hour*4)
Which uAdmin function will match the given statement above?
QUESTION #10
Suppose you have this model as shown below:
| APPROVAL | MODEL NAME | MODEL PK | COLUMN NAME | OLD VALUE | NEW VALUE | NEW VALUE DESCRIPTION | CHANGED BY | CHANGE DATE | APPROVAL ACTION | APPROVAL BY | APPROVAL DATE | VIEW RECORD |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| mobile.Brand 1 | mobile | 1 | Brand | Lenovo | Huawei | Huawei | seller | 2019-07-01 12:00:00 | Rejected | marketing | 2019-07-01 16:00:00 |
Code:
approver := uadmin.User{}
uadmin.Get(&approver, "id = ?", 1)
user := uadmin.User{}
uadmin.Get(&user, "id = ?", 2)
now := time.Now()
then := now.Add(-time.Hour*4)
Which uAdmin function will match the given statement above?
QUESTION #11
Suppose there is an inquiry form in the website that has a field of Name, Company, Message, and Status. If someone in the support team approves the message, the Status field will display a message that says "Approved".
Which uAdmin function will match the given statement above?
QUESTION #12
Suppose there is a ticketing form in the website that has a field of Name, Category, Details, and Status. If someone in the department team rejects the request, the Status field will display a message that says "Declined".
Which uAdmin function will match the given statement above?