Pre-test: Data Wrangling

NoteData

Download Excel file from GOOGLE DRIVE

Q1.

Which Excel feature would you use to show only rows where continent is ‘Asia’?

Q2.

Which Excel function can help list all unique country names?

Q3.

To sort countries by population from highest to lowest, which should you choose?

Q4.

To create a new column for total GDP, what formula would you use?

Q5.

How can you filter data to show only the year 2007?

Q6.

Which tool creates a dropdown list for continent values?

Q7.

Which function counts how many rows have ‘Africa’ in the continent column?

Q8.

Which feature would color rows where life expectancy is below 50?

Q9.

What Excel tool would sort country names alphabetically?

Q10.

How can you extract a list of distinct country names?

Q1.

If the dataset contains 1704 rows, what does =COUNTIF(C2:C1705,2007) return if column C is year?

Q2.

What does =MAX(E2:E1705) return if column D is ‘lifeExp’?

Q3.

What is the result of =MIN(E2:E1705) if column E is ‘pop’?

Q4.

If column F is ‘gdpPercap’, what does =AVERAGE(F2:F1705) return?

Q5.

What does =COUNTA(UNIQUE(C2:C1705)) return if column C is ‘year’?

Q6.

What would be the result of =MAX(E2:E1705) if column E is population?

Q7.

What is the output of =SUMIF(B2:B1705, "Asia", E2:E1705) if B is continent and E is population?

Q8.

What value does =MIN(D2:D1705) return if D is life expectancy?

Q9.

What is the number of unique countries in the dataset using =COUNTA(UNIQUE(A2:A1705)) if A is country?

Q10.

If E is pop and F is gdpPercap, what does =SUMPRODUCT(E2:E1705,F2:F1705) return?

Q11.

What does =AVERAGEIF(B2:B1705, "Europe", D2:D1705) return if B is continent and D is lifeExp?

Q12.

What is the result of =MAXIFS(D2:D1705, B2:B1705, "Africa") if D is lifeExp and B is continent?

Q13.

Using =SORT(UNIQUE(B2:B1705)), what is the last value if B is continent?

Q14.

What would =SUM(D2:D1705) give if D is lifeExp?

Q15.

If column C is year, what does =MAX(C2:C1705)-MIN(C2:C1705) return?

Q16.

After applying a filter for continent=‘Asia’ and sorting by lifeExp descending, what would the top country likely be?

Q17.

If you filter year = 2007 and sort by GDP (pop * gdpPercap), which country is likely ranked 3th?

Q18.

After filtering for continent = 'Africa' and year = 1957, and sorting by lifeExp ascending, which country is likely listed first?

Q19.

How many countries are in the Gapminder dataset?

Q20.

If you apply filter for year = 1952 and sort by population in descending order, which country is likely ranked 4th?