ADVERTISEMENT

Marcos orders DepEd to improve PH students' low int'l assessment ranking

Published Jan 11, 2024 09:21 am

President Marcos has tasked the Department of Education (DepEd) to immediately take necessary steps to improve the Philippines' ranking in the international students assessment which remains at a low level.

100118_teacher_12_vicoy.jpeg
MB File Photo

During a sectoral meeting in Malacañan on Thursday, Jan. 11, Marcos ordered DepEd to improve the level of proficiency in Mathematics, Reading, and Science in terms of scores in a bid to achieve a better ranking in the Program for International Students Assessment (PISA).

"Nag-present po tayo sa Pangulo ng ating (We presented to the President our) ways forward because the theme really is how do we improve, not only our PISA performance but the overall performance of our learners in basic education," DepEd Undersecretary Michael Poa said in a Palace briefing.

In order to do this, the Education department has to address  the factors leading to the low scores such as the use of digital devices, language use at home, teachers specialization, and bullying among others.

The President also told them to see possible enhancements on the school-based nutrition programs for students.

According to DepEd Undersecretary Gina Gonong, the Philippines is at level 1A-1B in terms of proficiency, and it is looking to move to level 2 and to further increase the proficiency level in the long run.

While Marcos was not disappointed with the country's current status in its proficiency level, Gonong said he was bent on pushing for improvements and wants them to immediately act upon challenges preventing the Philippines from improving its ranking.

"Actually hindi naman disappointment kundi 'yung push na we need to keep working hard so that we improve our performance in PISA, pero hindi nga lang PISA kundi performance talaga ng mga estudyante natin as a whole (Actually it was not disappointment, but the push that we need to keep working hard so that we improve our performance in PISA, not only in PISA but the performance of our students as a whole)," the DepEd official said when asked whether or not the President was disappointed with the ranking.

"Kaya talagang si President ang instruction niya tutukan natin 'yung teacher support and teacher quality, 'yung bullying sa school at saka 'yung nutrition (So the President instructed us to focus on the teacher support and teacher quality, bullying in schools, and nutrition). So it's all about what we can do moving forward so we can improve the performance of our students," Gonong added.

She noted that the immediate target of the department is to improve in terms of proficiency level and the scores of students until the country reaches the minimum level of proficiency.

"Alam naman natin na hindi ganoon kabilis ang pag-increase ng proficiency level (We know that proficiency level will not increase immediately) – it takes years bago talagang ma-develop ang mga estudyante natin (before our students really develop). So, we’ll just have to continue doing the reforms that we have started in this administration," she said.

The DepEd official explained the significance of the PISA ranking, saying it shows the level of students' ability to apply the knowledge and skills they learn from school to real-life scenarios.

"Students can use the knowledge and skills that they learn from schools in real life situations. So kapag tumataas ang performance natin sa PISA, ibig sabihin mas handa ang mga estudyante natin para sa mga real-life situations (So if our performance in PISA improves, that means our students are prepared for real-life situations)," Gonong said.

From 2018 to 2022, there has only been a slight improvement in terms of scores but the status remains at a low level, Gonong also said.

The next assessment will be in March 2025.

Related Tags

Department of Education PISA President Marcos
ADVERTISEMENT
.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1561_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1562_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1563_widget.title }}

{{ articles_filter_1564_widget.title }}

.mb-article-details { position: relative; } .mb-article-details .article-body-preview, .mb-article-details .article-body-summary{ font-size: 17px; line-height: 30px; font-family: "Libre Caslon Text", serif; color: #000; } .mb-article-details .article-body-preview iframe , .mb-article-details .article-body-summary iframe{ width: 100%; margin: auto; } .read-more-background { background: linear-gradient(180deg, color(display-p3 1.000 1.000 1.000 / 0) 13.75%, color(display-p3 1.000 1.000 1.000 / 0.8) 30.79%, color(display-p3 1.000 1.000 1.000) 72.5%); position: absolute; height: 200px; width: 100%; bottom: 0; display: flex; justify-content: center; align-items: center; padding: 0; } .read-more-background a{ color: #000; } .read-more-btn { padding: 17px 45px; font-family: Inter; font-weight: 700; font-size: 18px; line-height: 16px; text-align: center; vertical-align: middle; border: 1px solid black; background-color: white; } .hidden { display: none; }
function initializeAllSwipers() { // Get all hidden inputs with cms_article_id document.querySelectorAll('[id^="cms_article_id_"]').forEach(function (input) { const cmsArticleId = input.value; const articleSelector = '#article-' + cmsArticleId + ' .body_images'; const swiperElement = document.querySelector(articleSelector); if (swiperElement && !swiperElement.classList.contains('swiper-initialized')) { new Swiper(articleSelector, { loop: true, pagination: false, navigation: { nextEl: '#article-' + cmsArticleId + ' .swiper-button-next', prevEl: '#article-' + cmsArticleId + ' .swiper-button-prev', }, }); } }); } setTimeout(initializeAllSwipers, 3000); const intersectionObserver = new IntersectionObserver( (entries) => { entries.forEach((entry) => { if (entry.isIntersecting) { const newUrl = entry.target.getAttribute("data-url"); if (newUrl) { history.pushState(null, null, newUrl); let article = entry.target; // Extract metadata const author = article.querySelector('.author-section').textContent.replace('By', '').trim(); const section = article.querySelector('.section-info ').textContent.replace(' ', ' '); const title = article.querySelector('.article-title h1').textContent; // Parse URL for Chartbeat path format const parsedUrl = new URL(newUrl, window.location.origin); const cleanUrl = parsedUrl.host + parsedUrl.pathname; // Update Chartbeat configuration if (typeof window._sf_async_config !== 'undefined') { window._sf_async_config.path = cleanUrl; window._sf_async_config.sections = section; window._sf_async_config.authors = author; } // Track virtual page view with Chartbeat if (typeof pSUPERFLY !== 'undefined' && typeof pSUPERFLY.virtualPage === 'function') { try { pSUPERFLY.virtualPage({ path: cleanUrl, title: title, sections: section, authors: author }); } catch (error) { console.error('ping error', error); } } // Optional: Update document title if (title && title !== document.title) { document.title = title; } } } }); }, { threshold: 0.1 } ); function showArticleBody(button) { const article = button.closest("article"); const summary = article.querySelector(".article-body-summary"); const body = article.querySelector(".article-body-preview"); const readMoreSection = article.querySelector(".read-more-background"); // Hide summary and read-more section summary.style.display = "none"; readMoreSection.style.display = "none"; // Show the full article body body.classList.remove("hidden"); } document.addEventListener("DOMContentLoaded", () => { let loadCount = 0; // Track how many times articles are loaded const offset = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; // Offset values const currentUrl = window.location.pathname.substring(1); let isLoading = false; // Prevent multiple calls if (!currentUrl) { console.log("Current URL is invalid."); return; } const sentinel = document.getElementById("load-more-sentinel"); if (!sentinel) { console.log("Sentinel element not found."); return; } function isSentinelVisible() { const rect = sentinel.getBoundingClientRect(); return ( rect.top < window.innerHeight && rect.bottom >= 0 ); } function onScroll() { if (isLoading) return; if (isSentinelVisible()) { if (loadCount >= offset.length) { console.log("Maximum load attempts reached."); window.removeEventListener("scroll", onScroll); return; } isLoading = true; const currentOffset = offset[loadCount]; window.loadMoreItems().then(() => { let article = document.querySelector('#widget_1690 > div:nth-last-of-type(2) article'); intersectionObserver.observe(article) loadCount++; }).catch(error => { console.error("Error loading more items:", error); }).finally(() => { isLoading = false; }); } } window.addEventListener("scroll", onScroll); });

Sign up by email to receive news.