0
0
SEO Fundamentalsknowledge~10 mins

Tracking keyword rankings in SEO Fundamentals - Interactive Code Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to identify the main metric used to track keyword rankings.

SEO Fundamentals
ranking_position = [1]
Drag options to blanks, or click blank then click option'
Asearch_engine_position
Bclick_through_rate
Cbounce_rate
Dpage_load_time
Attempts:
3 left
💡 Hint
Common Mistakes
Confusing ranking position with click-through rate or bounce rate.
Thinking page load time affects keyword ranking directly.
2fill in blank
medium

Complete the code to select the tool used for tracking keyword rankings.

SEO Fundamentals
tool = '[1]'
Drag options to blanks, or click blank then click option'
AGoogle Analytics
BAdobe Photoshop
CGoogle Search Console
DMicrosoft Word
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing Google Analytics which tracks website traffic but not keyword rankings directly.
Selecting unrelated software like Adobe Photoshop or Microsoft Word.
3fill in blank
hard

Fix the error in the statement about keyword ranking frequency.

SEO Fundamentals
frequency = '[1]'
Drag options to blanks, or click blank then click option'
Ahourly
Bmonthly
Creal-time
Dyearly
Attempts:
3 left
💡 Hint
Common Mistakes
Assuming keyword rankings update in real-time or hourly.
Thinking yearly updates are frequent enough.
4fill in blank
hard

Fill both blanks to create a dictionary that maps keywords to their ranking positions and search volumes.

SEO Fundamentals
keyword_data = { '[1]': [2] }
Drag options to blanks, or click blank then click option'
Akeyword
Branking_position
Csearch_volume
Dclicks
Attempts:
3 left
💡 Hint
Common Mistakes
Using ranking_position as the dictionary value instead of search_volume.
Confusing clicks with search volume.
5fill in blank
hard

Fill all three blanks to create a filter that selects keywords with ranking better than 10 and search volume above 1000.

SEO Fundamentals
filtered_keywords = { [1]: [2] for [1] in [3] if rankings[[1]] < 10 and volumes[[1]] > 1000 }
Drag options to blanks, or click blank then click option'
Akeyword
Bsearch_volume
Ckeywords
Dranking_position
Attempts:
3 left
💡 Hint
Common Mistakes
Using ranking_position as the loop variable instead of keyword.
Mixing up keywords and keyword variables.