Skip to main content

5 Google Secret Features You Need To Know

Google has countless secret features that we never knew existed. You can do many interesting things by using these features. Here is 5 of them:

#1 Do A Barrel Roll

Type "do a barrel roll" in google search box. Click on search icon and see the magic. The whole web page will do a barrel roll!




 #2 Zerg Rush

Type "zerg rush"  in google search box and click on the search icon. Searching for zerg rush creates a page being eaten by 'O's. If you click on each 'O' three times, it will be vanished. In the end, all the 'O's will create a logo "GG" written on it.

#3 Atari Breakout

This is the most perfect thing to do when you are bored. You can play game on google image using this feature. To play the game, first go to google image. Then, type "atari breakout" in the search box and hit enter. The game will automatically begin! Play the game and kill your boredom.

#4 Flip A Coin

Feeling confused about making a decision? Want to toss a coin to make the decision but there's no coin around? Don't worry. Google will help you. Search "flip a coin" and google will toss a coin for you!


  #5 Google In 1998

Ever wanted to see how google used to look like back in 1998? Well, you can experience it right now! Search "google in 1998" in google and experience the google in 1998.

Comments

Popular posts from this blog

Currency Converter - USD & BDT [C Programming]

#include <stdio.h> void main() {     int i;     float usd, bdt;     printf("Press 1 to convert USD to BDT\nPress 2 to convert BDT to USD\n");     printf("Enter your choice: ");     scanf("%d", &i);     switch(i)     {         case 1:             printf("Enter amount in USD: ");             scanf("%f", &usd);             bdt = usd * 80;             printf("1 USD = 80 BDT\n");             printf("%0.3f USD = %0.3f BDT", usd, bdt);             break;         case 2:   ...

Greatest Value Among Three Numbers [C Programming]

#include <stdio.h> void main() {     int a, b, c;     printf("Enter a number in a:");     scanf("%d", &a);     printf("Enter a number in b:");     scanf("%d", &b);     printf("Enter a number in c:");     scanf("%d", &c);     if(a >= b && a >= c) // a > b, a > c     {         printf("%d is largest", a);     }     else if(b >= a && b >= c) // b > a, b > c     {         printf("%d is largest", b);     }     else if(c >= a && c >= b) // c > a, c > b     {         printf("%d is largest", c);     } }