0
0
Redisquery~10 mins

SUBSCRIBE to channels in Redis - Interactive Code Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to subscribe to a Redis channel named 'news'.

Redis
SUBSCRIBE [1]
Drag options to blanks, or click blank then click option'
Anews
B'news'
Cchannel_news
Dnews_channel
Attempts:
3 left
💡 Hint
Common Mistakes
Using quotes around the channel name like 'news'.
Using a different channel name than 'news'.
2fill in blank
medium

Complete the code to subscribe to two Redis channels named 'sports' and 'weather'.

Redis
SUBSCRIBE [1] [2]
Drag options to blanks, or click blank then click option'
Asports
B'sports'
Cweather
D'weather'
Attempts:
3 left
💡 Hint
Common Mistakes
Adding quotes around channel names.
Using commas between channel names.
3fill in blank
hard

Fix the error in the code to subscribe to the channel 'alerts'.

Redis
SUBSCRIBE [1]
Drag options to blanks, or click blank then click option'
A'alerts'
BALERTS
Calert
Dalerts
Attempts:
3 left
💡 Hint
Common Mistakes
Using quotes around the channel name.
Using wrong case or misspelled channel name.
4fill in blank
hard

Fill both blanks to subscribe to channels 'news' and 'updates'.

Redis
SUBSCRIBE [1] [2]
Drag options to blanks, or click blank then click option'
Anews
B'news'
Cupdates
D'updates'
Attempts:
3 left
💡 Hint
Common Mistakes
Using quotes around channel names.
Separating channel names with commas.
5fill in blank
hard

Fill all three blanks to subscribe to channels 'chat', 'alerts', and 'news'.

Redis
SUBSCRIBE [1] [2] [3]
Drag options to blanks, or click blank then click option'
Achat
Balerts
Cnews
D'chat'
Attempts:
3 left
💡 Hint
Common Mistakes
Using quotes around channel names.
Using wrong channel names or misspellings.