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 / jasmeet
Firstly wehave assigned that:
$a=5;
and now we have:
$b=a; //as it has said that $b= character 'a' whose ascii
value=95.
Now we need $$b;
so thw answer becomes:
$$b => $(95).
here 95 will again used as an ascii value and it will
call 'a'.
So the result comes out be 5.
not 100.
Check before writing any silly Question.
for any more doubts contact:: Jasmeet.
| Is This Answer Correct ? | 49 Yes | 24 No |
Post New Answer View All Answers
What is delimiter php?
When a conditional statement is ended with an endif?
So if md5() generates the most secure hash, why would you ever use the less secure crc32() and sha1()?
How to list all values of submitted fields?
How to remove the new line character from the end of a text line?
What is the difference between query and question?
Explain what are psrs?
Can we use onclick in submit button?
What is trait in php?
How do I expire a php session after 30 minutes?
In php, how to redirect from one page to another page?
Is php used in 2019?
Explain object-oriented methodology in php?
Why post method is used in php?
Tell me which function gives us the number of affected entries by a query?