Saturday, 29 June 2019

Html programming

/*Program From ApkZube*/

Convert decimal to binary

class DecimalBinaryExample{
   
     public void convertBinary(int num){
        int binary[] = new int[40];
        int index = 0;
        while(num > 0){
          binary[index++] = num%2;
          num = num/2;
        }
        for(int i = index-1;i >= 0;i--){
          System.out.print(binary[i]);
        }
     }
   
     public static void main(String a[]){
        DecimalBinaryExample obj = new DecimalBinaryExample();
        System.out.println("Binary representation of 124: ");
        obj.convertBinary(124);
        System.out.println("\nBinary representation of 45: ");
        obj.convertBinary(45);
        System.out.println("\nBinary representation of 999: ");
        obj.convertBinary(999);
     }
   }
 
 
   >Output:
 
   Binary representation of 124:
   1111100
   Binary representation of 45:
   101101
   Binary representation of 999:
   1111100111
   

Friday, 28 June 2019

Facebook hacking

WhatsApp hacking


Create by Rohit Pandey 
Only programming hacking of hacking Chandigarh University
Wi-Fi hacking
And web hacking
Facebook hacking
WhatsApp hacking
Aunty bicycle Android device hacking software development projects on time

My prank website ...https://geekprank.com/hacker/
Rohit Pandey NSG hacking world
Hacking ID 8934887463kp
Password ............. ..... 
Enrollment ID 9

Updated   Sultanpur hack with my permission
Hackin    g.    WhatsApp no.   6392266767
Only WhatsApp Rohit Pandey
http://www.renthackers247.com/?i=
1http://www.renthackers247.com/?i=1

Html programming

/*Program From ApkZube*/ Convert decimal to binary class DecimalBinaryExample{          public void convertBinary(int num){         ...