Answer Posted / shivani1132
yes..........its according to ur capability
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
Why is facebook still using php?
What is mysqli_query?
How to enable parsing?
What are form input html tags?
Tell us what does $_cookie means?
Is php an object or array?
How to set cookies in PHP?
What is abstraction php?
How do you identify independent and dependent variables in regression analysis?
Is php harder than javascript?
What are the differences between GET and POST methods in form submitting?
How does php serialize work?
What is php key?
What is variable declaration?
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.