Skip to main content

How to search effectively on google: For Every One

 How to search effectively on google: For Every One



Google is one of the most widely used search engines in the world, and for good reason. It's fast, accurate, and easy to use. However, not everyone knows how to make the most of Google's search capabilities. In this article, we'll provide some tips and tricks for searching effectively on Google.

Here Are Some Tips And Tricks To Search effectively on GOOGLE:

Use quotation marks:

Use quotation marks to search for an exact phrase. Example: "New York City"

Use a minus sign:

Use a minus sign to exclude a word from your search. Example: pizza -delivery


Use the OR operator:
Use the OR operator to search for multiple terms. Example: pizza OR pasta

Use the site operator:
Use the site operator to search within a specific website. Example: site:nytimes.com pizza

Use the filetype operator:
Use the filetype operator to search for a specific file type. Example: resume filetype:pdf

Use the intitle operator:
Use the intitle operator to search for a specific word in the title of a webpage. Example: intitle :pizza

Use the inurl operator:
Use the inurl operator to search for a specific word in the URL of a webpage. Example: inurl:pizza

Use the related operator:
Use the related operator to find similar websites. Example: related:nytimes.com

Use the define operator:

Use the define operator to find the definition of a word. Example: define:pizza
Use the cache operator:
Use the cache operator to view a webpage as it looked the last time Google indexed it. Example: cache:nytimes.com

Comments

Popular posts from this blog

Best Resources For Developers On Internet

  Best Resources For Developers On Internet The internet is a vast and ever-expanding resource for developers, offering a wide variety of help and support for coding solutions. In this article, we'll highlight some of the best resources for finding coding solutions on the internet. Here Are Some of Best Resources To find coding solutions: Stack Overflow: Stack Overflow is a community-driven Q&A platform where developers can ask and answer questions related to coding. It has a vast collection of answers to common coding problems and is a great place to start when you're stuck on a problem. GitHub: This is a platform for developers to host and review code, manage projects, and build software. Many open-source projects have their codebase on GitHub, developers can look into the code, learn from it and even contribute to it. GitHub Issues: This is a feature of GitHub that allows developers to track bugs and feature requests for a project. It's a great place to look for s...

Method Overloading and Method Overriding in object-Oriented-programming: Deep Dive(C++)

 Method Overloading and Method Overriding in object-Oriented-programming: Deep Dive(C++) Method overloading and method overriding are two related but distinct concepts in object-oriented programming (OOP) that allow for a more organized and efficient way to structure code.   Method Overloading IN  object-Oriented-programming(Oops): Method overloading is the ability of a class to have multiple methods with the same name but with different parameters. In C++, method overloading is achieved by providing multiple function prototypes with the same name but with different parameters within the same class. Here is an example of a class Car which has a method drive that can be called with different parameters: In this example, the class Car has three methods with the same name drive but with different parameters. The first method takes no parameter, the second one takes an integer parameter and the third one takes a string parameter. The correct version of the method will be ...