Social Media Impact Quiz
Social Media Impact Quiz
Section 1: Demographics
1. Age:
2. Gender:
3. Grade/Level of Education:
4. Are you a full-time student?
Yes
No
Section 2: Social Media Usage
5. How many hours a day, on average, do you spend on social media platforms?
Less than 1 hour1-2 hours2-3 hoursMore than 3 hours
6. Which social media platforms do you use regularly? (List all that apply)
Section 3: Impact on Academic Performance
7. Do you think social media affects your academic performance?
Yes
No
If yes, please briefly explain how:
Section 4: Emotional and Psychological Impact
8. Have you experienced negative emotions while using social media?
Yes
No
If yes, please briefly describe the emotions:
9. Do you compare yourself to others on social media?
Yes
No
If yes, how has this comparison affected you?
Section 5: Social Interaction and Relationships
10. Has social media helped you maintain or build relationships with friends and family?
Yes
No
If yes, briefly explain how:
11. Have you ever experienced conflicts or misunderstandings with someone through social media?
Yes
No
If yes, briefly describe the situation:
12. Do you feel more connected or isolated from your peers due to your social media usage?
More connected
Neither
More isolated
Section 6: Privacy and Security
13. Are you concerned about your online privacy on social media?
Yes
No
14. Have you experienced any privacy or security issues on social media?
Yes
No
If yes, briefly describe the issue:
Section 7: Coping Mechanisms
15. What strategies do you use to manage your social media usage?
16. Have you ever tried to take a break from social media?
Yes
No
If yes, briefly describe your experience:
Section 8: Overall Perception
17. Do you believe that social media has a more positive or negative impact on students’ lives?
More positive
More negative
18. What changes, if any, would you suggest to improve the impact of social media on students?
Section 9: Additional Comments
19. Is there anything else you would like to add about the impact of social media on students?
document.getElementById(“quizForm”).addEventListener(“submit”, function(event) {
event.preventDefault(); // Prevent the default form submission
// Collect and process user answers here
const answers = {
age: document.getElementById(“age”).value,
gender: document.getElementById(“gender”).value,
education: document.getElementById(“education”).value,
studentStatus: document.querySelector(‘input[name=”studentStatus”]:checked’).value,
hoursPerDay: document.getElementById(“hoursPerDay”).value,
socialMediaPlatforms: document.getElementById(“socialMediaPlatforms”).value,
academicPerformance: document.querySelector(‘input[name=”academicPerformance”]:checked’).value,
academicPerformanceImpact: document.getElementById(“academicPerformanceImpact”).value,
negativeEmotions: document.querySelector(‘input[name=”negativeEmotions”]:checked’).value,
negativeEmotionsDescription: document.getElementById(“negativeEmotionsDescription”).value,
compareToOthers: document.querySelector(‘input[name=”compareToOthers”]:checked’).value,
comparisonImpact: document.getElementById(“comparisonImpact”).value,
socialMediaRelationships: document.querySelector(‘input[name=”socialMediaRelationships”]:checked’).value,
socialMediaRelationshipsImpact: document.getElementById(“socialMediaRelationships
document.getElementById(“quizForm”).addEventListener(“submit”, function(event) {
event.preventDefault(); // Prevent the default form submission
// Collect and process user answers here
const answers = {
age: document.getElementById(“age”).value,
gender: document.getElementById(“gender”).value,
education: document.getElementById(“education”).value,
studentStatus: document.querySelector(‘input[name=”studentStatus”]:checked’).value,
hoursPerDay: document.getElementById(“hoursPerDay”).value,
socialMediaPlatforms: document.getElementById(“socialMediaPlatforms”).value,
academicPerformance: document.querySelector(‘input[name=”academicPerformance”]:checked’).value,
academicPerformanceImpact: document.getElementById(“academicPerformanceImpact”).value,
// Add answers for the remaining questions
};
// You can now send these answers to a server, calculate a score, or display results to the user
// For now, let’s just display the answers as an alert
alert(“Answers: ” + JSON.stringify(answers));
});