
Search In
To reset ArrayList we have two options, one is to use clear() method and another is to use removeAll().
We don’t need to worry if size of the ArrayList is small i.e. 10 to 100.
But if ArrayList size becomes huge the difference in the performance of
Compatibility Testing
Testing the application on different hardware and software platforms is known as compatibility testing.
Whenever the Test engineer has to check for the compatibility test with respect to different OS(Operating System) and brow
The Math.pow() function calculates the power of x to y, x ^ y. Matrix exponentiation is supported for square matrices x, and positive integer exponents y. It returns the base to the exponent power, that is, base exponent. It Gets a number raised to t
While designing applications in .NET sometimes you need to mention the UI in a single page such that they appear one by one not at a single go.
For doing that you need to use the tab control provided by .NET framework.
We have multiview controls in
Hi Guys!!
As a graphic designer i know that while working on a project in Illustrator, sometime you definitely want to use the same colors which you are already using but in different tones (as per requirements ) for different objects or illustratio
The range function specifies a range of integers:
range(start, stop) - the integers between start (inclusive)
and stop (exclusive)
The third value can be accepted by specifying the change between the values.
range(start, stop, step) - the int
Hi Readers,
This blog includes the concept of converting NSData to UIImage with the help of a very simple example. Given below is the screenshot and code which is used to convert NSData to UIImage on button click. Snapshot of storyboard is given be
Both the methods are similar to each other.
It is hard to understand the difference between jQuery find() and filter() methods. The difference between the two is that find() method searches for all the elements in the selector while the filter() met
Reverse ( ) Method : This method is used to reverse the entire string.
Example :
var1 = 'mukesh'
var2 = 'tomar'
var3 = '....hello mukesh'
puts var1.reverse
puts var2.reverse
puts var3.reverse
puts var1
puts var2
Ou
While writing codes in MVC we use different way to interact with the database.
Then we can use LINQ for doing it in the database it will make our code easy to read and make the manipulation easy and faster.
First we will create a Da
