Salesforce.com Interview Question
144 Interview Reviews |
Back to all Salesforce.com Interview Questions & Reviews
Interview questions and reviews posted anonymously by interview candidates
Interview Question for Software Quality Engineer at Salesforce.com:
How to reverse a String? How to deal with it if the input string is null?
See more for this Salesforce.com Software Quality Engineer Interview
Helpful Question?
Yes |
No
Inappropriate?
1 of 1 people found this helpful
by Interview Candidate:
for(int i=a.length()-1; i>=0; i--){
str+=a.charAt(a);
}
return str;
}