
Search In
Defect:
Defect is any flaw in the software system,when there is a difference between expected result and actual result.
Defect can be classified into three categories:
Wrong
Extra
Missing
Wrong: The software does something that the p
Hello friends,
Today we learn how to get the properties of a class in PHP. In PHP, get_class_vars() function is used to get all the default properties of a particular class. It will return the result in the form of associated array. The properties t
This Video Tutorial is on Android AsyncTask. AsyncTask is an abstract class in which implementation is hidden and only functioning is visible to user. This class allows us to perform long/background operations and generates its result on the main UI
Php Folks!
I am trying to do the following with cURL:
* Keyword Search on Google.
So, basically, when you do a keyword search on Google, then cURL is supposed to fetch the Google Search Result Page (SERP) showing you the search results on a proxie
Progress dialog in android to show progress indicator/updates while downloading a file or when waiting to load a file while playing a game. Progress dialog have various features like:-
setMessage() to display message Example: Loading... (or) Please
From here you can easily detect the Wifi-Networks as well as there info surrounding your device. This can be achieved by using the "WifiManager" in a following way :-
package com.example.wifidetector;
import java.util.List;
import android.annotat
Performance Testing
Testing the behavior of an application by applying load is known as performance testing. In Performance testing we check for certain factors like:
1.Response Time - The time taken by the server to process the client's request.
There will be requirement where you might need to select the first n rows, or do pagination in Oracle. This can be achieved using Rownum.
Lets create sample table and data to understand the logic.
create table Employees (
id number primary
JavaScript Array lastIndexOf() method : The lastIndexOf() method returns the last index of the given item inside the array. This method is used when array has an element more then once. It returns the numeric value 0 or greater if element found, and
Joins are used to combine the data from two tables and return specific rows of data from the tables.
A join can be either an inner join or an outer join, depending on what is expected in the result.
INNER JOIN:
Gets all matching rows in BOTH tab
