• Android

    Android is an operating system based on the Linux kernel, and designed primarily for touch screen mobile devices such as smart phones and tablet computers. Android is a Linux-based software system, and similar to Linux, is free and open source software. This means that other companies can use the Android operating developed by Google and use it in their mobile devices.Android gives you a world-class platform for creating apps and games for Android users everywhere, as well as an open marketplace for distributing to them instantly.

  • Welcome to Bashguru

    Linux is one of popular version of UNIX operating System. It is open source as its source code is freely available. It is free to use. Linux was designed considering UNIX compatibility. It's functionality list is quite similar to that of UNIX and become very popular over the last several years. Our Basic motive is to provide latest information about Linux Operating system.

  • Python Programming

    Python is a comparatively simple programming language, compared to c++. Although some of the benefits of c++ are abstracted away in python, they are replaced with an overall easier to learn language with many “intuitive” features. For this reason it is common and recommended by most professionals that people new to programming start with python.

  • Perl Programming

    Perl is an open-source, general-purpose interpreted programming language. Used often for CGI, Perl is also used for graphics programming, system administration, network programming, finance, bioinformatics, and other applications. The Perl languages borrow features from other programming languages including C, shell scripting (sh), AWK, and sed. They provide powerful text processing facilities without the arbitrary data-length limits of many contemporary UNIX command line tools, facilitating easy manipulation of text files.

  • Android

    Android is an operating system based on the Linux kernel, and designed primarily for touch screen mobile devices such as smart phones and tablet computers. Android is a Linux-based software system, and similar to Linux, is free and open source software. This means that other companies can use the Android operating developed by Google and use it in their mobile devices.Android gives you a world-class platform for creating apps and games for Android users everywhere, as well as an open marketplace for distributing to them instantly.

  • Welcome to Bashguru

    Linux is one of popular version of UNIX operating System. It is open source as its source code is freely available. It is free to use. Linux was designed considering UNIX compatibility. It's functionality list is quite similar to that of UNIX and become very popular over the last several years. Our Basic motive is to provide latest information about Linux Operating system.

Saturday, July 31, 2010

Posted by venu k
14 comments | 4:18 PM
Palindrome: A palindrome is a word, phrase, number or other sequenceof units that can be read the same way in either direction (the adjus-tment of punctuation and spaces between words is generally permitted).Examples: Phrases: Dammit, I'm mad!Quotations: Able was I ere I saw Elba. Madam, I'm Adam.Names: Some people have names that are palindromes.Lon Nol (1913- 1985) was Prime Minister of Cambodia. Palindromic names are very common in Finland. Examples include Emma Lamme,Sanna Rannas, Anni Linna...

Thursday, July 29, 2010

Posted by venu k
7 comments | 9:34 AM
#!/bin/bash#!/bin/bash# SCRIPT: insertionsort.sh## LOGIC: Here, sorting takes place by inserting a particular element# at the appropriate position, that’s why the name insertion sorting.# In the First iteration, second element ARRAY[1] is compared with# the first element ARRAY[0]. In the second iteration third element# is compared with first and second element. In general, in every# iteration an element is compared with all the elements before it.# While comparing if it is found that the element can be inserted at# a suitable position, then space...
Posted by venu k
9 comments | 9:29 AM
#!/bin/bash#!/bin/bash# SCRIPT: selectionsort.sh## LOGIC : Here, to sort the data in ascending order, the first element# ARRAY[0] is compared with all the other elements till the end of the# array. If it is greater than any other the elements then they are# interchanged. So after the first iteration of the outer for loop# smallest element will be placed at the first position. The same pro-# cedure is repeated for the other elements too.####################################################################### Define Functions...
Posted by venu k
14 comments | 9:23 AM
#!/bin/bash# SCRIPT: bubblesort.sh# LOGIC:# Bubble sort is a simple sorting, it works by repeatedly stepping# through the list to be sorted, comparing two items at a time and# swapping them if they are in the wrong order. If you are sorting# the data in Ascending order, at the end of the first pass, the# "heaviest" element has move to bottom. In the second pass, the# comparisons are made till the last but one position and now second# largest element is placed at the last but one position. And so# forth.#######################################################################...