Browse the booths below to chat with Departmental Advisors and/or students in those programs in preparation for applying for your specialization. The event is open 5:30 - 7 pm on Monday March 4.
Meet Your Science Resources
Academic Advising
An Academic Advisor can help you with questions about designing your degree including minors, Faculty level requirements, taking summer courses, and more.
Talk to a Science Academic Advisor.
Science Co-op
Learn new skills and cultivate professional work experience. Build an impressive resume while working in paid, full-time roles in academic, industrial, commercial or laboratory settings.
Talk to a Science Co-Op Advisor.
Explore Our UBC Science Specializations
UBC-BCIT Biochemistry and Forensic Science
 What can I do with my degree?
Department website
Meet with Department Advisors
Meet with a Student Representative
UBC-BCIT Biotechnology
 What can I do with my degree?
Department website
Meet with Department Advisors
Meet with a Student Representative.
Cellular, Anatomical and Physiological Sciences
 What can I do with my degree?
Department website
Meet with Department Advisors
Meet with a Student Representative
Combined Major in Science
 What can I do with my degree?
Department website
Meet with a Student Representative
Computer Science
 What can I do with my degree?
Department website
Meet with Department Advisors.
Earth, Ocean and Atmospheric Sciences
 What can I do with my degree?
Department website
Meet with Department Advisors and Student Representatives.
Integrated Sciences
 What can I do with my degree?
Department website
Meet with Department Advisors
Meet with a Student Representative
Microbiology and Immunology
 What can I do with my degree?
Department website
Meet with Department Advisors and Students
Meet with a Student Representative
Faculty of Land and Food Systems
 What can I do with my degree?
Website
Meet with a Representative
Geographical Sciences
 What can I do with my degree?
Department website
Meet with a Representative
 
// document.addEventListener("DOMContentLoaded", function() { // Function to filter items based on search input and selected filter function filterItems() { var input, filter, selectedFilter, items, itemName, i, txtValue; input = document.getElementById('searchInput'); filter = input.value.toUpperCase(); // Determine the currently active filter selectedFilter = document.querySelector('.filter-button.active').getAttribute('data-filter'); items = document.getElementsByClassName('filter'); // Loop through all items, and hide those that don't match the search query and selected filter for (i = 0; i < items.length; i++) { itemName = items[i].getElementsByClassName("dep-name")[0]; if (itemName) { txtValue = itemName.textContent || itemName.innerText; // Check both the text filter and category filter if (txtValue.toUpperCase().indexOf(filter) > -1 && (selectedFilter === 'all' || items[i].classList.contains(selectedFilter))) { items[i].style.display = ""; } else { items[i].style.display = "none"; } } } } // Function to update active filter class function updateActiveFilter() { var buttons = document.getElementsByClassName('filter-button'); for (var i = 0; i < buttons.length; i++) { buttons[i].onclick = function() { var current = document.querySelector('.filter-button.active'); if (current) current.classList.remove('active'); this.classList.add('active'); filterItems(); // Re-apply filtering with the new active filter } } } // Attach the updateActiveFilter function to filter buttons updateActiveFilter(); // Attach the filter function to the search input event for real-time filtering document.getElementById('searchInput').addEventListener('keyup', filterItems); // Attach the filter function to the search icon click event for manual filtering document.getElementById('searchIcon').addEventListener('click', filterItems); // Optional: Also trigger search/filter when user presses "Enter" on the keyboard while focusing on the search input document.getElementById('searchInput').addEventListener('keypress', function(event) { if (event.key === "Enter") { event.preventDefault(); // Prevent the default action to avoid form submission or other unwanted side effects filterItems(); } }); }); //