Skip to main content

Posts

KAMAL HAASAN

WHO goes TO DIRECT KAMAL HAASAN'S NEXT? Suganth M  With Kamal Haasan wrapping up the shoot of Thoonga Vanam, there has been speculation on his next project, that goes to be a `quickie' that he can act in to compensate the loss incurred by the producers of Uttama Villain. whereas the names of Singeetham Srinivasa Rao and Mouli square measure being bandied regarding, we have a tendency to hear that the Ulaganayagan is really in talks with six or seven administrators and is nonetheless to decide on one in every of them to figure with. Kamal is keen on finishing this film, that is anticipated to be a comedy , in an exceedingly short period (much like however he did with Papanasam), in order that he will move to a lot of formidable ones. The film's producer is additionally nonetheless to be chosen and it'll be set by a federation of producers and distributors headed by Tirupur Subramaniam , in line with a supply near the actor.  Click To Enlarge

Best games in lumia

1.Six Guns          https://www.microsoft.com/en-US/store/Apps/Six-Guns/9WZDNCRFJ0QR 2.Asphalt-7        https://www.microsoft.com/en-us/search/result.aspx?q=asphalt-7&form=apps 3.Temple Run2         https://www.microsoft.com/en-us/search/result.aspx?q=temple%20run2&form=apps 4.Lara-Craft_leric    https://www.microsoft.com/en-us/search/result.aspx?q=laracroft&form=apps 5.jetpack-joyride      https://www.microsoft.com/en-US/store/apps/Jetpack-Joyride/9WZDNCRFJCDS

Employee Details in java

CONCEPT: - We want to save data securely,       Requirements:                           1.local variable defined as a public                           2.Setter it is used to controller shift to the variables                           3. Getter it is used to return the value to a constructor                           4. we got the getter value,we did not understand,we need to  value converted,so we                                    use toString                             5.whether Entered data is correct or not as per stored data at the time we write lo...

Multiple Threads Accessing one method in Java

Concept:                we want access multiple thread using one method    Main Method:  Several threads are coming different location than handle it using method                           variable names are represented as global it as unique variable as all thread   step:-1 synchronized method used to handle multiple thread and execute one by one thread                         with in the main main method variable names are represented because of step by step execution of threads at the time same variable name represented as different thread step:-2  multiple threads are coming we want execute step by step by using notify and wait              notify  means it will be report coming  to execution of threads           ...

Concept of Threads in Java

Before we learn Threads, We know the Process,thread is part of Process Process:- When ever we are operating multiple application is called Process. Thread:- For an example we are printing the document by using word,notepad etc... While doing this process of printing copy and paste of document, at the time copy paste content also printing,this process is also called as THREADS. Today's world applications standards will be more,if you use Threads in Java application standards will be increased.. Ex :- public class HelloThread extends Thread  //Thread present in java.lang package so we extends the                                                                             thread { public void HelloThread()   //Method name same as main method because of run  the  ...

How to screenshot Windows phone

Press and hold the volume up,volume down buttons and power button

String Reverse in java

public class SplitReverse // All the Program contains class { public static void main(String[] args) // Method of Program        {           int a=0,i;           String s="Hello All. How Are You?  i am learning JAVA.";           String[] s1=s.split(" "); // Split the variable as per space           System.out.println(s1.length); // print stream length of the string            for(i=s1.length;i>0;i--) { System.out.println(" "s1[i-1]); // print stream Reverse of String } } } INTERVIEW QUESTION FOR JAVA Java program for EMPLOYEE DETAILS Java program for MULTIPLE THREADS ACCESSING ONE METHOD Java program for SINGLE THREADS ACCESSING ONE METHOD Java program for Strin Reverse java Program for Twin Prime numbers JAVA PROGRAM FOR EQUILATERAL TRIANGLE JAVA PROGRAM FOR RIGHT ANG...