How can your reverse a sentence("I LOVE MY COUNTRY" to
"COUNTRY MY LOVE I")

Answers were Sorted based on User's Feedback



How can your reverse a sentence("I LOVE MY COUNTRY" to "COUNTRY MY LOVE I")..

Answer / tanmoy saha

<?php

$main = 'I LOVE MY COUNTRY';

$main_arr = explode(' ',$main);
$rev_arr = array_reverse($main_arr);

echo implode(' ',$rev_arr);


?>

Is This Answer Correct ?    3 Yes 0 No

How can your reverse a sentence("I LOVE MY COUNTRY" to "COUNTRY MY LOVE I")..

Answer / uday

arr=split(str," ")
for i=ubound(arr-1) to 0 step-1
revstr=arr(i)&" "
next

Is This Answer Correct ?    5 Yes 3 No

How can your reverse a sentence("I LOVE MY COUNTRY" to "COUNTRY MY LOVE I")..

Answer / sushma

strReverse function in VB can reverse string

Is This Answer Correct ?    3 Yes 5 No

How can your reverse a sentence("I LOVE MY COUNTRY" to "COUNTRY MY LOVE I")..

Answer / ravi yellasiri

string s = "I LOVE MY COUNTRY";

// reverse string s
// "YRTNUOC YM EVOL I";
s = string.reverse(s);

// Split s with " " delimiter
string[] arr = s.split(" ");

// process till last-1 token
for(int i = 0; i < arr.Length-1; i++)
{
print (arr[i]);
print (" ");
}

// Print the last token...
print (arr[arr.Length-1]);

Is This Answer Correct ?    1 Yes 3 No

Post New Answer

More Manual Testing Interview Questions

Define the term Bug, Failure, Error?

11 Answers  


what is dead line and when its occur

2 Answers  


is it possible to do performance testing in stand alone application..how wil u do that ???????

0 Answers   IBM,


if the interviewer asked what are thec hallenges did u face in ur project how should we answer in project point of view and as well as testing technical point of view plzzz send the answer i faced this question lot of times but i am unable to expose correctly plz send the answer how to say plzzzzzzzzzzzzz

3 Answers  


what r the entry criteria for automation testing?

1 Answers  






what is impact analysis?....and base line version?...

3 Answers  


what types of testing do testers perform?

4 Answers  


Whare in the sdlc ,the testing starts?

4 Answers  


If any of ur friends come across any openings for Manula Testing - 1+ years Experiance Plz let me know... I can't upload my CV in any of the job sites...Bcoz in my current company HR vl trace out...So only.... Plz help..........u can contact me at rajalakshmi_ar_cse@yahoo.co.in

1 Answers  


A general Question: If there are two bugs one with high priority and one with high severity, which bug should be fixed first?

5 Answers   Q3 Technologies,


What are the important scenarios for testing emails? How do you test emails? Which tool is best for testing email?

0 Answers  


Real-time applications add a new and potentially difficult element to the testing mix Option 1 performance Option 2 reliability Option 3 security

2 Answers   IonIdea,


Categories