
Asked in Optum Global Solutions and 44 others
Write a function that reverses a string. The input string is given as an array of characters s.

Sucharitha Pillipogu
3mo
String string="whatever";
String reverse = new StringBuffer(string).reverse().toString();
System.out.println(reverse);
Dharamveer kumar
6mo
student at
Bkns Govt polytechnic College Gopalganj
Initialize a variable, say ‘reversedNumber’ = 0. Multiply the reversed number by 10, add the remainder of the original number divided by 10 to ‘reversedNumber’. i.e., reversedNumber = (reversedNumber)...read more
Manish Chouban
11mo
The recursive algorithm to reverse a string works by swapping the first and last characters until the middle of the string is reached. This process is performed through recursive calls, where in each ...read more
Katta Krishnaveni
3y
rev[i]=str[j]
TEXTJOIN("",1,MID(B5,{10,9,8,7,6,5,4,3,2,1},1))
Gowtham P
3y
StringBuffer sb=new StringBuffer("string");
sb.reverse();
Add answer anonymously...
Interview Questions from Popular Companies

3.7
• 8.7k Interviews

4.0
• 5.4k Interviews

3.5
• 4.2k Interviews

3.6
• 8k Interviews

3.7
• 6k Interviews

3.7
• 6.2k Interviews

3.5
• 4.2k Interviews

3.7
• 5.1k Interviews
Stay ahead in your career. Get AmbitionBox app


Trusted by over 1.5 Crore job seekers to find their right fit company
80 L+
Reviews
10L+
Interviews
4 Cr+
Salaries
1.5 Cr+
Users
Contribute to help millions
AmbitionBox Awards
Get AmbitionBox app

