A way of wrapping up a chunk of code and giving that chunk a name so that we can use it later in just one line of code is called as _________________
A way of wrapping up a chunk of code and giving that chunk a name so that we can use it later in just one line of code is called as _________________
For using multiple possible branches based on a single value which branching style do you prefer?
For using multiple possible branches based on a single value which branching style do you prefer?
global $count; this statement indicates what?
global $count; this statement indicates what?
Which logical operator has the higher precedence from the following?
Which logical operator has the higher precedence from the following?
The basic syntax for calling a function is _________________
The basic syntax for calling a function is _________________
Unbounded loops repeats until some condition becomes _______________
Unbounded loops repeats until some condition becomes _______________
The most complicated looping structure is _________________
The most complicated looping structure is _________________
The two main structures of branching are _______________
The two main structures of branching are _______________
Which of the following operations are supported by PHP?
Which of the following operations are supported by PHP?
Loops that iterate for fixed number of times is called _________________
Loops that iterate for fixed number of times is called _________________
Unbounded loops repeats until some condition becomes ________________
Unbounded loops repeats until some condition becomes ________________
The PHP loos up the function by its _________________
The PHP loos up the function by its _________________
In PHP6 the function is defined once in a script and then it is available everywhere in the script which means that?
In PHP6 the function is defined once in a script and then it is available everywhere in the script which means that?
The two broad types of control structures is branching and _________________
The two broad types of control structures is branching and _________________
TestExpression ? yesExperssion : noExpression is an example of ___________
TestExpression ? yesExperssion : noExpression is an example of ___________
testExpression ? yesExperssion : noExpression is an example of __________
testExpression ? yesExperssion : noExpression is an example of __________
By default the scope of variable which is defined inside a function is?
By default the scope of variable which is defined inside a function is?
Which loop evaluates the condition expression as Boolean, if it is true, it executes the statements and when it is false it will terminate?
Which loop evaluates the condition expression as Boolean, if it is true, it executes the statements and when it is false it will terminate?
try ( ) and catch ( ) functions are used for ______________
try ( ) and catch ( ) functions are used for ______________
A way of wrapping up a chunk of code and giving that chunk a name so that we can use it later in just one line of code is called as _________________
A way of wrapping up a chunk of code and giving that chunk a name so that we can use it later in just one line of code is called as _________________