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...




If the variable $a is equal to 5 and variable $b is equal to
character a, what’s the value of $$b?

Can anyone explain how's the value of $$b=100

Answers were Sorted based on User's Feedback



If the variable $a is equal to 5 and variable $b is equal to character a, what’s the value of..

Answer / rajkumar

<?php

//If the variable $a is equal to 5 and variable $b is equal
to character a, what’s the value of $$b?

$a =5;
$b=$a;
$c= $$b;
print_r($c);


?>


it will not display any answer so answer is wrong

Is This Answer Correct ?    3 Yes 4 No

If the variable $a is equal to 5 and variable $b is equal to character a, what’s the value of..

Answer / nickle

$a = 5
$b = 'a'
$$b=100
bcoz $$b is a reference to existing variable.as $b=100 by
ascii...it is true.........!!!!

Is This Answer Correct ?    2 Yes 5 No

If the variable $a is equal to 5 and variable $b is equal to character a, what’s the value of..

Answer / modi[achir communication]

<?
$a=5;
$b='a';
$$b=100;
$b is a simple variable and $$b is a reference variable that
means in memory $$b will be refer to $b. Suppose in memory
$b variable is in address 100 then $$b will be refer $b at
address 100 that means $$b will contain 100.
?>

Is This Answer Correct ?    11 Yes 15 No

If the variable $a is equal to 5 and variable $b is equal to character a, what’s the value of..

Answer / annonymus

<?php
$a=5;
echo $b='a'."<br/>";
echo $$b;

?>
output is neither 5 or 100,
it displays
a



but if you try this...
<?php
$user = 'bob';
$holder = 'user';
echo $$holder;
?>
answer becomes like this..
bob


try it....this really really confusing..anyone can give the
exact solution to this????

Is This Answer Correct ?    1 Yes 6 No

If the variable $a is equal to 5 and variable $b is equal to character a, what’s the value of..

Answer / mr.kishore

<?php
$a=5;
$b='a';
$$b=100; // at this point $b='a' and when we use $ after
that '$$b becomes $a and we asign this value = 100 so $a
becomes 100;
echo $a;

Is This Answer Correct ?    6 Yes 37 No

Post New Answer

More PHP Interview Questions

What is the use of print_r function in php?

0 Answers  


Is a number php?

0 Answers  


How check field is empty or not in php?

0 Answers  


What is php default argument?

0 Answers  


What is the correct php command to use to catch any error messages within the code?

0 Answers  


What does mvc stand for and what does each component do?

0 Answers  


How to remove blank spaces from the string?

0 Answers  


<?php include ("db.php"); $result = mysql_query("SELECT ques_id FROM questionbank order by ques_id limit 5 "); while($obj=mysql_fetch_array($result)) { $ad1[$obj['ques_id']]++;//Used an array and inserted the database query results into it. } $rand_keys=array_rand($ad1,1); //Did a random array function echo "First random id = ".$ad1[$rand_keys[0]]; echo "<br>Second random id = ".$ad1[$rand_keys[1]]; ?> <!--Its not working. Have any solution for this. -->

1 Answers  


How can you access a COM object from a PHP page?

1 Answers  


Which PHP function would you use to send an email?

0 Answers  


How to split a string into array using php?

0 Answers  


How to set a value in session? How to remove data from a session?

0 Answers  


Categories