class: right, middle, inverse, title-slide .title[ # 🦾 Final Examination ] .author[ ### Computational Communication Science II ] .date[ ### May 27, 2025 ] --- class: middle <style type="text/css"> .gray { color: lightgray; } .red { color: red; } .blue { color: blue; } .green { color: green; } </style> # 📝 Instructions - Duration: 90 (+5) minutes: Start at 12.45. End at 14.20. - To start the exam, go to Canvas: **Assignments > Final Exam** + Password to download the 2 exam files (provided at 12.45): .green[think] - To end the exam, go to Canvas: **Assignments > Final Exam** + Upload only 1 file: Your completed jupyter notebook. Rename this file as "LastName_FirstName_StudentID_CCS2.ipynb" - Internet access **not** allowed [Only exception is downloading files/uploading to Canvas]. - Once exam starts, you should only have the jupyter notebook or course content from the "CCS2 Exam" folder open on your screens. - Demonstrate your knowledge and critical thinking. Good luck! --- class: middle, center # Password: .green[think] --- class: middle # Clarifications ## Optional Hint For Q 2a Only use if unable to figure out how to read the file using Python's **csv** package. Use **csv** package to get full points. ``` python import pandas as pd # Load the CSV file df = pd.read_csv("YouTubeData.csv", header=None) # Extract columns reviews = df.iloc[:, 0].tolist() labels = df.iloc[:, 1].tolist() ```