|
|
-
|
|
Some time application load testing is require this is batch file content it can easily open Internet explorer with given URL by given no.
Create batch file using following content
[code]
set var i
FOR /L %%i IN (0,1,50) DO start iexplore ht......
|
|
-
|
|
A String Class is immutable. It means we can’t change it once it creates. So when we change string, in that case new instance of string class will be created instead of changing value.
StringBuilder is mutable string. It means we can change its value......
|
|
-
|
|
Just learnt from NYTimes that Steve Jobs has stepped down as the CEO of Apple. It is the end of an era.........
|
|
-
|
|
following words contain five vowels
Education
Facetious
abstemious......
|
|
-
|
|
I just came to know that "Hindi" is not india's national Language. Even according to constitution, there is no national language for India.
Article 343 of the constitution specifies that the official language of the India is Hindi in Devanagari scrip......
|
|
-
12 Liked
| 12 Learned
| 8 Comments
|
|
Recently watched an inspiring regional movie, where actor asks actress to take her birth date, and multiply day with 12 and Month with 31 and add those results. As soon as she tells the result, in 3-4 seconds, actor will tell her birth date. At first gl......
|
|
-
|
|
On the old-style rotary telephone dial, the letter O was on the number 0, but that made sense in the age when typewriters often didn't have a distinction between 0 (zero) and O (letter O), (and some had no figure 1, instead using the lower case l). Also......
|
|
-
|
|
By using the ping command line program, we can find ot the IP address of a given host and vice-versa, which can be used to test whether we can communicate with this host or not.
Pinging an IP address is easy:
[code]
ping 1.2.3.4
[/code]
We can pi......
|
|
-
|
|
Run this Query
[code]
select 987654321 -123456789
[/code]
see result
[code]
987654321 (sum of all digits is 45)
- 123456789 (sum of all digits is 45)
--------------------
864197532 (sum of all digits is 45)
[/code]
Thank You......
|
|
-
|
|
THE QUICK BROWN FOX JUMPS RIGHT OVER THE LAZY DOG
this sentence contain all 26 English alphabets like ABCD...
Thank You......
|
|