
Search In
To provide manipulation in a single bit of data or into the multiple bits we will use the things for these bit manipulation.
struct {
unsigned int widthValidated;
unsigned int heightValidated;
} status;
This will give you the
Selection sort as the name suggests, first select the least element from the entire list in every iteration and swap it with the position for which iteration is being performed.
In the given figure it is seen that in the first iteration the
For finding the optimum solution of the problem greedy algorithm is used for it. It can solve problem from any domain we want.
Greedy algorithm try to find localized solution which may comes inside global solutions.
I am writing this blog, which will provide you help to compress files with the help of .htaccess file.
When Gzip Compression is enabled on your web server then it will make the file sizes smaller. This will load your website faster. When a req
About Cassandra: Cassandra/ Apache Cassandra is scalable NoSQL database system. It is used to manage large amount of structured, semi-structured and non structured data. I am writing this blog which will help you to install and run a single-node clus
Variable Arguments (Varargs) in Java
Variable Arguments (Varargs) was introduced in JDK 5.
Varargs as the name suggest allows a function to be called with different number of arguments as per the requirement.
The syntax of Varargs:
returntype
Hi All,
This blog is simply to know the fact that in MVC4 we no longer need to use "Url.Content".
The Content method is a helper method which is responsible for converting a relative path into an absolute path. But with MVC4 release, we ca
Hi All,
In this blog we will see how easy is to get HTML element in AngularJS. We many a times stuck in situation where we need to get HTML element that are not bind to AngularJS Model. Here is quick and easiest way of doing that.
Using Class Name:
When you try to read row from one table and add to another table, if you get the exception i.e. ""This row already belongs to another table". For example:
DataTable dtRead = new DataTable();
DataTable dtWrite = new DataTable();
fore
Hi all,
Shuffling an array means randomly re-arranging the content of an array .Shuffling algorithm can be used in many places now days like in card games, music player , media player etc.
Shuffling of an array can be done in two ways.
Using Gam
