Producing Beeps Of Different Frequency in C++

Can you suppose that beeps of different frequency and duration be produced by C++ Program…Ya its possible to create beeps of different frequency through a c++ function and you would be amazed to hear that. Program to Echo Beep of frequency 500Hz…. Syntax: #include<windows.h> //A Header File used for windows programming main() { Beep(500,1000); //Beep(frequency_in _hertz,Duration_in_ms) } Note:Take care of … Read more

How to Hack Gmail, Facebook and Yahoo Ids (Phishing)

Many people ask me that they want to hack Gmail, Facebook or yahoo id’s of their friends. Today I am sharing with you the concept of Phishing. This is similar to Fishing, where the fisherman puts a bait at the hook, thus, pretending to be a genuine food for fish. But the hook inside it takes the complete fish out … Read more

Most Famous and Disastrous Programming Bug (Y2K Bug)

The Year 2000 problem (also known as the Y2K problem, the Millennium bug, the Y2K bug, or simply Y2K) was a problem for both digital (computer-related) and non-digital documentation and data storage situations which resulted from the practice of abbreviating a four-digit(2000) year to two digits(00). Y2K was the common abbreviation for the year 2000 software problem. The abbreviation combines … Read more

Enable USB Ports Disabled by Virus

Creating a Good Virus is Important but How to Repair Your Computer/Files Infected by Virus is more Important, So here is Solution of Virus Which will Disable Your USB Ports. Just Run .exe file and Your Ports will start Working Again Install Turbo C or C++ Open TC.exe and there write the coding #include<stdlib.h> void main() { system(“reg add HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\USBSTOR … Read more

How to create a Virus To disable USB Ports

Virus is a program which infects computer, in different way. I am explaining about a Virus Which can easily be made in C or C++. When we run .exe file of this Pen drive-usb virus then whenever we connect pen drive with our computer usb,it will not be connected. Operating System would not be able to detect pen drive. Code … Read more

Script to Change Home Page of Browser

Sometime We want to set the Home Page of Visitor Browser with our site. So that when he/she starts the browser, our site will be opened. You have seen this very often that When you download or installed a software or Add-on your home page is changed. So today i am presenting to you a small JavaScript Code which will be able … Read more