Skip to the content.

Digital Divide homework blog

Homework 2, Digital Divide

The digital Divide

Factors that contribute to the digital divide include economic gaps. Well-funded schools have many digital tools with coding and stem program courses. The students in wealthier areas have access to more educational opportunities. There could be a difference between living in a rural and an urban area. Impacts of the digital divide is that is impacts access to education, jobs, and healthcare Worsened social and economic opportunities.

Popcorn Hack: Example Problem in MCQ Question: Which of the following actions are likely to be helpful in reducing the digital divide? Select two answers. Options A) Designing new technologies intended only for advanced users B) Designing new technologies to be accessible to individuals with different physical abilities C) Implementing government regulations restricting citizens’ access to Web content D) Having world governments support the construction of network infrastructure Reveal Answer Correct Answers: - B) Designing new technologies to be accessible to individuals with different physical abilities - D) Having world governments support the development of network infrastructure

Everywhere has a digital divide even San Diego.

Popcorn Hack 1: Reducing the Digital Divide – Multiple Choice

Question: Which two of the following actions would most likely help reduce the digital divide?

  • Creating technologies only for advanced users
    This would likely make the digital divide worse, since it only supports people who already have strong tech skills, leaving others behind.

  • Making technology accessible for people with physical disabilities
    This is an effective approach. Inclusive design helps ensure that people with various physical abilities can access and use technology.

  • Government-imposed restrictions on web access
    This would likely increase the divide by limiting access to important information, especially for groups already facing limited access.

  • Government-funded development of internet infrastructure
    This is a strong solution. Expanding infrastructure increases access to the internet in underserved regions.

Correct Answers:

  • Designing technologies to be accessible to people with physical disabilities
  • Supporting the development of network infrastructure

Explanation:
These two actions help close the digital divide by making technology usable for more people and increasing internet access in areas that lack it.

Popcorn Hack 2: Solving the Digital Divide in Our Communities

Question: How could you help reduce the digital divide in your community? What’s already being done, and what more can we do?

To lessen the digital divide, I would focus on improving both access to technology and the education needed to use it effectively. I would attempt to make a nonprofit organization with funding to help aid the students without an access to the internet with computers. Not only that I would also supply videos and a room with a good internet connection to help those kids learn about what they can do to improve their technological skills.

import sys
print("Python executable path:", sys.executable)  


try:
    import pandas as pd
except ModuleNotFoundError:
    print("❌ 'pandas' module not found. Install it by running: pip install pandas")
    exit()


try:
    data = pd.read_csv("internet_users.csv").drop(columns=[
        'Notes', 'Year.2', 'Users (CIA)', 'Rate (ITU)', 'Year.1'
    ])
except FileNotFoundError:
    print("❌ File 'internet_users.csv' not found. Make sure it's in the working directory.")
    exit()

data_cleaned = data.dropna()  


usage_rates = data_cleaned['Rate (WB)']  
countries = data_cleaned['Location']    


for country, rate in zip(countries, usage_rates):
    status = "doing great" if rate > 70 else "needs improvement"
    print(f"{country}: {rate}% — {status}")