Complete the code to update the attribute 'Age' to 30 in DynamoDB.
UpdateExpression='SET Age = [1]'
The update expression uses SET to assign the value 30 to the attribute 'Age'.
Complete the code to increment the attribute 'Score' by 5 using an update expression.
UpdateExpression='SET Score = Score [1] 5'
The + operator increments the 'Score' attribute by 5.
Fix the error in the update expression to remove the attribute 'Status'.
UpdateExpression='[1] Status'
The REMOVE keyword deletes an attribute from the item.
Fill both blanks to set 'Level' to 10 and add 20 to 'Points' in the update expression.
UpdateExpression='SET Level = [1], Points = Points [2] 20'
We set 'Level' to 10 and add 20 to 'Points' using the plus operator.
Fill all three blanks to set 'Status' to 'Active', increment 'Visits' by 1, and remove 'TempFlag'.
UpdateExpression='SET Status = [1], Visits = Visits [2] 1 REMOVE [3]'
We set 'Status' to 'Active', add 1 to 'Visits', and remove the 'TempFlag' attribute.
