Saturday, November 26, 2016

How To Root Any Android Mobile


 A Root Is Super User Permission To Access All The  System File And System Application.
     


       *  A Following Setp TO use  Root Any Android Device

         Step:1
                           
                   
                       A Download King Root Apps.
                                             (Play Store or Any Other)
        Step:2
                               
                                Install The Application And On The Internet Connection
   
                 To Open The Apps  And Starting Root Process
      Step:3
                                   
                 After ComPlate Root Your Android Mobile..

Note :
IT IS RISK WORK  FOR MOBILE DIRECT AND INDIRECT
                      

Monday, September 26, 2016

Thread Exampale Of CurrentThread In java Programming

CurrentThread Exampale
class currentthreadex
{
       public static void main(String arg[])

     {

           Thread th=Thread.current.Thread();

          System.out.println("Current Thread Is:"+th);

         th.setName("exampale thread");

        System.out.println("After Name Change:"+th); //after change thread name of exampale thread

       try

      {

           for(int i=5;i>0;i--)

           {

                   System.out.println(i);

            }

      }

      catch(InterruptedException h)

     {

           System.out.println("Main Thread Interrrupted");


      }

     }

}

Exception Handling Examplae Using Try And Catch in Java Programming

//Exception Handling In Try Catch Examplae

class excep
{
     public static void main(String args[])
    {
       int p,q;
        try
{
         p=0;
         q=45/p;
         System.out.println("A Not Exicute"); //This not run but it above error generated
    }
catch(ArithmeticException s)
{
   System.out.println("Division By Zero Not Possible");

}
System.out.println("It Will be Exicute After Catch Statement");
}
}


Output:

  Division By Zero Not Possible
It Will be Exicute After Catch Statement



   

Tuesday, September 20, 2016

Enter A Integer Number And Display It Total Sum Program in C++ Programming Lang

#include<conio.h>
#include<iostream.h>
void main()
{
int no,add=0,c;
  clrscr();

  cout<<"\n\t\t Enter Number to display It addition Sum:->";
  cin>>no;
  for(c=1;c<=no;c++)
  {

  add=add+c;     //addition Of Each Number
   }
  cout<<"Sum Of Entered Number Is:"<<add<<endl;

  getch();

   }

Output:
--------------------------------------------------------------------------------------------------------------------------
Enter Number to display It addition Sum:->55
Sum Of Enter Number:1040