Input: “February” Output: “Fbur” Solution :- You are given a string s = “February”. Your task is to create a new string containing only the characters at even indexes (0, 2, 4, 6) in the original string. Concatenate these characters to …

Q. How to extract characters from the string based on even indexes (starting from index 0) and manipulate the string to get the output “Fbur”. Read more »