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
Answer Posted / deepa
because given
$a = 5
$b = 'a'
$$b = ?
so,
$b has value as a in char
so, $$b = $($b) = $(a) = $a = 5
hence, answer is 5.This ans is 100% correct,if anyone has
any doubt,jst contact me at ishika21114@gmail.com
| Is This Answer Correct ? | 13 Yes | 0 No |
Post New Answer View All Answers
How to access a specific character in a string?
Tell me what is the use of "ksort" in php?
What is curl php?
How long does a php session last for?
Explain about the data types in PHP?
Is json a string php?
How many types of session are there?
Explain PHP looping?
How to get no of arguments passed to a PHP Function?
Why would we use === instead of ==?
What is serialization in php?
How to create an array from php string?
What is the purpose of pear in php?
What are the benefits of using queries?
What is php trait?