What are Sub routines?
Answer / dhanya
A routine or subroutine also referred to as a function,
procedure, and subprogram is a portion of code that may be
called and executed anywhere in a program. For example, a
routine may be used to save a file or display the time.
Instead of writing the code for these commonly performed
tasks, routines are made and called when these tasks need to
be performed. Below is a basic example of a Perl subroutine.
| Is This Answer Correct ? | 4 Yes | 1 No |
How can you increase the maximum execution time of a script in php?
Explain what is the main difference between require() and require_once()?
Is php an object or array?
what is constructor in a class, how it is work, how it is call?
Tell me how can we pass the variable through the navigation between the pages?
Which function would you use to read a line of data from a file in php?
Explain me the difference between include and require?
Is age an interval or ratio?
What is die in php?
How does php serialize work?
What type of operation is needed when passing values through a form or an url?
In php, objects are they passed by value or by reference?