Skip to content

DR. JACQUELINE ANDREA SHAW

Position(s): Assistant Professor, School of Information Technology

Department(s): Faculty

Doctor in Information Technology, Walden University • MS Information Technology, Walden University • MS Computer Science, City College, CUNY • BA Computer Science, CUNY • AAS Computer Science, Medgar Evers College, CUNY
Certifications: CompTIA A+, CompTIA Network +, CCENT, MCP, MCT, MOS (Word, Excel, Outlook, PowerPoint and Access)
“Teaching and working in the technology field for over twenty five years has been an evolving and interesting experience. Keeping on the forefront of new technology here at CW and sharing the changes within the IT industry with students has been rewarding. My students come into the classroom motivated to develop their skills and become the next tech inventor and succeed. I always stress that education is a key to opening doors to wonderful opportunities and CW is the way.”

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