Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


write a program to print
[123]
[456]
[789]
note : braces also need to be printed

Answers were Sorted based on User's Feedback



write a program to print [123] [456] [789] note : braces also need to be printed..

Answer / digambar kangude

$k=1;
for($i=1; $i<=3; $i++)
{
echo "[";
for($j=1;$j<=3;$j++)
{
echo $k;
$k++;
}
echo "]";
}

Is This Answer Correct ?    14 Yes 3 No

write a program to print [123] [456] [789] note : braces also need to be printed..

Answer / sumit manchanda

<?php
$count=0;
echo "[";
for($i=1;$i<10;$i++){

if($i%3==0){
echo "$i";
echo "]";
echo "</br>";
$count++;
}else{
if($count==3){
echo "[";
$count=0;
}
$count=$count+1;
echo "$i";

}
}

?>

Is This Answer Correct ?    11 Yes 1 No

Post New Answer

More PHP Interview Questions

What is a php namespace?

0 Answers  


What are the different data types in javascript?

1 Answers  


Explain about the data types in PHP?

0 Answers  


How to get the number of visitors in a site?

2 Answers  


What is final in php?

0 Answers  


What is the difference between Session and Cookie?

0 Answers  


What is difference between get and post in php?

0 Answers  


Tell me is it possible to submit a form with a dedicated button?

0 Answers  


If the variable $var1 is set to 10 and the $var2 is set to the character var1, what's the value of $$var2?

0 Answers  


How can we extract string 'abc.com' from a string "http://info@abc.com" using regular expression of PHP

6 Answers   Wipro,


What is $row in php?

0 Answers  


how to send mail in php but mail should be send in inbox not in spam.....:(

2 Answers   ATS,


Categories