What are the different tables(engine) present in mysql, which one is default?
No Answer is Posted For this Question
Be the First to Post Answer
Tell me what is the use of mysql_real_escape_string() function?
What is indexing in mysql and how do we create indexing in mysql
How many escape sequences are recognized in single-quoted strings?
does current version of mysql (myisam) supports foreign keys ?
What are the differences between GET and POST methods in form submitting?
How to Retrieve a Cookie Value?
How many ways are there for passing variables between pages in PHP and what are they ?
Write a PHP code to print following number pattern: 123 456 789
Where is php code written?
Tell me how to retrieve a cookie value?
How check variable is set or not in php?
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.