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


Please Help Members By Posting Answers For Below Questions

Could someone please send me real check list for Database Security testing.Please my mail ID- patil.ramchandra@yahoo.co.in. Thanks.

1833


What is the difference between functional requirement and non-functional requirement?

668


Can you do system testing at any stage of sdlc?

657


What are the cases why parameterization is necessary when load testing the Web server and the database server?

1592


write a testing stratgy \ approach for a product that you are use every day (e.g gmail, out look etc)

1463






What exactly is quality control?

722


in transfer funds module, how you come to know that amount has been transferred successfully or not....explain in detail

1150


what r the measure bugs found in your project??? Give some example abt this.

3826


What is the difference between stlc and sdlc?

612


What are the different strategies for rollout to end users?

722


What is your approach when requirements change continuously?

713


what is Test management fundamental?

1765


what is sanity test (or) build test?

651


Hi, can any tell how a tester can be judged? i have to interview a tester, how should i judge whether he has a justified experience or not? how a person with 3 years of experience in manual testing can be judge?

1516


How will u decide test data to see that evey feature is thoroughly tested

1581