How can your reverse a sentence("I LOVE MY COUNTRY" to
"COUNTRY MY LOVE I")
Answers were Sorted based on User's Feedback
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 |
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 |
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 |
what is Application state,Base state and call state?
who prepares the Use case?and why it is used?and when is use case prepared?who prepares the srs frs brs use case
What is Elementary Acceptance Testing
How will You select the regression testcase
How can u proove ur self as a TE the bug is valid? if the developer said its a invalid bug but TE said its a valid?
Please let me know Whether testing comes under verification or validation ?
1.What is the difference between QA and verfication? 2.What is the difference between QA and verfication? 3.what is the difference between teststrategy and test methodologies? 4.what is the difference between teststrategy and test methodologies?
After receiving the build.How will you start the testing
How can a tester knows that,these testcases are enough for this build or there is no testcases to be written or to stop the testcases now?
Plese tell me What is V model how do u prepair documnet using V model ?
feasibility testing ??
which institute is best for manual testing through online classes