Take the input from a file and write the transpose back into it. For example: If the file consisted "abc" "def" "xyz" you need to write a program which writes the transpose i.e. "adx" "bey" &q…
Now its been easier with Windows 7 USB/DVD download tool to make bootable pendrive. You just need Windows 7 USB/DVD download tool.exe file and .iso for which you should make bootable either in DVD or Pendrive. Installation 1. Download the Wind…
import java.util.Arrays; public class SecondLargestInArray { int getSecondLargest( int [] intArray) { Arrays. sort (intArray); return intArray[intArray. length - 2]; } public static void …
Auto incrementing the alphanumeric: Examples A00099 -> A00100 AB0323 -> AB0324 // Method to get next AlphaNumeric String public String getNextAlphaNumeric(String oldAlphaNumericString) { // number of alphabets in alphanumeric str…
Cygwin is a Unix-like environment and command-line interface for Windows. To install cygwin offline first you need to have setup file in your local system. Download cygwing installation setup offline here . To know completely about cygwin clic…
Cygwin is a Unix-like environment and command-line interface for Microsoft Windows. Cygwin provides native integration of Windows-based applications, data, and other system resources with applications, software tools, and data of the Unix-like environ…
For every site we need to update the current year in the copyright notice present in the footer. Here is the simple jQuery script to dynamically update the current year. Place the following code instead of the year in your site. <script type…