Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update course-challenge.md #17

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -226,4 +226,360 @@ GROUP BY City
* ORDER BY CITY(DonorID) DESC
* **ORDER BY COUNT(DonorID) DESC**

> To retrieve the number of donors in each city, sorted high to low, the correct SQL query is: `SELECT COUNT (DonorID), City FROM new_donor_list GROUP BY City ORDER BY COUNT(DonorID) DESC`
> To retrieve the number of donors in each city, sorted high to low, the correct SQL query is: `SELECT COUNT (DonorID), City FROM new_donor_list GROUP BY City ORDER BY COUNT(DonorID) DESC`



###################################################################################################################################################################################################################################################
###################################################################################################################################################################################################################################################
version 2

###################################################################################################################################################################################################################################################



.
Question 1
Scenario 1, Questions 1-7

For the past six months, you have been working for a direct-mail marketing firm as a junior marketing analyst. Direct mail is advertising material sent to people through the mail. These people can be current or prospective customers, clients, or donors. Many charities depend on direct mail for financial support.

Your company, Directly Dynamic, creates direct-mail pieces with its in-house staff of graphic designers, expert mail list services, and on-site printing. Your team has just been hired by a local nonprofit, Food Justice Rock Springs. The mission of Food Justice Rock Springs is to eliminate food deserts by establishing local gardens, providing mobile pantries, educating residents, and more. Click below to read the email from Tayen Bell, vice president of marketing and outreach.

You begin by reviewing the dataset. To use the template for this dataset, click the link below and select “Use Template.”

Link to template: Dynamic Dataset

Or, if you don’t have a Google account, download the file directly from the attachment below.



The client has asked you to send two separate mailings: one to people within 50 miles of Rock Springs; the other to anyone outside that area. So, to research each donor’s distance from the city, you first need to find out where all of these people live.

You could scroll through 209 rows of data, but you know there is a more efficient way to organize the cities.

Which of the following functions will enable you to sort your spreadsheet by city (Column K) in ascending order?

0 / 1 point

=SORT(A2:R210, 11, ASC)


=SORT(A2:R210, K, ASC)


=SORT(A2:R210, K, TRUE)

THIS SHOULD BE RIGHT
[x] =SORT(A2:R210, 11, TRUE)


Review the section on sorting for a refresher.

2.
Question 2
Scenario 1, continued

You notice that many cells in the city column, Column K, are missing a value. So, you use the zip codes to research the correct cities. Now, you want to add the cities to each donor’s row. However, you are concerned about making a mistake, such as a spelling typo.

What spreadsheet tool allows you to control what can and cannot be entered in your worksheet in order to avoid typos?

1 / 1 point

[x] Data validation


Find


VLOOKUP


List

Correct
Data validation allows you to control what can and cannot be entered in your worksheet in order to avoid typos. It does this by adding drop-down lists with predetermined options, such as each city name.

3.
Question 3
Scenario 1, continued

Now, you decide to address Tayen’s request to include a handwritten note in the direct-mail piece for anyone who gave at least $100 last year.

Which of the following procedures will enable you to change how cells in your spreadsheet appear if they contain a value of $100 or more?

1 / 1 point

[x] Select Column M. Then, select Format > Conditional Formatting. Choose to format cells if they are greater than or equal to 100.


Select Column M. Then, select Format > Conditional Formatting. Choose to format cells if they are greater than 100.


Select Column M. Then, select Format > Conditional Formatting. Choose to format cells if text starts with 100.


Select Column M. Then, select Format > Conditional Formatting. Choose to format cells if text contains 100.

Correct
To change how cells appear if they contain a value of $100 or more, select Column M. Then, select Format > Conditional Formatting. Choose to format cells if they are greater than or equal to 100.

4.
Question 4
Scenario 1, continued

At this point, you notice that the information about state and zip code is in the same cell. However, your company’s mailing list software requires states to be on a separate line from zip codes.

What function will enable you to move the 2-character state abbreviation in cell L2 into its own column?

1 / 1 point

[x] =LEFT(L2,2)


=RIGHT(L2,2)


=LEFT(2,L2)


=RIGHT(2,L2)

Correct
To move the 2-character state abbreviations in Column L into their own column, use the LEFT function: =LEFT(L2,2).

5.
Question 5
Scenario 1, continued

Next, you duplicate your dataset twice using the Sheet Menu. You rename the first sheet Donation Form List, and you remove the cities that are further than 50 miles from Rock Springs. You rename the second sheet Postcard List, and you remove the cities that are within 50 miles of Rock Springs.

Then, you import these datasets into your company’s mailing list database. In a mailing list database, you create two tables: Donation_Form_List and Postcard_List. You decide to clean the Donation_Form_List first.

Your company’s mailing list software requires units to be on the same line as street addresses. However, they are currently in two separate columns (street_address and unit).

You use a SQL function to instruct the database to combine the two columns into a new column called “address.” The syntax is: JOIN(street_address, " to ", unit) as address.

1 / 1 point

True


[x] False

Correct
To combine the two columns into a new column called “address,” the syntax is: CONCAT(street_address, " to ", unit) as address.

6.
Question 6
Scenario 1, continued

Your database contains people who live across Wyoming. However, it’s important to align your in-house data with the data from Food Justice Rock Springs. You also need to separate your data into the two lists: Donation_Form_List and Postcard_List. They will be based on each city’s distance from Rock Springs.

The zip codes are in a column called zip_code. What query do you use to select all data from the Donation_Form_List organized by zip code?

1 / 1 point

[x] SELECT *
FROM zip_code
SORT BY Donation_Forms_List

Correct
To organize your data by zip code, the correct query is:



7.
Question 7
Scenario 1, continued

You finish cleaning your datasets, so you decide to review Tayen’s email one more time to make sure you completed the task fully. It’s a good thing you checked because you forgot to identify people who have served on the board of directors or board of trustees. She wants to write them a thank-you note, so you need to locate them in the database.

To retrieve only those records that include people who have served on the board of trustees or on the board of directors, what is the correct query?

1 / 1 point
[x]
[x] SELECT *
FROM Donation_Form_List
WHERE Board_Member = "TRUE" OR Trustee = "TRUE"


SELECT *
FROM Donation_Form_List
WHERE Board_Member = "TRUE" AND Trustee = "TRUE"


SELECT *
FROM Donation_Form_List
WHERE Board_Member = TRUE AND Trustee = TRUE


SELECT *
FROM Donation_Form_List
WHERE Board_Member = TRUE, Trustee = TRUE

Correct
To retrieve only those records that include people who have served on the board of trustees or on the board of directors, the correct WHERE statement is:



8.
Question 8
Scenario 2, Questions 8-13

Your company’s direct-mail campaign was very successful, and Food Justice Rock Springs has continued partnering with Directly Dynamic. One thing you’ve been working on is assigning all donors identification numbers. This will enable you to clean and organize the lists more effectively.

Meanwhile, another team member has been creating a prospect list that contains data about people who have indicated interest in getting involved with Food Justice Rock Springs. These people are also assigned a unique ID. Now, you need to compare your donor list with the dataset in your database and collect certain data from both.

What SQL function will combine RIGHT and LEFT JOIN to return all matching records in both tables?

1 / 1 point

[x] OUTER JOIN


INNER JOIN


LEFT JOIN


RIGHT JOIN

Correct
An OUTER JOIN function will combine RIGHT and LEFT JOIN to return all matching records in both tables.

9.
Question 9
Scenario 2, continued

Your next task is to identify the average contribution given by donors over the past two years. Tayen will use this information to set a donation minimum for inviting donors to an upcoming event.

You have performed the calculations for 2019, so now you move on to 2020. To return average contributions in 2020 (contributions_2020), you use the AVG function. You use the following section of a SQL query to find this average and store it in the AvgLineTotal variable:

AVG(contributions_2020) AS AvgLineTotal


1 / 1 point

[x] True


False

Correct
To return average contributions in 2020, the correct portion of the SQL query is:

AVG(contributions_2020) AS AvgLineTotal


10.
Question 10
Scenario 2, continued

Now that you provided her with the average donation amount, Tayen decides to invite 50 people to the grand opening of a new community garden. You return to your New Donor List spreadsheet to determine how much each donor gave in the past two years. You will use that information to identify the 50 top donors and invite them to the event.

What is the correct syntax to add the contribution amounts in cells O2 and P2?

1 / 1 point

=SUM(O2/P2)


=SUM(“O2,P2”)


[x] =SUM(O2,P2)


=SUM(O2*P2)

Correct
To add cells O2 and P2, use the function =SUM(O2,P2). You can also use the formula =O2+P2.

11.
Question 11
Scenario 2, continued

Tayen informs you that she’s thinking about inviting anyone who donated at least $100 in 2018, as well. However, she only has five open spaces. She asks you to report how many people gave at least $100 so she can determine if they can also be invited to the event.

Which spreadsheet function do you use to count how many donations of $100 or greater appear in Column O (Contributions 2018)?

1 / 1 point

TOTAL


SUMIF


[x] COUNTIF


MAX

Correct
To count how many donations of $100 or greater appear in Column Q, you use the COUNTIF function. The correct syntax is =COUNTIF(O2:O210,">=100").

12.
Question 12
Scenario 2, continued

The community garden grand opening was a success. In addition to the 55 donors Food Justice Rock Springs invited, 20 other prospects attended the event. Now, Tayen wants to know more about the donations that came in from new prospects compared to the original donors.

This SQL query can be used to identify the percentage of contributions from prospects compared to total donors:

querySELECT
event_contributions,
Total_donors,
Total_prospects,
(Total_prospects / Total_donors * 100) AS Prospects_Percent
FROM contributions_data

1 / 1 point

[x] True


False

Correct
The correct query is:

querySELECT
event_contributions,
Total_donors,
Total_prospects,
(Total_prospects / Total_donors * 100) AS Prospects_Percent
FROM contributions_data

13.
Question 13
Scenario 2, continued

Your team creates a highly effective prospects list for Food Justice Rock Springs. After a few months, many of these prospects become donors. Now, Tayen wants to know the top three cities in which these new donors live. She will use that information to determine if it’s still true that people who live closer to Rock Springs are more likely to donate.

To retrieve the number of donors in each city, sorted high to low, you use the following query:

querySELECT COUNT (DonorID), City
FROM new_donor_list
GROUP BY City
ORDER BY COUNT (DonorID) ASC

1 / 1 point

True


[x] False

Correct
To retrieve the number of donors in each city, sorted high to low, DESC must be included. ASC will sort the donors low to high. The correct query is: