Skip to content

Computer Networking Café

Computer Networking students had an opportunity to participate in roundtable discussions with employers including Robert Half Technology, TEK Systems, Optanix, and Cablevision.

According to Jan Dicker, Career Counselor and Adjunct Instructor, the purpose of the event was to prepare students for their field of choice in IT, “today’s Computer Networking Career Café offered students an excellent opportunity to network with employers to learn more about potential career opportunities, the IT field, and what qualifications they look for in candidates.”

It’s also an opportunity to ask questions to employers that they don’t normally get to ask during a job interview. “It was a great experience to actually speak directly with employers,” said Jorry, CW Computer Networking student.

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