Online Learning Experts at Missouri Virtual Academy Invite Students to Enroll for 2021-2022 School Year (2024)

In August and September 2020, we issued an aggregate of $420,000,000 principal amount of our 1.125% convertible senior notes due 2027, which we refer to as our “convertible notes.” The convertible notes are convertible in certain circ*mstances into consideration that consists, at our election, of shares of our common stock, cash or a combination of cash and shares of our common stock. As permitted by the indenture governing the notes, we have irrevocably elected that all future conversions of the notes will be settled pursuant to combination settlement. Generally, under this settlement method, the conversion value will be settled in cash up to the principal amount being converted, and any excess of the conversion value over the principal amount will be settled, at our election, in cash or shares of our common stock.


Stride trades on the NYSE under the symbol LRN.Copyright © 2020 Stride, Inc. All rights reserved. The Stride word mark, logo and other marks referenced herein are trademarks of Stride, Inc. and its subsidiaries, and other company names and trademarks are the property of their respective owners.




' + '

' + '

' ), submitText: 'Submit' } }, scollingTable: function (selector) { $(selector).not(selector + ' table').wrap(''); }, stickyNavBar: function () { var inst = this, $window = $(window), $layout = $('.layout'), $header = $('.pane--header'), $nav = $('.nav--secondary'), $navContainer = $('.pane--breadcrumb'), navContainerPos = function () { return $navContainer.position().top; }; $window.on('scroll', function () { if ($window.width() > 1200) { $navContainer.css('min-height', $nav.outerHeight()); if ($window.scrollTop() + $header.outerHeight() >= $navContainer.position() .top) { $layout.addClass('js--sticky'); $nav.css('top', $header.outerHeight()); } else { $layout.removeClass('js--sticky'); $nav.removeAttr('style'); } } else { $layout.removeClass('js--sticky'); $nav.removeAttr('style'); $navContainer.removeAttr('style'); } }); $window.on('resize', function () { if ($window.width() > 1200) { $layout.removeClass('js--sticky'); $navContainer.removeAttr('style').css('min-height', $nav.outerHeight()); $nav.removeAttr('style'); } else { $layout.removeClass('js--sticky'); $nav.removeAttr('style'); $navContainer.removeAttr('style'); } $window.trigger('scroll'); }).resize(); }, meetingFancy: function ($selector, trigger) { var meetingCookie = sessionStorage.getItem('requestMeeting'); if (meetingCookie != 'closed') { $selector.removeClass('js--hidden'); } $selector.on('click', '.button--cookie', function () { $selector.addClass('js--hidden'); sessionStorage.setItem("requestMeeting", 'closed'); }); $selector.on('click', trigger, function (e) { e.preventDefault(); $.fancybox.open({ type: 'iframe', src: '/request-meeting-iframe/default.aspx', opts: { slideClass: 'fancybox-slide--form', parentEl: 'form', iframe: { attr: { title: 'Request a meeting with management' } } } }); }); window.addEventListener('message', function (event) { if (event.data == 'close-fancybox') { $.fancybox.close(); } }, false); }, navAccessibility: function() { $('nav .selected > a').attr('aria-current','page'); $('.nav--main').attr('aria-label','primary navigation'); $('.nav--secondary').attr('aria-label','secondary navigation'); $('.nav--mobile').attr('aria-label','mobile navigation'); }, iconFix: function(){ $('.q4icons .module_link').each(function(){ if (!$(this).children('.q4icons_icon').length) { $(this).hasClass('.module_link--arrow') ? $(this).prepend('') : $(this).append(''); } }); }, /** * Adds aria-label attribute to elements * @param {mapping} [object] key is expected to be the selector, value is the label */ addAriaLabel: function(mapping){ $.each(mapping, function(key, value) { $(key).attr('aria-label', value); }); }, fancySignup: function () { var inst = this, validationLock = true, signup = inst.options.mailingListSignupCls, $signup = $(signup), confirm = 'div[id*="SubscriberConfirmation"]', $confirm = $('div[id*="SubscriberConfirmation"]'), // jshint ignore:line footerSuccess = inst.options.mailingListConfig.location + ' ' + confirm + ' .module_message--success', $footerSuccess = $(footerSuccess); // Subscriber Confirmation fix if ($confirm.is(':visible')) { if ($confirm.filter(':visible').closest(inst.options.mailingListConfig.location).length) { var successText = $confirm.filter(':visible').closest(inst.options.mailingListConfig.location).find('.module_message--success').text(); $confirm.filter(':visible').parent().html(inst.options.mailingListConfig.tpl).find('.module_message--success').html(successText); } inst.scrollTo($('div[id*="SubscriberConfirmation"]').filter(':visible'), 0); if (!$footerSuccess.length) { $('.module-unsubscribe,' + inst.options.mailingListConfig.hideOnConfirmation).addClass('js--hidden'); } } if (!$signup.length) { return; } $signup.each(function () { var $this = $(this); // If a confirmation or error message is visible on page load, scroll to the module if ($this.find('input.module_input').length && $this.find('input.module_input').val().length) { inst.scrollTo($this, 0); } // Create a second submit button to be displayed inside fancybox. Replace input type submit with button var $submit = $this.find('input[type="submit"]'); $submit.addClass('js--hidden'); $submit[0].outerHTML = $submit[0].outerHTML.replace(/^' + $submit[0].value + '
'; $this.find('.module_actions').append(''); $this.on('click', '.module-subscribe_submit-button--fancy', function (e) { e.preventDefault(); validationLock = false; var $parent = $(this).closest(signup), errors = inst._mailingListValidation($parent); if (!errors.length) { $(this).closest(signup).find('.module_actions [type="submit"]').not(this).trigger('click'); return false; } else { inst.scrollTo($this.find('.module_error-container'), 0); } return false; }); // Run validation on change $this.find('input, select').on('change', function () { if (!validationLock) { inst._mailingListValidation($this); } }); // Validate submit on enter $this.find('input[type="text"], input[type="email"]').on('keydown', function (e) { if (e.keyCode == 13) { e.preventDefault(); $(this).closest(signup).find('.module_actions [type="submit"]').trigger('click'); return false; } }); }); }, // a modified version of the default toggle() that permits the closing of open accordions toggleMobileFooterLinks: function($container, item, toggle, panel) { var $this = this, $item = $container.find(item); $this.accessibilize($container.find(toggle), $container.find(panel)); $item.on('click keypress', toggle, function (e) { e.preventDefault(); if (e.which == 13 || e.type == 'click') { var $this = $(this), containingItem = $this.closest(item); if (!containingItem.hasClass('js--active')) { $(item).removeClass('js--active'); $container.find(toggle).attr('aria-expanded', false); $container.find(panel).slideUp(500, function () { $(this).addClass('js--hidden'); }); $this.attr('aria-expanded', true); containingItem.addClass('js--active').find(panel).slideDown(500, function () { $(this).removeClass('js--hidden'); }); } else if(containingItem.hasClass('js--active')) { containingItem.removeClass('js--active'); containingItem.find(toggle).attr('aria-expanded', false); containingItem.find(panel).slideUp(500, function () { $(this).addClass('js--hidden'); }); } } }); }, hideSearchOnScroll: function() { var $window = $(window), $layout = $('.layout'); $window.on('resize', function() { $layout.addClass('js--resized').delay(250).queue(function(){ $layout.removeClass('js--resized').dequeue(); }); }); $('.module-search .module-search_input').on('focus', function() { $layout.addClass('js--search-focused').delay(250).queue(function(){ $layout.removeClass('js--search-focused').dequeue(); }); }); $window.on('scroll', function (e) { if(!$layout.hasClass('js--search-focused') && !$layout.hasClass('js--resized')) { if ($window.width() > 1200) { if($('.module_search-toggle--desktop').hasClass('js--active')) { $('.module_search-toggle--desktop').trigger('click'); } } else { if($('.module_search-toggle--mobile').hasClass('js--active')) { $('.module_search-toggle--mobile').trigger('click'); } } } }); }, closem*nuOnSearchOpen: function() { var $layout = $('.layout'); $('.module_search-toggle--desktop, .module_search-toggle--mobile').on('click', function(e) { if($layout.hasClass('js--mobile')) { $layout.addClass('js--closing-menu').delay(500).queue(function(){ $layout.removeClass('js--closing-menu').dequeue(); }); $('.layout_toggle--menu').trigger('click'); } if(!$layout.hasClass('js--search-open')) { $('.layout').addClass('js--search-open'); } else { $('.layout').removeClass('js--search-open'); } }); }, mobileMenuToggle: function($layout, pane, toggle) { var inst = this; $(toggle).attr('aria-expanded', 'false'); $layout.on('click', toggle, function (e) { if ($(this).is('a, button')) e.preventDefault(); $(toggle).attr('aria-expanded', function (i, attr) { return attr == 'true' ? 'false' : 'true'; }); if($layout.hasClass('js--mobile')) { $layout.removeClass('js--mobile'); } else { // Close the search box if($layout.hasClass('js--search-open')) { $('.module_search-toggle--mobile').trigger('click'); } $layout.addClass('js--mobile'); } inst._onMobileMenuExpand($('.js--mobile ' + pane + ' .nav')); }); }, openNameChangePopUp: function() { $(document).ready(function() { if(!sessionStorage.getItem('nameChangePopUp')) { $.fancybox.open({ src: $('.module-name-change .module-name-change_content'), type: 'inline', afterClose : function() { sessionStorage.setItem('nameChangePopUp', true); } }); } }); }, init: function () { var app = this; app.cleanUp(); app.submitOnEnter('.module-unsubscribe'); app.submitOnEnter('.module-search'); app.validateSubmit('.module-search'); app.superfish($('.nav--main .level2, .nav--secondary .level2, .nav--mobile .level2'), { cssArrows: false }); app.mobileMenuToggle($('.layout'), '.pane--navigation', '.layout_toggle--menu'); app.cleanQuickLinks($('.module-links')); app.copyright($('.copyright_year')); app.docTracking(); app.fancySignup(); app.toggleMobileFooterLinks($('.module-corporate-footer .module_container--mobile'), '.module_column', '.module_heading', '.module_content'); app.resetDate(['.nav a[href*="s4.q4web.com"]:not([href$=".pdf"])']); app.previewToolbar(); app.reveal('.pane--header', '.module_search-toggle--desktop', '.module-search--desktop', false); app.reveal('.pane--header', '.module_search-toggle--mobile', '.module-search--mobile', false); app.hideSearchOnScroll(); app.closem*nuOnSearchOpen(); app.stickyNavBar(); app.meetingFancy($('.module-cta'), '.button--meeting'); app.reveal('.pane--footer .module-subscribe', '.module_input', '.module-subscribe_mailing-list', true, true); app.sections(); app.iconFix(); app.navAccessibility(); app.accessibleNavKeyboard( '.nav--main', '2', '.nav--mobile'); app.addAriaLabel({'a:contains("FAQs")':'Investor frequently asked questions'}); // app.openNameChangePopUp(); } }); q4App.init();

Online Learning Experts at Missouri Virtual Academy Invite Students to Enroll for 2021-2022 School Year (2024)
Top Articles
Latest Posts
Article information

Author: Ouida Strosin DO

Last Updated:

Views: 6343

Rating: 4.6 / 5 (76 voted)

Reviews: 91% of readers found this page helpful

Author information

Name: Ouida Strosin DO

Birthday: 1995-04-27

Address: Suite 927 930 Kilback Radial, Candidaville, TN 87795

Phone: +8561498978366

Job: Legacy Manufacturing Specialist

Hobby: Singing, Mountain biking, Water sports, Water sports, Taxidermy, Polo, Pet

Introduction: My name is Ouida Strosin DO, I am a precious, combative, spotless, modern, spotless, beautiful, precious person who loves writing and wants to share my knowledge and understanding with you.