
Search In
Phonegap is an open source framework that provides us to build mobile applications. It uses some web APIs for the different platforms like android, ios, windows, blackberry. We can add the specific platform in which we want to run the mobile applicat
While working with ADO.NET you need to understand the thing why SqlCommand is used.
We have two kind of operations related to database:
1 That will make changes in the database
Insert
Update
Delete
2 That will n
While working with ADO.NET you need to understand the thing why SqlCommand is used.
We have two kind of operations related to database:
1 That will make changes in the database
Insert
Update
Delete
2 That will n
ADO.NET mainly work with the data that we get from the data source.
While retrieving data we can get it using the connected approach or using the disconnected approach .
For retrieval we don't need to open and close the database
Estimation is a crucial feature which collaborate with every project. The same point cooperate to the testing assignment and also testing team or qa team that how many time do they needed to perform the testing operations.
For any project, s
Consider definition of int main():
int main()
{
return 0;
}
Consider definition of int main(void):
int main(void)
{
return 0;
}
The above two definition work perfectly fine in C but the difference between two is int main() can b
equals() and equalsIgnoreCase():
Both are used to compare two strings for equality and both methods are of String class.
equals() general form:
boolean equals(Object str)
It returns true if the invoking string and the string passed in the equals
Sorting in C is mainly done to arrange elements either in ascending or in descending order.
Sorting in done in programming by various ways
We are about to discuss insertion sort that will take element wise comparison for performing
js-model is a library that allows user to work with models by using javascript code. This will help to user for creating a pop-up window for the further details. It contain the interactive data as well as a large part of the logic surrounding for ex:
ViewBag in asp.net mvc
ViewBag is an object type which is a dynamic property of ControllerBase class.
public Object ViewBag { get; }
ViewBag provides communication between controller and view. ViewBag passes data from controll
