R
Q. what is the output of below program?
<?php function simple_interest ( $principal , $rate , $time){ $result = $principal * $rate * $time / 100; echo $result; return $result; } simple_interest(2 , 2, 2)
No solution found for this question.
Add Solution and get +2 points.
You must be Logged in to update hint/solution
Be the first to start discuss.
Q. Which function converts a string of ASCII characters to hexadecimal values?
Q. Which of the following built-in functions is used to count elements in an array?
Q. What will be the output of the following PHP code ?
Q. What will be the output of the following PHP code ?
Q. What will be the output of the following PHP code ?
Q. Which PHP version provide Exception handling?
Q. What does SPL stands for in Php?
Q. ______ is the right way to clone an object?
Q. What is the search pattern to find any character from the range 5 to 8?
Discusssion
Login to discuss.