Skip to content

IBM Master the Mainframe Challenge

Congratulations to CW students Abdul-Qadir, Kenny, Julio, David, Mark, Steven, Jonathan, Juan, Jordan, Anthony, Marcelo, Matthew, Michael, Francis, and JumpStart High School student Laila. These students completed the IBM Master the Mainframe contest Phase 1.

In industries such as banking, finance, healthcare, insurance, retail, utilities and government, the mainframe continues to form the foundation of modern business. In fact, the mainframe processes over 30 billion transactions per day! The IBM Master the Mainframe contest is an exciting opportunity for students to gain real-world experience using enterprise computing skills.  Hosted at high schools, colleges and universities from all over the world, this unique mainframe computing contest is designed to equip students with mainframe knowledge, and challenge their skills in a hands-on coding experience.

For more information about the IBM Master the Mainframe visit:

http://www-03.ibm.com/systems/z/education/academic/masterthemainframe/

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