... | 🕐 --:--
-- -- --
عاجل
⚡ عاجل: كريستيانو رونالدو يُتوّج كأفضل لاعب كرة قدم في العالم ⚡ أخبار عاجلة تتابعونها لحظة بلحظة على خبر ⚡ تابعوا آخر المستجدات والأحداث من حول العالم
⌘K
AI مباشر
22314 مقال 495 مصدر نشط 38 قناة مباشرة 4110 خبر اليوم
آخر تحديث: منذ ثانية

جامعةُ السّلطان قابوس تُحقق تقدمًا في تصنيف QS العالمي للبرامج الأكاديمية 2026

العالم
وهج الخليج
2026/03/26 - 11:38 502 مشاهدة

وهج الخليج ـ مسقط

حققت جامعةُ السلطان قابوس تقدمًا لافتًا في تصنيف /QS/ كيو إس العالمي للبرامج الأكاديمية لعام 2026، في إنجاز يعكس جودة برامجها الأكاديمية ويعزز مكانتها بين الجامعات الرائدة عالميًا.

وقد شهد التصنيف هذا العام تقييم 6273 جامعة من مختلف أنحاء العالم، تم إدراج 1908 جامعة منها، ضمن أكبر إصدار حتى الآن، والذي شمل 55 برنامجًا أكاديميًا دقيقًا موزعة على خمسة مجالات رئيسة.

كما سجلت الجامعة نموًّا في عدد البرامج المصنفة، حيث ارتفع إلى 20 برنامجًا مقارنة بـ 17 برنامجًا في عام 2025، في مؤشر واضح على اتساع حضورها الأكاديمي عالميًا. كما ارتفع عدد البرامج المصنفة ضمن أفضل 500 برنامج عالميًا من 15 برنامجًا إلى 19 برنامجًا، ما يعكس تحسنًا نوعيًا في الأداء الأكاديمي.

وعلى مستوى البرامج الأكاديمية المتقدمة، حققت الجامعة حضورًا بارزًا ضمن أفضل 50 برنامجًا عالميًّا، حيث تقدّم برنامج هندسة البترول إلى المرتبة 17 عالميًا بعد أن كان في المرتبة 25 ، وارتقى برنامج التمريض إلى المرتبة 25 عالميًّا بعد أن كان في المرتبة 32 ، فيما جاء برنامج إدارة المكتبات في المرتبة 44 عالميًا .

وتؤكد هذه الإنجازات التزام جامعة السّلطان قابوس بمواصلة مسيرة التميّز والرّيادة في جودة التعليم العالي والبحث العلمي، وتعزيز مكانتها كصرح أكاديمي عالمي مرموق.

تجدر الإشارة إلى أن تصنيف QS للبرامج الأكاديمية يعتمد على مجموعة من المؤشرات العالمية، تشمل: السمعة الأكاديمية، والسمعة الوظيفية، والاستشهادات العلمية، ومؤشر H، وشبكة البحث الدولي، مع اختلاف أوزانها بحسب طبيعة كل برنامج.

ظهرت المقالة جامعةُ السّلطان قابوس تُحقق تقدمًا في تصنيف QS العالمي للبرامج الأكاديمية 2026 أولاً على صحيفة وهج الخليج الإلكترونية.

مشاركة:
\n

مقالات ذات صلة

// Coin System - Track article read (function() { const email = localStorage.getItem('khabr_user_email'); if (!email) return; const articleId = 47110; // Record read (+1 coin) fetch('/api/coins/read', { method: 'POST', headers: {'Content-Type': 'application/json'}, body: JSON.stringify({email: email, article_id: articleId}) }).then(r => r.json()).then(data => { if (data.coins_earned > 0) { // Show coin earned toast const toast = document.createElement('div'); toast.innerHTML = '🪙 +' + data.coins_earned + ' coin! (Balance: ' + data.balance + ')'; toast.style.cssText = 'position:fixed;bottom:20px;right:20px;background:linear-gradient(135deg,#f59e0b,#d97706);color:#fff;padding:12px 20px;border-radius:12px;font-weight:bold;z-index:9999;animation:slideUp .5s ease;box-shadow:0 4px 15px rgba(245,158,11,0.4);'; document.body.appendChild(toast); setTimeout(() => toast.remove(), 3000); } }).catch(() => {}); // Daily login check const lastLogin = localStorage.getItem('khabr_daily_login'); const today = new Date().toDateString(); if (lastLogin !== today) { fetch('/api/coins/daily-login', { method: 'POST', headers: {'Content-Type': 'application/json'}, body: JSON.stringify({email: email}) }).then(r => r.json()).then(data => { if (data.coins_earned > 0) { localStorage.setItem('khabr_daily_login', today); setTimeout(() => { const toast = document.createElement('div'); toast.innerHTML = '🔥 Daily bonus +' + data.coins_earned + ' coins! (Streak: ' + data.streak + ' days)'; toast.style.cssText = 'position:fixed;bottom:70px;right:20px;background:linear-gradient(135deg,#ef4444,#dc2626);color:#fff;padding:12px 20px;border-radius:12px;font-weight:bold;z-index:9999;animation:slideUp .5s ease;box-shadow:0 4px 15px rgba(239,68,68,0.4);'; document.body.appendChild(toast); setTimeout(() => toast.remove(), 4000); }, 1500); } }).catch(() => {}); } })();
// Coin System - Track article read (function() { const email = localStorage.getItem('khabr_user_email'); if (!email) return; const articleId = 47110; // Record read (+1 coin) fetch('/api/coins/read', { method: 'POST', headers: {'Content-Type': 'application/json'}, body: JSON.stringify({email: email, article_id: articleId}) }).then(r => r.json()).then(data => { if (data.coins_earned > 0) { // Show coin earned toast const toast = document.createElement('div'); toast.innerHTML = '🪙 +' + data.coins_earned + ' coin! (Balance: ' + data.balance + ')'; toast.style.cssText = 'position:fixed;bottom:20px;right:20px;background:linear-gradient(135deg,#f59e0b,#d97706);color:#fff;padding:12px 20px;border-radius:12px;font-weight:bold;z-index:9999;animation:slideUp .5s ease;box-shadow:0 4px 15px rgba(245,158,11,0.4);'; document.body.appendChild(toast); setTimeout(() => toast.remove(), 3000); } }).catch(() => {}); // Daily login check const lastLogin = localStorage.getItem('khabr_daily_login'); const today = new Date().toDateString(); if (lastLogin !== today) { fetch('/api/coins/daily-login', { method: 'POST', headers: {'Content-Type': 'application/json'}, body: JSON.stringify({email: email}) }).then(r => r.json()).then(data => { if (data.coins_earned > 0) { localStorage.setItem('khabr_daily_login', today); setTimeout(() => { const toast = document.createElement('div'); toast.innerHTML = '🔥 Daily bonus +' + data.coins_earned + ' coins! (Streak: ' + data.streak + ' days)'; toast.style.cssText = 'position:fixed;bottom:70px;right:20px;background:linear-gradient(135deg,#ef4444,#dc2626);color:#fff;padding:12px 20px;border-radius:12px;font-weight:bold;z-index:9999;animation:slideUp .5s ease;box-shadow:0 4px 15px rgba(239,68,68,0.4);'; document.body.appendChild(toast); setTimeout(() => toast.remove(), 4000); }, 1500); } }).catch(() => {}); } })();
AI
يا هلا! اسألني أي شي 🎤