Putting the homework in the bag
%% javascript
// Bridge the Divide Challenge Game
function bridgeTheDivideGame() {
console.log("===============================================");
console.log("π BRIDGE THE DIVIDE: Digital Inclusion Challenge");
console.log("===============================================");
console.log("You are a technology policy advisor tasked with");
console.log("helping communities overcome the digital divide.");
console.log("Analyze each scenario and make the best decision!\n");
let score = 0;
const totalQuestions = 5;
// Scenario 1
console.log("SCENARIO 1: Rural Connectivity");
console.log("A rural community of 500 families is located 50 miles from");
console.log("the nearest broadband infrastructure. You have $200,000");
console.log("in funding. What's your best approach?");
console.log("A: Lay fiber optic cable to each home");
console.log("B: Set up a wireless tower system");
console.log("C: Provide satellite internet subsidies");
console.log("D: Create a community center with high-speed internet");
const answer1 = prompt("Your choice (A/B/C/D):").toUpperCase();
if (answer1 === "B") {
console.log("β Correct! A wireless tower system provides the best");
console.log(" coverage for the investment in this rural setting.");
score++;
} else {
console.log("β The best answer is B. Fiber would be too expensive,");
console.log(" satellite has high latency issues, and a single center");
console.log(" wouldn't provide sufficient access for all families.");
}
// Scenario 2
console.log("\nSCENARIO 2: Digital Literacy");
console.log("An urban neighborhood has new affordable internet access,");
console.log("but adoption remains low at 30%. Investigation reveals many");
console.log("residents lack digital skills. What approach would help most?");
console.log("A: Reduce internet prices further");
console.log("B: Distribute free tablets to all residents");
console.log("C: Launch digital literacy workshops at local library");
console.log("D: Create a tech support hotline");
const answer2 = prompt("Your choice (A/B/C/D):").toUpperCase();
if (answer2 === "C") {
console.log("β Correct! Digital literacy workshops address the");
console.log(" root cause - lack of skills - rather than just");
console.log(" providing more access or support.");
score++;
} else {
console.log("β The best answer is C. The primary barrier isn't");
console.log(" cost or device ownership, but skill development.");
console.log(" Workshops provide hands-on learning opportunities.");
}
// Add more scenarios as needed...
// Final score
console.log("\n===============================================");
console.log(`FINAL SCORE: ${score}/${totalQuestions}`);
console.log("===============================================");
if (score === totalQuestions) {
console.log("π Perfect! You're a digital inclusion expert!");
} else if (score >= totalQuestions * 0.7) {
console.log("π₯ Good job! You have strong understanding of digital divide issues.");
} else if (score >= totalQuestions * 0.5) {
console.log("π Decent effort, but review some of the concepts again.");
} else {
console.log("π You need more study on digital divide solutions.");
}
}
// Run the game with: bridgeTheDivideGame();
%% javascript
// Interactive Digital Divide Explorer
function exploreDigitalDivide() {
// Select what data to display
const metric = prompt(
"Which digital divide metric would you like to explore?\n" +
"1: Income-based internet access\n" +
"2: Urban vs rural access\n" +
"3: Age-based internet usage\n" +
"4: Global connectivity rates"
);
// Sample data
const incomeData = {
categories: ["Lowest 20%", "Second 20%", "Middle 20%", "Fourth 20%", "Highest 20%"],
values: [62, 71, 80, 88, 95]
};
const locationData = {
categories: ["Urban", "Rural"],
values: [94, 83]
};
const ageData = {
categories: ["18-29", "30-49", "50-64", "65+"],
values: [97, 93, 88, 61]
};
const globalData = {
categories: ["North America", "Europe", "Asia Pacific", "Latin America", "Middle East/Africa"],
values: [90, 87, 54, 68, 40]
};
// Select dataset based on user choice
let data;
let title;
switch(metric) {
case "1":
data = incomeData;
title = "Internet Access by Income Level (%)";
break;
case "2":
data = locationData;
title = "Urban vs Rural Internet Access (%)";
break;
case "3":
data = ageData;
title = "Internet Usage by Age Group (%)";
break;
case "4":
data = globalData;
title = "Internet Access by Region (%)";
break;
default:
alert("Invalid selection!");
return;
}
// Display the data (in a real app, this would create a chart)
console.log(title);
console.log("=".repeat(title.length));
const maxValue = Math.max(...data.values);
const maxBarLength = 40;
for (let i = 0; i < data.categories.length; i++) {
const barLength = Math.round((data.values[i] / maxValue) * maxBarLength);
const bar = "β".repeat(barLength);
console.log(`${data.categories[i].padEnd(12)}: ${bar} ${data.values[i]}%`);
}
}
// Run this function to explore different aspects of the digital divide
// exploreDigitalDivide();
Essay Practice Questions
- Explain how economic factors contribute to the digital divide and propose policy solutions that might address these economic barriers. Economic factors contribute to the digital divide by making it harder to access digital devices. Such as laptops, iPhones and other various devices. Most mainstream devices are priced at over $1000 and makes it so most people canβt afford the luxary of purchasing one. However by creating and spreading knowledge of cheaper options and providing more support for these kinds of devices we can cross the digial divide between the rich and poor.
- Describe three dimensions of the digital divide and explain how each affects access to educational resources. Provide specific examples. There are many dimensions to the digital divide. One such aspect is the finance, in which people need to pay money in order to obtain a digital device in the first place. This makes it much more difficult for poeple to begin their journey on the internet. When a person who previously has no work with the digial divide manages to cross the finance barrier they hit the digital knowledge barrier. This barrier is caused by a lack of knowledge on how to actually use the device they got and in the end it becomes difficult or even a hindrance to use. Another dimension to the digital divide is something that is difficult people to control which is the internet speeds or bandwidth. In more remote areas on underdeveloped areas there may not be as good of a service for internet due to companies having low interest in investing in these areas due to the low possible income.
Multiple Choice Practice
- D
- B
- A
- C
- C
Extra Credit
United States
Internet Penetration: 92%
Mobile Device Access: 96%
Average Internet Speeds: 224.5 Mbps
Digital Literacy: 86%
Morocco
Internet Penetration: 74%
Mobile Device Access: 87%
Avergage Internet Speeds: 27.8 Mbps
Digital Literacy: 51%
Digital Literacy:
The two have very different average internet speeds, this represents the huge difference in broadband and thus the access divide. In which people do not have the speeds to use certain websites due to the increasing amount of internet needed in order to do a variety of things.
A possible solution is introducing government policies in which make companies interested in investing in sectors that might have a low revenue stream.