Know More about CSS3 Transitions and JavaScript Slideshow Code

JavaScript JavaScript plays a crucial role in website designs and it carefully points out the different areas where it excels as a web-based language. It even describes the various situations where its utilization can really detract from the website performance. First things first, JavaScript is a famous browser based programming language that usually runs client …

Know More about CSS3 Transitions and JavaScript Slideshow Code Read More »

How to Bypass Cyberoam by using Wayback Machine to Access Blocked Sites on Wi-Fi [100% Working]

Does your college/school/office have blocked sites on wi-fi? Are you not able to get access? Then probably you are at the right place. The same has happened with me. In my college sites are blocked by using a firewall known as Cyberoam. By doing a lot of search I came to a solution. Here we …

How to Bypass Cyberoam by using Wayback Machine to Access Blocked Sites on Wi-Fi [100% Working] Read More »

Bluehost Review

BlueHost is comparably any old company which was established way back in the year 1996 and it is been 15 years since it’s been imparting the service. Its enriching past is a live testimony of the exemplary service which it imparts. It is important to let everyone know about the BlueHost web hosting features in …

Bluehost Review Read More »

C++ program to swap two numbers using class

#include<iostream.h> #include<conio.h> class swap { int a,b; public: void getdata(); void swapv(); void display(); }; void swap::getdata() { cout<<“Enter two numbers:”; cin>>a>>b; } void swap::swapv() { a=a+b; b=a-b; a=a-b; } void swap::display() { cout<<“a=”<<a<<“tb=”<<b; } main() { clrscr(); swap s; s.getdata(); cout<<“nBefore swap:n”; s.display(); s.swapv(); cout<<“nnAfter swap:n”; s.display(); getch(); return 0; }