Complete the code to set the attribute 'age' to 30 in the DynamoDB update expression.
UpdateExpression = "SET age = [1]"
The SET expression assigns the attribute 'age' the value 30 directly.
Complete the code to add 5 to the existing 'score' attribute using SET expression.
UpdateExpression = "SET score = score [1] :increment"
The SET expression uses '+' to add the increment value to 'score'.
Fix the error in the SET expression to update the 'count' attribute by adding 1.
UpdateExpression = "SET count = count [1] 1"
The '+' operator correctly adds 1 to the 'count' attribute.
Fill both blanks to set 'status' to 'active' and increment 'visits' by 1.
UpdateExpression = "SET status = [1], visits = visits [2] :inc"
Use the placeholder ':active' for the string value and '+' to increment 'visits'.
Fill all three blanks to set 'level' to 5, 'active' to true, and increase 'points' by 10.
UpdateExpression = "SET level = [1], active = [2], points = points [3] :pts"
Set 'level' to number 5, 'active' to boolean true, and add points using '+'.