Skip to main content

Top 20 Best Google Search Tips and Tricks That You Must Know

What's This?
google-search-tips-tricks
Web search has become synonymous with Google search. Other search engines like Bing and Yahoo are trying their best to give a worthy competition to Google, but none of them are a real threat to Google. Even companies like Facebook and Google are devising their own ways to challenge Google. Facebook recently revealed its plans for an internal search engine and Apple is making its contextual search Spotlight more effective.
Well, now I’m going to refrain myself from telling you about what others are planning and doing. Instead, I’ll be telling you some useful and cool Google search tips and tricks that will make your life easier.
Let’s take a look at the Google search tips and tricks one by one:
Search exact phrases
Use quotes to search an exact phrase.
Search phrases with unknown words
Use an asterisk to indicate the unknown words. Ex: “* is bigger than Earth.”
Search for a particular meaning
Add a hyphen before a word to avoid a particular search term. This comes handy when you search something and it has several meanings. Ex. terminator –movie
Search inside a website
Use a colon after site: and write website’s name to search within the site Ex. drones. site:fossbytes.com google
google-search-tips-site-search
Search definitions and spellings
As the name suggests, define: operator gives you the dictionary definitions and synonyms. Ex: define:bytes
Search news archives as old as mid-1880s
Google News lets you search over 100 years’ of archived news.
Use as a calculator
Google lets you do simple math by simply searching the equation.
Recipe search
If you are willing to search your favorite food, click on “search tools” and you can filter the recipes based on ingredients, calories and cook time.
Intitle search
By adding “intitle:” before the search term, you will get the results that will produce with that particular term in the title of page.
Social tag search
Add symbol “@” before the search term. Ex: @fossbytes
Searching trending topics
Add a hashtag before the search term to get the results with trending topics
Food comparison search
Having trouble deciding your dinner order? Take Google’s help. Ex: Type “Pizza vs Burger” to get side-by-side comparisons.
google-search-tips-food-comparison
Use Google Images
To search images, or more accurately ever come across a picture that reminds you of some picture and you want to know the source? Try images.google.com and you’ll be find the similar images on the web.
Flip a coin
This is one of my favorite Google search tips. Juts press the mic icon in Google’s search bar and say these magical words: “flip a coin” or “heads or tails.”
Weather Search
To take a look at the weather predictions of your city, just add “weather” before the city’s name or zipcode. Ex: “weather New Jersey”
google-search-tips-weatherJPG
Translate with Google
Type “translate language1 to language2” to get the Google translator working instantly for you. Ex: “translate english to french hello”
Check the time
Just enter “time” followed by the name of the region to get the accurate regional time.
Check flight status
Want to check if your flight is right on time? Just enter your flight number in search abr and hit enter to the real-time flight status.
The love quote generator
Want a quick love quote and a little romance? Just press the mic icon located on Google search bar and say “give me a love quote” or “I love you.”
IP address search
Just enter “ip address” in the search bar and look up your ip address instantly.
Bonus: Well, these were some useful Google search tips and trick. There are tons of Google Easter eggs that are you’ll definitely love. Click on the link below to have some fun with Google 😉

 

Comments

Popular posts from this blog

How to find and remove duplicate files from PC uplicate files can cause all kinds of problems on your computer, taking up precious storage room, confusing your photo or media manager apps, and generally getting in the way of searches and other operations when you'd rather they didn't. You don't have to accept duplicate files as an inevitability of running a PC, though: Here's how to get rid of them. Duplicate files can crop up for all kinds of reasons: Maybe you downloaded a file, forgot it was there, and then downloaded it again; maybe you copied a folder of images and then never got around to getting rid of the originals. Whatever the reason, they clog up your disk space and shouldn't be left to gather dust. For the purposes of this guide we're going to use DupeGuru-it's Lifehacker's pick as the best duplicate file finder for Windows, and it's available for Mac and Linux as well. If you're not taken with DupeGuru, then some of the best al...

Gmail Automation

Gmail Automation: 5 Useful Google Scripts to Automate Your Gmail 1. Auto delete emails after X number of days Very often, after we read the email, we will just keep it in our inbox, regardless whether it is useful or not. While Google gives you tons of space to store your emails, you might still want to clean up your inbox and get rid of those useless emails. The following script can check emails with the “Delete Me” label and delete them after “x” number of days. 1. Go to  Google Scripts  and create a blank project (make sure you are logged into your Google account). Paste the following script and save it. function auto_delete_mails ( ) { var label = GmailApp.getUserLabelByName ( "Delete Me" ) ; if ( label == null ) { GmailApp.createLabel ( 'Delete Me' ) ; } else { var delayDays = 2 // Enter # of days before messages are moved to trash var maxDate = new Date ( ) ; maxDate.setDate ( maxDate.getDate ( ) -delay...

Dynamic Host Configuration Protocol (DHCP)

The Dynamic Host Configuration Protocol (DHCP) is a network service that enables host computers to be automatically assigned settings from a server as opposed to manually configuring each network host. Computers configured to be DHCP clients have no control over the settings they receive from the DHCP server, and the configuration is transparent to the computer's user. The most common settings provided by a DHCP server to DHCP clients include: IP address and netmask IP address of the default-gateway to use IP adresses of the DNS servers to use However, a DHCP server can also supply configuration properties such as: Host Name Domain Name Time Server Print Server The advantage of using DHCP is that changes to the network, for example a change in the address of the DNS server, need only be changed at the DHCP server, and all network hosts will be reconfigured the next time their DHCP clients poll the DHCP server. As an added advantage, it is also ...