<<< Weeks 5 and 6 Homework Assignment Part 2 | Index | >>> |
In this part of the assignment I'm asking you to write the query for each problem just type the query as your answer to the question. You do not have to search the web for this information (but you if want to that's fine too).
When writing the queries, be sure to remember your basic logic and mathematical concepts: ANDs are resolved before ORs and if you want to change this order of resolution you need to use parenthesis. For example, if I want to find references to vaccine and either polio or lyme I would code it as vaccine AND(polio OR lyme). This way the polio OR lyme are resolved first and the result is vaccine combined with either polio or lyme. If I coded it as vaccine AND polio OR lyme it would be interpreted as vaccine and polio or just lymeby itself - there would be no connection between vaccine and lyme. The vaccine and polio would be resolved first and the lyme would stand-alone.
Write the query that could be used to find sites that include methods, procedures and events.
Write the query that could be used to find sites that include turkey and stuffing and either cranberry or squash or pie.
Write the query that could be used to find sites that include yorkshirepudding and roast beef.
Write the query that could be used to find sites that include HTML and either CSS or JavaScript
Write the query that could be used to find sites that include information on the Dallas Cowboys football team not Wild West Cowboys.
Write the query that could be used to find sites that include information about the planet Saturn not the car.
<<< Weeks 5 and 6 Homework Assignment Part 2 | Index | >>> |