Given is a code snippet : 127.0.0.1:6379> lpush numbers 4 127.0.0.1:6379> lpush numbers 3 127.0.0.1:6379> lpush numbers 7 127.0.0.1:6379> rpush numbers 10 127.0.0.1:6379> rpush numbers 15 127.0.0.1:6379> lpush numbers 12. Which of the following will be the output for the given code?

QuestionsCategory: QuestionsGiven is a code snippet : 127.0.0.1:6379> lpush numbers 4 127.0.0.1:6379> lpush numbers 3 127.0.0.1:6379> lpush numbers 7 127.0.0.1:6379> rpush numbers 10 127.0.0.1:6379> rpush numbers 15 127.0.0.1:6379> lpush numbers 12. Which of the following will be the output for the given code?
admin Staff asked 3 years ago

Answer: 12,7,3,4,10,15