Is PHP is procedure oriented or object oriented?
Answer Posted / pratheebha
php is a procedure oriented language
| Is This Answer Correct ? | 7 Yes | 20 No |
Post New Answer View All Answers
Which escape sequences can be used in single quoted strings in php?
What is polymorphism?
How is it possible to propagate a session id?
What is the name of the scripting engine that powers PHP?
Explain PHP looping?
Who is the father of php?
What is difference between session_unset and session_destroy?
Tell me what kind of things have you done on the social side?
How to receive a cookie from the browser?
What is php written in?
What is cookie and why do we use it?
How do you call a constructor for a parent class?
How is it possible to return a value from a function?
How do I display php errors?
Binary tree question - Node has numeric data (int) The function takes depth as argument and sum all the value of the node of the depth. For instance, (0) depth 0 / \ 10 20 depth 1 / \ / \ 40 50 60 70 depth 2 so if you pass get_sum(2), you would return 220 which is 40+50+60+70 (sum of depth2) write the function.