How can your reverse a sentence("I LOVE MY COUNTRY" to
"COUNTRY MY LOVE I")
Answer Posted / 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 |
Post New Answer View All Answers
To specify the test artifacts involved in testing.
Why did you choose the Software Testing Field?
!what are the entry criteria for antomation testing ?
which of the following is not a coding defect? Option 1 Test harness defect Option 2 Data flow defect Option 3 Initialisation defect Option 4 Algorithmic defect
What are parametere require for Performance testing?
How we allocate the priority(Blocker, Critical, etc.,) in Testing?
Can you explain tpa analysis?
How did you do unit testing in your project?
You must test a trouble report where the problem cannot be reproduced. You tried using various test data files and mutations from the data files the customer sent along with the trouble report. The software does not fail the way it did at the customer's site.
Can you explain usability testing?
How do your characteristics compare to the profile of the ideal manager that you just described?
what is dib format?
What are similarities of Agile and Scrum?
How do you scope, organize, and execute a test project?
What is the difference between action & script ?