TCS NQT Coding Sheet Tracker ✅

Strings Questions

0
#QuestionSolutionDone
1Check if a given string is palindrome or notSolution iconSolution
2Count number of vowels, consonants, spaces in StringSolution iconSolution
3Find the ASCII value of a characterSolution iconSolution
4Remove all vowels from the stringSolution iconSolution
5Remove spaces from a stringSolution iconSolution
6Remove characters from a string except alphabetsSolution iconSolution
7Reverse a StringSolution iconSolution
8Remove brackets from an algebraic expressionSolution iconSolution
9Sum of the numbers in a StringSolution iconSolution
10Capitalize first and last character of each wordSolution iconSolution
11Calculate frequency of characters in a stringSolution iconSolution
12Find Non-repeating characters of a StringSolution iconSolution
13Check if two strings are anagram of each otherSolution iconSolution
14Count common sub-sequence in two strings [DP]Solution iconSolution
15Check if two strings match where one string contains wildcard characters [DP]Solution iconSolution
16Return maximum occurring character in the input stringSolution iconSolution
17Remove all duplicates from the input stringSolution iconSolution
18Print all the duplicates in the input stringSolution iconSolution
19Remove characters from first string present in the second stringSolution iconSolution
20Change every letter with the next lexicographic alphabet in the given stringSolution iconSolution
21Write a program to find the largest word in a given stringSolution iconSolution
22Write a program to sort characters in a stringSolution iconSolution
23Count number of words in a given stringSolution iconSolution
24Write a program to find a word in a given string with the highest number of repeated lettersSolution iconSolution
25Change case of each character in a stringSolution iconSolution
26Concatenate one string to anotherSolution iconSolution
27Write a program to find a substring within a string. If found, display its starting positionSolution iconSolution
28Reverse words in a stringSolution iconSolution