ObjectiveMcq
Print Protected
This page is protected for print. Use the website to view the content.
Consider the string "efge". What is the minimum number of insertions required to make the string a palindrome?
Correct Answer: B — 1
The string can be converted to "efgfe" by inserting "f" or to "egfge" by inserting "g". Thus, only one insertion is required.