Part 1 is a Web Search assignment Please use google as your
Part 1 is a Web Search assignment. Please use google as your search engine.
1.(10 points) Suppose I am a biologist and I want to do some research about tigers living in the woods. Now, I want to find some Web pages that satisfy the following conditions:
containing the word \"tiger\";
containing the word \"woods\" or \"forests\";
not containing the proper name \"Tiger Woods\"; and
not containing the word \"golf\"
How can I combine these search conditions to create one query in Google to find these pages? Type your query here exactly as you entered it into the Google search bar:
Solution
intext:\"tiger\" AND (intext:\"woods\" OR intext:\"forests\") AND -intext:\"Tiger Woods\" AND -intext:\"golf\"
containing the word \"tiger\"; => intext:\"tiger\"
containing the word \"woods\" or \"forests\"; => (intext:\"woods\" OR intext:\"forests\")
not containing the proper name \"Tiger Woods\"; => -intext:\"Tiger Woods\"
not containing the word \"golf\" => -intext:\"golf\"
