Tag Archives: Programming

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

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

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