Complete the code to get the score of a member from a sorted set.
ZSCORE [1] member1The command ZSCORE myset member1 returns the score of member1 in the sorted set myset.
Complete the code to get the score of 'player42' from the sorted set 'game_scores'.
ZSCORE [1] player42The command ZSCORE game_scores player42 fetches the score of player42 from the sorted set game_scores.
Fix the error in the command to get the score of 'user99' from 'leaderboard'.
ZSCORE leaderboard [1]The member name must be user99 to get the correct score from the leaderboard sorted set.
Fill both blanks to get the score of 'memberX' from the sorted set 'scores_set'.
ZSCORE [1] [2]
The command ZSCORE scores_set memberX returns the score of memberX in the sorted set scores_set.
Fill all three blanks to get the score of 'playerA' from 'ranking_list' using the correct command format.
[1] [2] [3]
The correct command is ZSCORE ranking_list playerA to get the score of playerA from the sorted set ranking_list.