Skip to content

Westchester Smart Mobile App Development Bowl

Student teams throughout the Westchester and New York metropolitan area compete to create mobile apps to help with the management and treatment of Alzheimer’s disease and dementia. Cash prizes as well as up to five paid summer internships with Westchester County Government will be awarded to top teams and students. All of the entries will become part of a library of free apps.

Contest winners will be announced by a panel of expert judges on April 17. Good luck Damian and Kevin and thank you for representing CW. We’re proud to have tech savvy students like you!

For more information about the ‘Westchester Smart Mobile App Development Bowl,’ visit:
http://www3.westchestergov.com/news/all-press-releases/4892-high-school-and-college-students-sought-for-the-first-westchester-smart-mobile-app-development-bowl

document.addEventListener("DOMContentLoaded", function() { // Get all accordion toggle elements var accordions = document.querySelectorAll('.accordion-toggle'); // Add click event listeners to each accordion toggle accordions.forEach(function(accordion) { accordion.addEventListener('click', function() { // Get the panel-collapse element directly following this accordion-toggle var panelCollapse = this.nextElementSibling; // Check if this panel-collapse is currently open var isOpen = panelCollapse.classList.contains('open'); // Remove 'open' class from all panel-collapses accordions.forEach(function(acc) { var collapse = acc.nextElementSibling; collapse.classList.remove('open'); }); // Toggle 'open' class only on the clicked panel-collapse if (!isOpen) { panelCollapse.classList.add('open'); } }); }); });