Skip to content

DR. CHRIS NWOSISI

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

Department(s): Faculty

DPS, Pace University • MS, Polytechnic University • BA, Hunter College
Certifications: CAISS, CC, CNIST CSF, CNA, CNE, Network+, A+, MCSA, CCNA, CCAI

“Our classes are comprised of students with diverse work experiences. For those of them with “zero” IT knowledge and those of them who want to change career, our department will give them the hands-on experience that they need. Our small class size encourages team work and one-on-one interaction. Project development is an integral part of our program, and real life projects are used to stimulate and inspire our students.”

“Tell me and I’ll forget; show me and I may remember; involve me and I’ll understand.” – Chinese Proverb

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