Skip to content

DR. GRACE BONANNO

Position(s): Chairperson and Professor, School of Information Technology

Department(s): Faculty

Ph. D., Nova Southeastern University • MS, Iona College • BS, Pace University
Certifications: MCSE, CCNA, CCAI, Network+, MCSA, Security+
“Technology impacts every area of our lives. Understanding the uses of technology and becoming an expert in the field of Information Technology (IT) provides an individual with a cutting edge career opportunity. It’s my goal to share with my students the knowledge and skills necessary to become an IT expert. It’s my desire that through interactive class sessions, hands-on and virtual labs, and individual and team-based assignments students will take hold of my respect and love for technology, apply their knowledge and skills, and succeed with a career in Information Technology.”

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'); } }); }); });