
Search In
Many people have an idea that testing is not a mandatory task for an application which is in development or has been developed but I think that testing equally plays the same roles as development in the successful launch of the application. If the de
Hi All,
Recently I needed to update, delete and select using RAW query in Laravel 5.0. When I searched the internet the only query I was able to find out is the select query but I need to accomplish both update and delete also.So after little more R
CONCAT(str1,str2,...)
CONCAT() string function in mysql returns the string that results from concatenating the all input arguments.
CONCAT may have one or more arguments. If all arguments are nonbinary strings then their result will be a nonbinary
The array_intersect() is a built-in function in PHP used for computing the intersection of two or more arrays. The function takes two or more arrays as arguments, after comparing values of arrays the function returns an array containing all values f
Aggregrate function is a function which returns single value by performing a calculation on a set of values.MySQL provides many aggregate functions such as AVG, COUNT, SUM, MIN, MAX, etc.
MIN returns the smallest value in a given column
MIN(expres
Combining Results of two or SELECT Statements using UNION OPERATOR:
UNION Operator is used to combine the results of two or more SELECT statements. But UNION operator does not return duplicate rows so to return duplicate rows UNION ALL operator is u
What Is Failure In Software Testing ?
When any product or application be able to create incorrect outputs, under the specific conditions, that is known as the failure in the software testing terminology. This is determined as the aberration of the p
#include <iostream>
using namespace std;
// Returns true if x is in range [low..high], else false
bool inRange(int low, int high, int x)
{
return ((x-high)*(x-low) <= 0);
}
int main()
{
inRange(10, 100, 25)? cout << "Yes\n":
What Is Cause Effect Graph ?
Cause effect graph is a kind of black box testing approach which graphically demonstrates the connection between the granted result and all the components which control the outcomes.
Conditions -- There
If you want to select more than one images at a time in phone gap application, you can use the plugin cordova-image Picker. It allows you to select multiple images and also provides the properties for setting maximum images and changing the size or q
