Mar 31, 2010

The Power of the human mind

Dear Friends,

Some thing to chew... take a break..
another example to show English is a funny language...! !!???


I can read it , can You?
fi yuo cna raed tihs,
yuo hvae a sgtrane mnid too.
Cna yuo raed tihs?
Olny 55 plepoe out of 100 can.


i cdnuolt blveiee taht I cluod aulaclty uesdnatnrd
waht I was rdanieg.
The phaonmneal pweor of the hmuan mnid,
aoccdrnig to a rscheearch at Cmabrigde Uinervtisy,
it dseno't mtaetr in waht oerdr the ltteres in a wrod are,
the olny iproamtnt tihng is taht the frsit
and lsat ltteer be in the rghit pclae.
The rset can be a taotl mses and
you can sitll raed it whotuit a pboerlm.
Tihs is bcuseae the huamn mni d deos
not raed ervey lteter by istlef,
but the wrod as a wlohe.
Azanmig huh? yaeh and I awlyas
tghuhot slpeling was ipmorantt!
if you can raed tihs forwrad it.


ONLY POST IF YOU CAN READ

Mar 21, 2010

JAVA interview Basic questions and answers for freshers

1)What is OOPs? 
Ans: Object oriented programming organizes a program around its data,i.e.,objects and a set of well defined interfaces to that data.An object-oriented program can be characterized as data controlling access to code.

2)what is the difference between Procedural and OOPs?
Ans: a) In procedural program, programming logic follows certain procedures and the instructions are executed one after another. In OOPs program, unit of program is object, which is nothing but combination of data and code.

b) In procedural program,data is exposed to the whole program whereas in OOPs program,it is accessible with in the object and which in turn assures the security of the code.

3)What are Encapsulation, Inheritance and Polymorphism?
Ans: Encapsulation is the mechanism that binds together code and data it manipulates and keeps both safe from outside interference and misuse.
Inheritance is the process by which one object acquires the properties of another object.
Polymorphism is the feature that allows one interface to be used for general class actions.

4)What is the difference between Assignment and Initialization?
Ans: Assignment can be done as many times as desired whereas initialization can be done only once.

5)What are Class, Constructor and Primitive data types?
Ans: Class is a template for multiple objects with similar features and it is a blue print for objects. It defines a type of object according to the data the object can hold and the operations the object can perform. Constructor is a special kind of method that determines how an object is initialized when created.
Primitive data types are 8 types and they are: byte, short, int, long, float, double, boolean, char

6)What is an Object and how do you allocate memory to it?
Ans: Object is an instance of a class and it is a software unit that combines a structured set of data with a set of operations for inspecting and manipulating that data. When an object is created using new operator, memory is allocated to it.

7)What is the difference between constructor and method? 
Ans: Constructor will be automatically invoked when an object is created whereas method has to be called explicitly.

8)What are methods and how are they defined?
Ans: Methods are functions that operate on instances of classes in which they are defined. Objects can communicate with each other using methods and can call methods in other classes.Method definition has four parts. They are name of the method, type of object or primitive type the method returns, a list of parameters and the body of the method. A method’s signature is a combination of the first three parts mentioned above.

9)What is the use of bin and lib in JDK? 
Ans: Bin contains all tools such as javac, appletviewer, awt tool, etc., whereas lib contains API and all packages.

10)What is casting?
Ans: Casting is used to convert the value of one type to another.

11)How many ways can an argument be passed to a subroutine and explain them?
Ans: An argument can be passed in two ways. They are passing by value and passing by reference.Passing by value: This method copies the value of an argument into the formal parameter of the subroutine.Passing by reference: In this method, a reference to an argument (not the value of the argument) is passed to the parameter.

12)What is the difference between an argument and a parameter?
Ans: While defining method, variables passed in the method are called parameters. While using those methods, values passed to those variables are called arguments.

13)What are different types of access modifiers?
Ans: public: Any thing declared as public can be accessed from anywhere.
private: Any thing declared as private can’t be seen outside of its class.
protected: Any thing declared as protected can be accessed by classes in the same package and subclasses in the other packages.
default modifier : Can be accessed only to classes in the same package.

14)What is final, finalize() and finally? 
Ans: final : final keyword can be used for class, method and variables.A final class cannot be subclassed and it prevents other programmers from subclassing a secure class to invoke insecure methods.A final method can’ t be overriddenA final variable can’t change from its initialized value.finalize( ) : finalize( ) method is used just before an object is destroyed and can be called just prior to garbage collecollection finally : finally, a key word used in exception handling, creates a block of code that will be executed after a try/catch block has completed and before the code following the try/catch block. The finally block will execute whether or not an exception is thrown. For example, if a method opens a file upon exit, then you will not want the code that closes the file to be bypassed by the exception-handling mechanism. This finally keyword is designed to address this contingency.

15)What is UNICODE?
Ans: Unicode is used for internal representation of characters and strings and it uses 16 bits to represent each other.

16)What is Garbage Collection and how to call it explicitly?
Ans: When an object is no longer referred to by any variable, java automatically reclaims memory used by that object. This is known as garbage collection.System.gc() method may be used to call it explicitly.

17)What is finalize() method ?
Ans: finalize () method is used just before an object is destroyed and can be called just prior to garbage collection.

18)What are Transient and Volatile Modifiers?
Ans: Transient: The transient modifier applies to variables only and it is not stored as part of its object’s Persistent state. Transient variables are not serialized.Volatile: Volatile modifier applies to variables only and it tells the compiler that the variable modified by volatile can be changed unexpectedly by other parts of the program.

19)What is method overloading and method overriding?
Ans: Method overloading: When a method in a class having the same method name with different arguments is said to be method overloading.
Method overriding : When a method in a class having the same method name with same arguments is said to be method overriding.

20)What is difference between overloading and overriding?
Ans: a) In overloading, there is a relationship between methods available in the same class whereas in overriding, there is relationship between a superclass method and subclass method.
b) Overloading does not block inheritance from the superclass whereas overriding blocks inheritance from the superclass.
c) In overloading, separate methods share the same name whereas in overriding,subclass method replaces the superclass.
d) Overloading must have different method signatures whereas overriding must have same signature.

21) What is meant by Inheritance and what are its advantages?
Ans: Inheritance is the process of inheriting all the features from a class. The advantages of inheritance are reusability of code and accessibility of variables and methods of the super class by subclasses.

22)What is the difference between this() and super()?
Ans: this() can be used to invoke a constructor of the same class whereas super() can be used to invoke a super class constructor.

23)What is the difference between superclass and subclass?
Ans: A super class is a class that is inherited whereas sub class is a classthat does the inheriting.

24) What modifiers may be used with top-level class?
Ans: public, abstract and final can be used for top-level class.

25)What are inner class and anonymous class?
Ans: Inner class : classes defined in other classes, including those defined in methods are called inner classes. An inner class can have any accessibility including private.Anonymous class : Anonymous class is a class defined inside a method without a name and is instantiated and declared in the same place and cannot have explicit constructors.

Mar 20, 2010

Java Program for intializing and printing a Two-dimensional array

public class Twoarray
{
    public static void main(String args[])
    {
        int a[][]={{5,2},{1,4},{2,3}};
    System.out.println("given Two-dimensional array is: ");
        for(int i=0;i<3;i++)
        {
            for(int j=0;j<2;j++)
            {
                System.out.print(a[i][j]);
            }
        System.out.print(" ");
        }
    }
}

Java Program for printing the Fibonacci Series

class Fibonacci
{
 public static void main(String[] args)
 {
 int a=0,b=1,s=0;      
 System.out.println("Fibonacci series printing 10times:"); System.out.println(a);
 System.out.println(b);
 int i=0;
 while(i<10)
     {
            s=a+b;
            a=b;
            b=s;
            System.out.println(s);
            i++;
            }
    }
}

Mar 19, 2010

JAVA Program for Bubblesort (Ascending order) of a Single Dimensional Array

class Bubblesort
{
            public static void main(String[] args)
    {
        int a[]={4,1,8,3,5};
        int temp=0;
        System.out.println("given array: ");
        for(int j=0;j<5;j++)
        {
                System.out.print(a[j]);
        }
        System.out.println("");
        System.out.println("Bubble sort for ascending order");
        for(int j=0;<(a.length-1);j++)
        {
            for(int i=0;<(a.length-1);i++)
            {
                if(a[i]>a[i+1])
                {
                    temp=a[i];
                    a[i]=a[i+1];
                    a[i+1]=temp;
                }
               
            }
        }
            System.out.println("the sorted array is:");
            for(int k=0;k<5;k++)
        {
                System.out.print(a[k]);
        }
    }
}

JAVA Program to Print the season of a given month

public class Season
{
public static void main(String[] args)
{
int month=4;
switch(month)
{
case 1:
case 2:
case 3:
System.out.println("Automn");
break;
case 4:
case 5:
case 6:
System.out.println("summer");
break;

case 7:
case 8:
case 9:
System.out.println("winter");
break;
case 10:
case 11:
case 12:
System.out.println("spring");
break;
default:
System.out.println("Wrong input");

}
}
}
Download this program Here

JAVA Program to to find whether the given number is Armstrong or not

class Armstrong
{
public static void main(String[] args)
{
int n=143,temp,a=0,i=1;
temp=n;
while(i>0)
{
i=n%10;
a=(i*i*i)+a;
n=n/10;
}
if(a==temp)
System.out.println("the given number is armstrong");
else
System.out.println("the given number is not armstrong");
}
}
Download this program Here

JAVA Program to Print he Default Values

class Defaultvalues
{
static int a;
static byte b;
static char c;
static short s;
static long l;
static float f;
static double d;
static boolean bl;
public static void main(String[] args)
{
 System.out.println("Default values of various data types");
  System.out.println("int: "+a);
System.out.println("byte: "+b);
System.out.println("char: "+c);
System.out.println("short: "+s);
System.out.println("long: "+l);
System.out.println("float: "+f);
System.out.println("double: "+d);
System.out.println("boolean: "+bl);
}
}
Download this program Here

Mar 18, 2010

Aarya - 2 (2009) DVDRip Movie Torrent Download

 Aarya - 2 (2009) DVDRip Movie Torrent Download @ Nanoguns9
Punchline: story of a psychotic orphan
Genre: Youth/Romance
Type: Straight
Banner: Aditya Arts
Cast: Allu Arjun, Kajal Agarwal, Navadeep, Shraddha Das, Ajay, Brahmanandam, Mukesh Rishi, Sayaji Shinde, Srinivas Reddy, Tarzan, Radha Kumari etc
Music: Devi Sri Prasad
Cinematography: RD Rajasekhar
Editing: Marthand K Venkatesh
Written by: Vema Reddy
Direction: Sukumar
Producer: Aditya Babu & BVSN Prasad
Release date: 27 November 2009
Rating: 3/5

Mar 17, 2010

Premaku Velayara (1999) Telugu Movie DVDRIP Movie Torrent Download

Premaku Velayara (1999) Telugu Movie DVDRIP Movie Torrent Download @ Nanoguns9

Genre: Comedy
Type: Straight
Banner: Damini Entertainments Pvt Ltd
Cast: Rajendra Prasad, Srikanth, Siva Balaji, Ruthika, Pranathi, Sindhu Tolani, Ali, Brahmanandam, Jhansi, MS Narayana, Giri Babu, Dharmavarapu, Sunil, AVS, Gundu Hanmantha Rao, Jayalalitha and Venu Madhav
Art: Srinivasa Raju
Cinematography: Arun Kumar.
Dialogues: Janardhana Maharshi
Editing: KV Krishna Reddy
Stunts: Ram Lakshman
Lyrics: Bhuvanachandra, Chandrabose & Viswa
Producer: GV Prasad
Music, Screenplay & Direction: SV Krishna Reddy
Release Date: 27th January, 2006
Rating: 3.5/5

Check out GATE 2010 Results Here

The most awaiting GATE 2010 results are out for the students.
  1. GATE 2010 results are announced on March 15, 2010 at 10:00 hrs. at GATE offices and on the websites of IISc and seven IITs. 
  2. GATE 2010 score is valid for TWO YEARS from the date of announcement of the GATE 2010 results
  3. The GATE results will be made available to interested organizations (educational institutions, R & D laboratories, industries, etc.) in India and abroad based on written request by the organization and on payment. Details can be obtained from GATE Chairmen of IITs/IISc.
  4. The machine-gradable Optical Response Sheets (ORS) are graded and scrutinized with extreme care. There is no provision for regrading and retotalling. No photocopies of the machine-gradable Optical Response Sheets (ORS) will be made available. No correspondence in this regard will be entertained.
Here is the link  for the GATE 2010 results : GATE 2010 Results

All the best.

Mar 14, 2010

Sams Teach Yourself PHP, MySQL and Apache All in One

Sams Teach Yourself PHP, MySQL and Apache All in One @ Nanoguns9
Sams Teach Yourself PHP, MySQL and Apache All in One
Publisher: Sams | ISBN: 0672328739 + 0672328798 | edition 2006 | CHM | 624 pages | 12,6 mb
You own your own business. You have also created a website for your business that details the products or services that you offer, but it doesn't allow potential customers to purchase anything online. Don't risk losing business-learn to create a dynamic online environment using only three programs. PHP, MySQL and Apache are three popular open-source tools that can work together to help you create a dynamic website, such as an online shopping experience. Sams Teach Yourself PHP, MySQL and Apache All in One is a complete reference manual for all three development tools. You will learn how to install, configure and set up the PHP scripting language, use the MySQL database system, and work with the Apache Web server.
DOWNLOAD LINKS:
HOTFILE | RAPIDSHARE (Mirror)

Mar 13, 2010

The Tomb (2007) DVDRip English Movie Download

The Tomb (2007) DVDRip English Movie Download @ Nanoguns9
The Tomb (2007) DVDRip | 800Mb
A being known as “The Puppetmaster” holds victims captive in a tomb and tortures them.

DOWNLOAD LINKS:
HOTFILE
PART1 | PART2 | PART3 | PART4 | PART5 | PART6 | PART7
UPLOADING
PART1 | PART2 | PART3 | PART4 | PART5 | PART6 | PART7

BiTQueue Uninstall Plus! 4.1 Download

BiTQueue Uninstall Plus! 4.1 Download @ Nanoguns9
BiTQueue Uninstall Plus! 4.1 | 2.53 MB
Remove unwanted programs and all information associated with them. Secure erase/wipe sensitive information of your computer's hard disk. Clean your computer of temporary files that pile up on your hard drive Repair registry uninstall information for installed programs "Uninstall Plus" makes removing stubborn programs an easy task.Remove programs by right clicking their shortcut on the desktop. Uninstall Plus! computer cleaning feature allows you to clean your computer of unwanted files, secure erase files and/or folders so your privacy stays private.

LiveCD Utilities For Wireless Hacking 2010 - Complete Update

LiveCD Utilities For Wireless Hacking 2010 - Complete Update @ Nanoguns9
LiveCD Utilities For Wireless Hacking 2010 - Complete Update 10.03.2010 | 634.76 MB
An edited and slightly updated version of the popular LiveCD for working with wireless networks. Based on Ubuntu, provides a graphical interface.

Textbook of Clinical Neurology 3rd Edition Free Download

Textbook of Clinical Neurology 3rd Edition Free Download @ nanoguns9
Textbook of Clinical Neurology, 3rd Edition
Saunders | English | 2007-09-12 | ISBN: 1416036180 | 1392 pages | PDF | 54,2 MB
Organized to approach patient problems the way you do, this best-selling text guides you through the evaluation of neurologic symptoms, helps you select the most appropriate tests and interpret the findings, and assists you in effectively managing the underlying causes. Its practical approach makes it an ideal reference for clinical practice.

Gopi Gopika Godavari (2009) Telugu Movie DVDRipTorrent Download

Cast: Venu Thottempudi, Kamalini Mukherjee, Jeeva, Krishna Bhagawan, Sana, Kondavalasa etc
Story: Sankaramanchi
Choreography: Swarna Babu
PRO: Tradeguide Venkateswara Rao
Editing: Paidireddy
Dialogues: Padala Siva Subrahmanyam
Music: Chakri
Lyrics: Rama Jogayya Sastry
Producer: Valluripalli Ramesh
Direction: Vamsi
Released on: 10th July 2009
Rating: 2.5/5
Story:
Gopika (Kamalini Mukherjee) is a doctor who serves patients in villages on the banks of River Godavari on a mobile hospital. Shyam Prasad, another young doctor gets inspiration from her to run the mobile hospital in his place. He also proposes her to marry but she postpones it citing some professional goals. Meanwhile Uma, a friend of Gopika studying in Hyderabad, commits suicide and that incident makes Gopi (Venu), a stage singer, get acquainted to her. They never meet but only keep in touch on phone. As and when they try to meet each other some problem arises and they remain unseen to each other.  Finally they meet but in an unexpected situation still unknown to each other!!How that situation would arise?  What happens from then? That has to be watched on screen.
SCREENSHOTS:

DOWNLOAD LINKS:
ZIDDU.com (Torrent)

Mar 12, 2010

Prince (2010) - Its ShowTime Hindi movie songs Download

Prince (2010) - Its ShowTime Hindi movie songs Download @ Nanoguns9
Cast : Vivek Oberoi, Aruna Shields, Nandana Sen, Niroo Singh & Sanjay Kapoor
Director : Kookie V Gulati
Producer : Kumar S Taurani
Lyrics : Sameer
Music : Sachin Gupta 
Remixed By : DJ Suketu feat Aks
.:: Tracklist ‘n’ Download Links ::.

Click below to Download all the songs (320 VBR – 135 MB)

RS or MF or SS or MU

OR

Click below to Download all the songs (128 kbps – 68 MB)

RS or MF or SS or MU

OR

Click on the song to Download (128 kbps)

01 – Atif Aslam & Garima Jhingon – O Mere Khuda
Download Link : MU or MF or SS

02 – Atif Aslam & Shreya Ghoshal – Tere Liye
Download Link : MU or MF or SS

03 – Atif Aslam – Kaun Hoon Main
Download Link : MU or MF or SS

04 – Atif Aslam – Aa Bhi Ja Sanam
Download Link : MU or MF or SS

05 – Alisha Chinai & Hard Kaur – Jiyara Jiyara
Download Link : MU or MF or SS

06 – Monali Thakur – Ishq Mein
Download Link : MU or MF or SS

07 – Atif Aslam & Garima Jhingon – O Mere Khuda (Dance Mix)
Download Link : MU or MF or SS

08 – Atif Aslam & Shreya Ghoshal – Tere Liye (Dance Mix)
Download Link : MU or MF or SS

09 – Atif Aslam – Kaun Hoon Main (Dance Mix)
Download Link : MU or MF or SS

10 – Atif Aslam & Garima Jhingon – Aa Bhi Ja Sanam (Dance Mix)
Download Link : MU or MF or SS

11 – Atif Aslam & Shreya Ghoshal – Tere Liye (Hip Hop Mix)
Download Link : MU or MF or SS

12 – Atif Aslam – Kaun Hoon Main (Lounge Mix)
Download Link : MU or MF or SS

13 – Alisha Chinai & Hard Kaur – Jiyara Jiyara (Bhangra Mix)
Download Link : MU or MF or SS

14 – Atif Aslam, Shreya Ghoshal, Alisha Chinai, Garima Jhingon & Hard Kaur – Prince (Mega Mix)
Download Link : MU or MF or SS

15 – Sachin Gupta – Tere Liye (Unplugged)
Download Link : MU or MF or SS

16 – Instrumental – Prince Theme
Download Link : MU or MF or SS

Mar 11, 2010

CaptureWizPro v4.40 Free Download

CaptureWizPro v4.40 Free Download @ Nanoguns9
CaptureWizPro v4.40 | 3.04 MB
CaptureWizPro is a professional tool for capturing anything on your screen, even tricky items like the entire contents of scrolling areas, drop-down lists, tool tips, mouse pointers and screen savers. There's also a high-performance recorder for capturing streaming video or creating demos. Output recordings to WMV, AVI or GIF. Innovative features make it fast and easy.
Screen captures take just 5 seconds.
CaptureWizPro will save you time and effort. Just start the tool, select a portion of your screen, then choose an output, like Save, Print, Copy or Email. That's it!
Screen capture for everyone.
CaptureWizPro enables everyone to capture whatever's on the screen and share it with others. It's like having digital scissors, use it to make perfect copies of anything from video presentations to computer settings or PDF files to treasure maps.
Easy for beginners, powerful for pros.
Simple tools, visible over any background, guide you through the steps. You'll love our pop-out capture bar, speedy predictive capture tool, fully automatic bi-directional scrolling, and full-screen preview. Send captured content to an incrementally numbered file (GIF, JPEG, PNG, or BMP), printer, email, image editor or desktop sticky note. Plus, a thumbnail viewer stores screen captures for later use. Advanced users will appreciate the customizable buttons and hot keys.
A screen capture tool for everyday use.
CaptureWizPro will quickly become your favorite tool when you see how fast and handy it is. You'll use it every day to explain, remember and organize!

DOWNLOAD LINKS:

BreezeTree Software FlowBreeze 2.4.25 Download

BreezeTree Software FlowBreeze 2.4.25 Download @ Nanoguns9
BreezeTree Software FlowBreeze 2.4.25 | 4.05 MB
FlowBreeze is a Microsoft® Excel® add-in that automates the flowcharting process by converting your text into flowcharts. FlowBreeze lets you create flowcharts by just typing. You simply type in each flowchart step, and press . The text is replaced by a flow chart symbol. Formatting is applied, symbols are aligned, and a connector is added automatically.
Save Time
FlowBreeze is the perfect tool for creating flowcharts because it makes flowcharting easy. You will benefit from many handy features that save you time and make flowcharting painless:
  • Create flowcharts just by typing.
  • Pre-layout flowchart content on a spreadsheet.
  • Convert existing text or documents (e.g. Word) into a flow chart with the Text-To-Flowchart Wizard.
  • Automatically add Start and End Terminator symbols.
  • Assign keywords to generate specific flowchart symbols.
  • Make Flowcharting a Painless Process
  • Apply formatting styles in a single click.
  • Generate a flowchart symbol key at the click of a button.
  • Automatically add connectors from the previous symbol.
  • Create uniformly sized shapes.
  • Design custom flowchart templates or use one of the many pre-made templates.
  • (Including cross-functional swim lanes, title blocks, opportunity charts, deployment charts, DMAIC diagrams, SIPOC diagrams, PDCA diagrams, and many more flowchart templates.)
  • Be Creative
  • Style your flowchart symbols with up to 84 built-in formats.
  • Style your connectors with 21 built-in formats
  • Includes 124 available symbols, including flowchart symbols, block arrows, callouts and more.
  • Add straight, elbow, or curved connectors.
  • Export flow charts as 6 picture formats (PNG, BMP, JPG, GIF, WMF, TIF).
  • Collaborate
  • Copy and paste flowcharts directly into Word or PowerPoint.
  • All flowcharts are editable by anyone using the built-in Microsoft Office drawing tools.
  • Save flowcharts as Excel files.
  • Anyone with Excel can view, edit, or maintain the flowcharts.
Home Page
DOWNLOAD LINKS:

Webuser - 11 March 2010 magazine Free Download

Webuser - 11 March 2010 magazine Free Download @ Nanoguns9
Webuser - 11 March 2010 | English | 76 pages | PDF | 21.00 Mb
Webuser is a top UK's internet magazine featuring news, software and website reviews, funny websites, broadband price guide, technical help and forums.
DOWNLOAD LINKS:

Takkari Donga (2002) DVD Rip Movie Torrent Download

Takkari Donga (2002)  DVD Rip Movie Torrent Download @ Nanoguns9
Star Cast:    Mahesh Babu, Lara Dutta, Bipasha Basu, Krishna, Tanikella Bharani, Rahul Dev.
Director:   Jayanth C Paranji
Producer:   Jayanth C Paranji
Music Director:   Mani Sharma
Lyricst: Kulashekher,  Vennelakanti,  Chandra Bose,  Bhuvana Chandra
Singers: Shankar Mahadevan, Tippu, Kalpana, S P Balasubramaniam, Prasanna, S.P.B.Charan, Usha, KK
The Story : Shaka (Rahul Dev) killing his own brother for particular information, which is also known to another man Veeru Dada. In the encounter Veeru Dada (Ashok Kumar) jumps off into a river from a cliff.

After 18 years, we have Veeru Dada with a leg cut off giving info to Raja (Mahesh Babu), a mischievous thief who robs off the money from banks in a style. Raja gives Veeru Dada a share of 50% for all his tip offs. Raja becomes more daring as the price tag on his head increases by thousands.

There is another mischievous thief Panasa (Bipasha Basu) along with uncle follows Raju...

SCREENSHOTS:
Takkari Donga (2002)  DVD Rip Movie Torrent Download @ Nanoguns9
Takkari Donga (2002)  DVD Rip Movie Torrent Download @ Nanoguns9
Takkari Donga (2002)  DVD Rip Movie Torrent Download @ Nanoguns9
Takkari Donga (2002)  DVD Rip Movie Torrent Download @ Nanoguns9

DOWNLOAD LINKS:
ZIDDU.com (Torrent)

Mar 10, 2010

13B (2009) Telugu DTH Rip Movie Torrent Download

13B (2009) Telugu  DTH Rip Movie Torrent Download @ Nanoguns9

Director :    Vikram K. Kumar
Cast :         R. Madhavan, Neetu Chandra, Ravi Babu, Murli Sharma, Poonam Dhillon.
Music Director :    Shankar Mahadevan, Ehsaan Noorani, Loy Mendonsa
Lyricist :         Neelesh Misra
Cinematographer : H. Laxminarayan
Story Writer :         Vikram K. Kumar
Editor :         Sreekar Prasad
Playback Singer :   Shankar Mahadevan, Karthik, Chitra, Baba Saigal, Anushka Manchanda, Loy Mendonsa
The Story : Manohar, an upwardly mobile middle class Indian moves into a new apartment - 13B on the 13th floor with his family. From the first day in their new home, the women are hooked on to a new TV show 'Sab Khairiyat' (All's Well). The show is about a family eerily similar to theirs who have also just moved into a new house. As the TV show unfolds, all the incidents that happen in the show start happening to Manohar and his family. Initially, a number of happy events take place and a lot of good things happen, both in the show and with Manohar's family. Then things take a turn for the worse...

SCREENSHOTS:
13B (2009) Telugu  DTH Rip Movie Torrent Download @ Nanoguns9
13B (2009) Telugu  DTH Rip Movie Torrent Download @ Nanoguns9
13B (2009) Telugu  DTH Rip Movie Torrent Download @ Nanoguns9
13B (2009) Telugu  DTH Rip Movie Torrent Download @ Nanoguns9

DOWNLOAD LINKS:
ZIDDU.com (Torrent)

Station Master 1983 1CD DvdRip Movie Torrent Download

Station Master 1983 1CD DvdRip Movie Torrent Download @ NAnoguns9
Movie....................Station Master
Year.....................1983
Cast.....................RajendraPrasad,Rajasekhar,Aswini,Jeevitha,RaoGopalRao........
Director.................KodiRamakrishna
SCREENSHOTS:
Station Master 1983 1CD DvdRip Movie Torrent Download @ NAnoguns9
Station Master 1983 1CD DvdRip Movie Torrent Download @ NAnoguns9
Station Master 1983 1CD DvdRip Movie Torrent Download @ NAnoguns9
Station Master 1983 1CD DvdRip Movie Torrent Download @ NAnoguns9

DOWNLOAD LINKS:
ZIDDU.com ( Torrent)

Varudu (2010) Telugu Movie Songs Download

Cast : Allu Arjun, Arya, Suhasini Mani Ratnam, Sayaji Shinde
Director : Gunasekhar
Producer : D.V.V.Danaiah
Music : Mani Sharma
Lyrics : Veturi
.:: Tracklist ‘n’ Download Links ::.

Click below to Download all the songs (320 VBR – 73 MB)

RS or MF or SS or MU

OR

Click below to Download all the songs (128 kbps – 35 MB)

RS or MF or SS or MU

OR

Click on the song to Download (128 kbps)

01 – Saare Jahaa.. Premaa Yahaa
Singers : Benny
Download Link : MU or MF or SS or RS

02 – Aidhurojula Pelli
Singers : Jamuna Rani, Hema Chandra, Malavika, Vijayalakshmi, Sunandha, Ranjith
Download Link : MU or MF or SS or RS

03 – Kalalu Kaavule
Singers : Hema Chandra, Malavika (Humming)
Download Link : MU or MF or SS or RS

04 – Thalambraalatho
Singers : Hema Chandra, Malavika
Download Link : MU or MF or SS or RS

05 – Bahusha Vo Chanchalaa
Singers : Sonu Nigam, Shreya Ghoshal
Download Link : MU or MF or SS or RS

06 – Aidhurojula Pelli
Singers : Hema Chandra, Malavika
Download Link : MU or MF or SS or RS

07 – Relaare Relaare
Singers : Karthik, Geetha Madhuri
Download Link : MU or MF or SS or RS

Mar 7, 2010

Magadheera (2009) DVD Rip Movie Download Torrent

Magadheera (2009) DVD Rip Movie Download Torrent @ Nanoguns9
Punchline: grand film
Genre: Romance/Action
Banner: Geeta Arts
Cast: Ram Charan Teja, Kajal Agarwal, Srihari, Sunil, Brahmanandam, Sarath Babu, Rao Ramesh, Surya, Mumaith Khan, Sameer, Sekhar, Kim Sharma, Saloni & Hema
Music: MM Keeravani
Screenplay, & Direction: SS Rajamouli
Sound suvervision: Kalyani Malik
Cinematography: Senthil Kumar
Dialogues: Ratnam
Art: Ravinder
Editing: Kotagiri Venkateswara Rao
Fights: Peter Hynes & Ram Lakshman
Styling: Rama Rajamouli
Co-producer: Bhogavally Prasad
Story: Vijayendra Prasad
Producer: Allu Arvind
Rating: 3.5/5
Release date: 30 July 2009
Story:
The story happens in the year 1609. Kala Bhairava (Ram Charan Teja) is the protector/cheif guard of Udayghad kingdom. Mitra (Kajal Agarwal) – the heir princess is in love with him. But there is a bad relative of the king who wants to marry her. Sher Khan (Srihari) plans to invade Udayghad. In the process ensued, all of them die. These four people take rebirth after 400 years in the contemporary era. Harsha (Ram Charan Teja) is a race biker. He falls in love with Indu (Kajal Agarwal). And a bad guy called Raghuveer is after her. The rest of the story is all about how they trace themselves back to the past and settle the unfinished business.

SCREENSHOTS:
Magadheera (2009) DVD Rip Movie Download Torrent @ Nanoguns9
Magadheera (2009) DVD Rip Movie Download Torrent @ Nanoguns9
Magadheera (2009) DVD Rip Movie Download Torrent @ Nanoguns9
Magadheera (2009) DVD Rip Movie Download Torrent @ Nanoguns9
Magadheera (2009) DVD Rip Movie Download Torrent @ Nanoguns9
Magadheera (2009) DVD Rip Movie Download Torrent @ Nanoguns9
Magadheera (2009) DVD Rip Movie Download Torrent @ Nanoguns9
Magadheera (2009) DVD Rip Movie Download Torrent @ Nanoguns9

DOWNLOAD LINKS:
Magadheera (2009) - DVD - Rip -2.16GB
and
Making Magadheera-DVDRip-413MB
Note: Bit torrent software should be installed in your computer to download the movies though torrent files.
Download Bit-Torrent software here: Bit torrent 6.3

Mar 5, 2010

Beginning XML, 4th Edition (Programmer to Programmer)

Beginning XML, 4th Edition (Programmer to Programmer) @ Nanoguns9
Beginning XML, 4th Edition (Programmer to Programmer)
Publisher: Wrox | ISBN: 0470114878 | edition 2007 | PDF | 1255 pages | 10.1 mb

DOWNLOAD LINKS:
HOTFILE | RAPIDSHARE (Mirror)

Pocket Consultant: Cardiology eBook Download

Pocket Consultant: Cardiology eBook Download @ Nanoguns9
Pocket Consultant: Cardiology
Publisher: Blackwell Publishers | ISBN 1405101970 | 5th Edition - March 2003 | PDF | 525 Pages | 5.1 MB

DOWNLOAD LINKS:
HOTFILERAPIDSHARE (Mirror)

New HUGE COLLECTION OF JNTU E-B0OKS

Software Project Management
http://www.ziddu.com/downloadlink/5262501/SoftwareProjectManagement.zip


Wireless Networks and Mobile Computing
http://www.ziddu.com/downloadlink/5262368/HandbookofWirelessNetworksandMobileComputing.zip


Ayala-The 8051 Microcontroller
http://www.ziddu.com/downloadlink/5262290/EbookAyala-The8051Microcontroller.zip


Data Mining-Concepts and Techniques
http://www.ziddu.com/downloadlink/5262185/DataMining-ConceptsandTechniques.zip


advanced computer architecture
http://www.ziddu.com/downloadlink/5218537/ACA3rded.zip


Soil_Physics_1
http://www.ziddu.com/download/5375880/Scaling_Methods_in_Soil_Physics.part1.rar.html


Soil_Physics_2
http://www.ziddu.com/downloadlink/5376120/Scaling_Methods_in_Soil_Physics.part3.rar


Modern.Instrumentation.Methods.andTechniques
http://www.ziddu.com/downloadlink/5376196/lysis.Modern.Instrumentation.Methods.andTechniques.rar



Binary_Digital_Image_Processing.rar
http://www.ziddu.com/download/5376444/Binary_Digital_Image_Processing.rar.html


Software_Project_Management
http://www.ziddu.com/downloadlink/5378214/Essentials_of_Software_Project_Management.rar


Client_Server_Computing
http://www.ziddu.com/downloadlink/5378181/lient_Server_Computing_Strategic_Technology_Series.zip


Mobile_Computing
http://www.ziddu.com/downloadlink/5378161/ebook.Mobile_Computing_Handbook.0849319714.zip


Data_Mining_Concepts_and_Technique
http://www.ziddu.com/downloadlink/5378022/Data_Mining_Concepts_and_Techniques_2ed.rar


Optical_Fibre_Communications
http://www.ziddu.com/downloadlink/5377794/Optical_Fibre_Communications.pdf


Digital_Image_Processing
http://www.ziddu.com/downloadlink/5376444/Binary_Digital_Image_Processing.rar


Modern.Instrumentation.Methods.andTechniques
http://www.ziddu.com/downloadlink/5376196/lysis.Modern.Instrumentation.Methods.andTechniques.rar


FundamentalsofDigitalLogicwithVHDLDesign
http://www.ziddu.com/downloadlink/5261945/FundamentalsofDigitalLogicwithVHDLDesign.pdf


WIRELESSCOMMUNICATION
http://www.ziddu.com/downloadlink/5249162/WIRELESSCOMMUNICATION-THEODORERAPPAPORTPGD.PDF


Fundamentals_Of_Managerial_Economics-Mcgraw-Hill
http://www.ziddu.com/downloadlink/5248999/Mcgraw-Hill_-_Fundamentals_Of_Managerial_Economics.pdf


The Operational Amplifiers And Analog Integrated Circuit
http://www.ziddu.com/downloadlink/5248890/thOperationalAmplifiersAnDAnalogIntegratedCircuits.pdf


Antennas_mcgraw-hill_2nd_ed_1988-john_d_kraus
http://www.ziddu.com/downloadlink/5248739/Antennas_mcgraw-hill_2nd_ed_1988-john_d_kraus.pdf


Digital Design and Synthesis2_Edition.
http://www.ziddu.com/downloadlink/5248594/gHDLAGuidetoDigitalDesignandSynthesis2_Edition.PGD.rar


Fundamentals Of ComputerOrganization And Architecture
http://www.ziddu.com/downloadlink/5248570/FundamentalsOfComputerOrganizationAndArchitecture.rar


DataMining-Concepts and Techniques
http://www.ziddu.com/downloadlink/5218571/DataMining-ConceptsandTechniques.zip


propability
http://www.ziddu.com/download/1463908/propability.pdf.html


Computer Networks
http://www.ziddu.com/download/1463871/ComputerNetworks.pdf.html


THE 8051 MICROCONTROLLER-SCOTTMACKENZIE
http://www.ziddu.com/downloadlink/3818471/THE8051MICROCONTROLLER-SCOTTMACKENZIE.rar


Embedded systems design with 8051
http://www.ziddu.com/downloadlink/3818289/Embeddedsystemsdesignwith8051.rar


Embedded Systems The 2ndEdition By MuhammadAliMazidi
http://www.ziddu.com/downloadlink/3818216/EmbeddedSystemsThe2ndEditionByMuhammadAliMazidi.rar


8051 basedprojects
http://www.ziddu.com/downloadlink/3818319/8051basedprojects.rar


Human Computer Interaction
http://www.ziddu.com/download/3025954/HumanComputerInteractionHandbookPGD.pdf.html


Data Warehousing and Mining
http://www.ziddu.com/download/3017142/DataWarehousingandMiningPGD.rar.html


STM
http://www.ziddu.com/download/3223708/STM_Unit1.pdf.html


systems.Design.and.Implementation
http://www.ziddu.com/download/1347898/ystems.Design.and.Implementation.3rd.edbyTanenbaum.rar.html


ComputerNetworks_Tanenbaum
http://www.ziddu.com/download/1347768/ComputerNetworks_Tanenbaum_4ed.rar.html


computer organization
http://www.ziddu.com/download/1389083/computerorganization.pdf.html


MEFA_Most_Important_Questions
http://www.ziddu.com/download/1456128/MEFA_Most_Important_Questions.doc.html


Let Us C By Yaswanth Kanithkar
http://www.ziddu.com/download/5458895/Let_Us_C_-_Yashwant_Kanetkar.zip.html




Software_Project_Management_Essentials
http://www.ziddu.com/download/5378214/Essentials_of_Software_Project_Management.rar.html


Data_Communications_and_Networking
http://www.ziddu.com/download/5459073/Data_Communications_and_Networking.rar.html


ComputerSystemArchitecture3rdEd-MorrisMano
http://www.ziddu.com/download/5473948/_Manual-ComputerSystemArchitecture3rdEd-MorrisMano.rar.html


C and Data Structures
http://www.ziddu.com/download/5474045/c.and.data.structures.ebook.rar.html


Microelectronic Circuits 5th Oxford University Press
http://www.ziddu.com/download/5474483/th-MicroelectronicCircuits5thOxfordUniversityPress.rar.html


Digital Logic And ComputerDesign-MorrisMano
http://www.ziddu.com/download/5474193/DigitalLogicAndComputerDesign-MorrisMano.rar.html


ComputerGraphics_C_Version
http://www.ziddu.com/download/5569504/DonaldHearnPrenticeComputerGraphics_C_Version_2Ed.pdf.html


Software_Testing
http://www.ziddu.com/download/5569202/Wiley_Software_Testing.rar.html


Design_Texts_in_Computer_Science
http://www.ziddu.com/download/5568901/on_and_Design_Texts_in_Computer_Science.038795211X.zip.html


M1-1st year
http://www.ziddu.com/download/5568797/m1.rar.html


JavaServerPages
http://www.ziddu.com/download/5568612/OReillyJavaServerPages.zip.html


DATASTRUCTURESNOTES
http://www.ziddu.com/download/5568563/DATASTRUCTURESNOTES.rar.html


MM For 1st year
http://www.ziddu.com/download/5568875/MM.rar.html


Diabetes_Principlesand_PracticeSecondEdition
http://www.ziddu.com/download/5583270/ype_2_Diabetes_Principlesand_PracticeSecondEdition.pdf.html


Automatatheorylanguagesand.computation
http://www.ziddu.com/download/5670291/troductiontoautomatatheorylanguagesand.computation.pdf.html


Principles_Programming_Languages
http://www.ziddu.com/download/5801063/Principles_Programming_Languages.rar.html


MOBILE ADHOC NETWORKING
http://www.ziddu.com/download/5965264/MOBILEADHOCNETWORKING-BASAGNICONTIGIORDANOIVAN.rar.html


Micro electronic (Circuits 5th Oxford University Press)
http://www.ziddu.com/download/5965152/MicroelectronicCircuits5thOxfordUniversityPress.rar.html


8051 interfacing By Parivallal Kannan
http://www.ziddu.com/download/5964956/8051interfacingParivallalKannan.pdf.html


signals and systems
http://www.ziddu.com/download/5964947/signalsandsystems.rar.html


TCP IP Fundamentals
http://www.ziddu.com/download/5952867/TCPIPFundamentals.rar.html


MAD
http://www.ziddu.com/download/6271085/mad.ppt.html


Mobile Computing
http://www.ziddu.com/download/6272035/ebook.mobile_computing_handbook.zip.html


Computer Graphics
http://www.ziddu.com/downloadlink/5217537/Jand_Solutions.pdf
OR
http://www.ziddu.com/downloadlink/5217622/WileyComputerGraphics_ForJava.rar
OR
http://www.ziddu.com/downloadlink/5217796/presse6.pdf


networksecurity
http://www.ziddu.com/download/6271836/networksecurity.2.0.zip.html


digital Signal processing and digital communication
http://www.ziddu.com/download/6273493/viewdigitalSignalprocessinganddigitalcommunication.zip.html


Essential__Actionscript
http://www.ziddu.com/download/6271517/6-Essential__Actionscript__2.0.rar.html


WirelessNetworksandMobileComputing
http://www.ziddu.com/download/6271038/dSons-HandbookofWirelessNetworksandMobileComputing.pdf.html