Grade 2 Math Levels

Welcome to Grade 2 Math Bubbles!

Challenging levels for second graders! Practice counting to 100, working with multiples, and comparing numbers.

What your child will learn: Counting to 100, multiples of 2, 5, and 10, skip counting by 100s, and comparing numbers greater than 60.

Level 1

Pop all the tens—count by tens from 10 to 100.

Number Bubble - Skip counting helps prepare for multiplying and bigger math adventures. Perfect for 2nd grade!

Level 2

Pop the bubbles counting by twos from 2 to 50.

Number Bubble - Boost pattern recognition and early division concepts by popping all the twos!

Level 3

Pop bubbles counting by hundreds from 100 to 1000. Finish in 25 seconds!

Number Bubble - Learn how numbers grow by hundreds! Big jump, big math fun!

Level 4

Pop every bubble with a number that is a multiple of 5 before time’s up!

Number Bubble - Discover multiples of five and improve quick thinking in this interactive math game.

Level 5

Pop all the bubbles with numbers greater than 60 before time is up!

Number Bubble - Practice comparing numbers and build confidence in number sizes. Can you find them all?

// Preserve inClassroom parameter in all links function addClassroomParamToLinks() { const urlParams = new URLSearchParams(window.location.search); const inClassroom = urlParams.get('inClassroom'); if (inClassroom === 'true') { // Add inClassroom=true to all internal links const links = document.querySelectorAll('a[href]:not([href^="http"])'); links.forEach(link => { const href = link.getAttribute('href'); if (href && !href.includes('inClassroom')) { const separator = href.includes('?') ? '&' : '?'; link.setAttribute('href', `${href}${separator}inClassroom=true`); } }); } } // Initialize updateProgress(); addClassroomParamToLinks();