Skip to main content

Posts

Angry birds Go

Source : { TechnicaStudios.com } Angry birds Go coming Soon….!!!. The game that made Android fun to use. Back then people used to buy android phones only to play the “The Angry Birds Game”. such was the craze of angry Birds. People used to spent hours playing the fabulous and challenging levels that it offered. But, the game lost it popularity to games like Temple run, Subway Surfers. Rovio the Comapny that made this game earned millions in cash. Angry Birds merchandise sold like hot cakes. Angry Birds are back with a Bang. .!!!

Download Key-logger Software For Hacking

  Ghost Keylogger is an invisible easy-to-use surveillance tool that records every keystroke to an encrypted log file. The log file can be sent secretly with email to a specified receiver. Ghost Keylogger also monitors the Internet activity by logging the addresses of visited homepages. It monitors time and title of the active application; even text in edit  boxes  and message boxes is captured. If You are not satisfied with this check out another keylogger download here download rar password here Thank You.

How To Hack Facebook Accounts

Hi friends, Today I am going to reveal all the Best methods that can be used to hack a Facebook account password.  I will show Best ways to Hack Facebook Account Password that all hackers usually use to hack any Facebook account. 1. Facebook Phishing Attack : I am explaining this method first because its the most easiest and also the most popular method for hacking Facebook password.  if you you want to know which is my favorite method for Hacking Facebook account passwords and i will undoubtedly tell its simply  PHISHING . I will recommend my users to read this post for knowing how to hack Facebook using Phishing as i have explained it in detail here: How to hack Facebook accounts or Passwords using Phishing   2. Hacking Facebook account password remotely using  Keyloggers  and RAT's: Best method for advanced Hackers and my second favorite too. Its popularity is little but lower than Phishing only because it involves you to do...

Factorial Of A Number With Static Function And Variable (C#)

using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication10 {     class Program     {        static int num;        static long factorial = 1;        static void facto()         {                Console.WriteLine("Enter the number limit should be less than 20");             num = Convert.ToInt16(Console.ReadLine());             if (num > 20)             {                 Console.WriteLine("You exceed the limit ");             }             else             {                 if (num < 0)     ...

Prime Numbers In Range the User Want (C#)

using System; using System.Collections.Generic; class Program {      public void prime(int num)     {               Boolean isPrime = true;         Console.WriteLine("the prime number between 1-{0} is: ",num);         for (int i = 0; i <= num; i++)         {             for(int j=2;j<=num;j++)                 if (i != j && i % j == 0)                 {                     isPrime = false;                     break;                 }             if (isPrime == true)             { Console.WriteLine("{0}", i); }     ...

Division Of Greater Than First Number (C#)

using System; using System.Collections.Generic; class Program {     static void Main()     {         int a, b,result; Console.WriteLine("www.promohack.blogspot.com");         Console.WriteLine("Enter the first number");         a =Convert.ToInt16( Console.ReadLine());         Console.WriteLine("Enter the second number");         b = Convert.ToInt16(Console.ReadLine());         if (b == 0||b>a)         {             Console.WriteLine("Your second number should not be zero or greater than first number");         }         else         {             result = a / b;             Console.WriteLine("Your result is "+result);         } ...

Division Of Two Numbers In C#

using System; using System.Collections.Generic; class Program {     static void Main()     { Console.WriteLine("www.promohack.blogspot.com");//two print         int a, b,result;//declaring variables         Console.WriteLine("Enter the first number");         a =Convert.ToInt16( Console.ReadLine());//accept value from user         Console.WriteLine("Enter the second number");         b = Convert.ToInt16(Console.ReadLine());         if (b == 0)//condition         {             Console.WriteLine("Your second number should not be zero");         }         else         {             result = a / b;             Console.WriteLine("Your result is "+result); ...