'+pages+''); $('.stream > div:odd').addClass('bgr_color'); updateHeight('#history'); }); window.activateTabArea = ensure(function(tab, areas){ var parsed = false; var parts = (areas || '').split('/'); window.fsonload = $.inArray('fs', parts) >= 0; if(fsonload){ parts.splice(parts.indexOf('fs'), 1); } var replayMode = false; if($.inArray('replay', parts)>=0){ replayMode = 'replay'; } var noSoundMode = false; if($.inArray('nosound', parts)>=0){ noSoundMode = 'nosound'; } if($.inArray('ns', parts)>=0){ noSoundMode = 'ns'; } var previewMode = null; if($.inArray('p', parts)>=0){ previewMode = 'p'; } if($.inArray('preview', parts)>=0){ previewMode = 'preview'; } if($.inArray('repeat', parts)>=0){ replayMode = 'repeat'; } if($.inArray('r', parts)>=0 || $.inArray('ro', parts)>=0){ replayMode = 'r'; } if(replayMode){ parts.splice(parts.indexOf(replayMode), 1); } if(noSoundMode){ parts.splice(parts.indexOf(noSoundMode), 1); } if(previewMode){ parts.splice(parts.indexOf(previewMode), 1); } if(previewMode){ if(!parts.length){ parts = ['1-14', '999:59']; } } var area = parts[0]; if(tab == 'history' && false){ var page = parseInt(area || '1') || 1; $.ajax({ url: 'https://login.wn.com/recent/json/?pp='+history_pp+'&skip='+history_pp*(page-1), dataType: 'jsonp', success: function(response){ $ensure(function(){ renderHistory(response, page); }); } }); return true; } if(tab == 'global_history' && false){ var page = parseInt(area || '1') || 1; globalHistory.fetchStream(page, '', function(){ updateHeight('#global_history'); }); return true; } if(tab == 'my_playlists' && false){ var page = parseInt(area || '1') || 1; myPlaylists.fetchStream(page, '', function(){ updateHeight('#my_playlists'); }); return true; } if(tab == 'my_videos' && false){ var page = parseInt(area || '1') || 1; myVideos.fetchStream(page, '', function(){ updateHeight('#my_videos'); }); return true; } if(tab == 'related_sites' && areas && matchPosition(areas)){ var seconds = parsePosition(areas); scrollRelated(seconds); return false; } if(matchPosition(area) || matchAction(area)){ parts.unshift('1'); area = parts[0]; } if(tab == 'expand' && area && area.match(/\d+/)) { var num = parseInt(area); if(num < 100){ //FIX ME. Load news page with ajax here } else if(num > 1900){ //FIX ME. Load timeline page with ajax here } } else if(tab.match(/^playlist\d+$/)){ var playerId = parseInt(tab.substring(8)); var vp = videoplayers[playerId]; window.descriptionsholder = $('.descriptionsplace'); if(!vp) return; // why? no player? if(replayMode){ $('.replaycurrent'+playerId).attr('checked', true); vp.setReplayCurrent(true); } var playQueue = []; window.playQueue = playQueue; var playQueuePosition = 0; var playShouldStart = null; var playShouldStop = null; var parseList = function(x){ var items = x.split(/;|,/g); var results = []; for (i in items){ try{ var action = parseAction(vp, items[i]); if(!action.video){ if(window.console && console.log) console.log("Warning: No video for queued entry: " + items[i]); }else{ results.push(action); } }catch(e){ if(window.console && console.log) console.log("Warning: Can''t parse queue entry: " + items[i]); } } return results; }; var scrollToPlaylistPosition = function(vp){ var ppos = vp.getPlaylistPosition(); var el = vp.playlistContainer.find('>li').eq(ppos); var par = el.closest('.playlist_scrollarea'); par.scrollTop(el.offset().top-par.height()/2); } var updateVolumeState = function(){ if(noSoundMode){ if(noSoundMode == 'turn-on'){ clog("Sound is on, vsid="+vp.vsid); vp.setVolumeUnMute(); noSoundMode = false; }else{ clog("Sound is off, vsid="+vp.vsid); vp.setVolumeMute(); noSoundMode = 'turn-on'; } } } var playQueueUpdate = function(){ var playPosition = playQueue[playQueuePosition]; vp.playFromPlaylist(playPosition.video); scrollToPlaylistPosition(vp); playShouldStart = playPosition.start; playShouldStop = playPosition.stop; }; var playQueueAdvancePosition = function(){ clog("Advancing play position..."); playQueuePosition ++; while(playQueuePosition < playQueue.length && !playQueue[playQueuePosition].video){ playQueuePosition ++; } if(playQueuePosition < playQueue.length){ playQueueUpdate(); }else if(vp.getReplayCurrent()){ playQueuePosition = 0; playQueueUpdate(); vp.seekTo(playShouldStart); vp.playVideo(); }else{ vp.pauseVideo(); playShouldStop = null; playShouldStart = null; } }; function loadMoreVideos(playerId, vp, start, finish, callback){ var playlistInfo = playlists[playerId-1]; if(playlistInfo.loading >= finish) return; playlistInfo.loading = finish; $.ajax({ url: '/api/upge/cheetah-photo-search/query_videos2', dataType: 'json', data: { query: playlistInfo.query, orderby: playlistInfo.orderby, start: start, count: finish-start }, success: function(response){ var pl = vp.getPlaylist().slice(0); pl.push.apply(pl, response); vp.setPlaylist(pl); callback(); } }); } if(parts.length == 1 && matchDash(parts[0])){ var pl = vp.getActualPlaylist(); var vids = parseDash(parts[0]); parts = []; for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': null }) } if(vids.length){ if(vids[vids.length-1]-1>=pl.length){ loadMoreVideos(playerId, vp, pl.length, vids[vids.length-1], function(){ if(fsonload){ activateTabArea(tab, parts[0]+'/fs'); }else{ activateTabArea(tab, parts[0]); } var pls = vp.getPlaylist(); vp.playFromPlaylist(pls[pls.length-1]); vp.playVideo(); scrollToPlaylistPosition(vp); }); return true; } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; playShouldStart = 0; } } if(previewMode){ var vids = []; var dur = 0; var pl = vp.getActualPlaylist(); area = parts[0]; if(parts.length == 1 && matchPosition(parts[0])){ vids = parseDash('1-'+pl.length); dur = parsePosition(parts[0]); parts = []; }else if(parts.length == 1 && matchDash(parts[0])){ vids = parseDash(parts[0]); dur = parsePosition("999:59"); parts = []; } if(parts.length == 2 && matchDash(parts[0]) && matchPosition(parts[1])){ vids = parseDash(parts[0]); dur = parsePosition(parts[1]); parts = []; } for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': dur }) } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } } if(parts.length>1){ for(var i = 0; i < parts.length; i++){ var sel = findMatchingVideo(vp, parts[i]); if(sel){ playQueue.push({ 'video': sel, 'start': 0, 'stop': null }) } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } }else if(area){ var sel = findMatchingVideo(vp, area); if(sel){ vp.playFromPlaylist(sel); playShouldStart = 0; parsed = true; } } if(fsonload || replayMode){ playShouldStart = 0; } if(document.location.search.match('at=|queue=')){ var opts = document.location.search.replace(/^\?/,'').split(/&/g); for(var o in opts){ if(opts[o].match(/^at=(\d+:)?(\d+:)?\d+$/)){ playShouldStart = parsePosition(opts[o].substr(3)) } if(opts[o].match(/^queue=/)){ playQueue = parseList(opts[o].substr(6)); if(playQueue){ playQueuePosition = 0; playQueueUpdate(); } } } } if(matchPosition(parts[1])){ playShouldStart = parsePosition(parts[1]); parsed = true; } if(matchAction(parts[1])){ var action = parseAction(vp, area+'/'+parts[1]); playShouldStart = action.start; playShouldStop = action.stop; parsed = true; } if(playShouldStart !== null && !playQueue.length){ playQueue.push({ video: vp.getCurrentVideo(), start: playShouldStart, stop: playShouldStop }); } if(playShouldStart != null){ setInterval(function(){ if(playShouldStop && vp.currentPlayer && vp.currentPlayer.getCurrentTime() > playShouldStop){ playShouldStop = null; if(vp.getCurrentVideo() == playQueue[playQueuePosition].video){ playQueueAdvancePosition(); }else{ playShouldStart = null; } } }, 500); vp.playerContainer.bind('videoplayer.player.statechange', function(e, state){ if(state == 'ended'){ // advance to the next video playQueueAdvancePosition(); } }); vp.playerContainer.bind('videoplayer.player.readychange', function(e, state){ if(state){ updateVolumeState(); if(playShouldStart !== null){ vp.seekTo(playShouldStart); playShouldStart = null; }else{ playShouldStop = null; // someone started other video, stop playing from playQueue } } if(fsonload) { triggerFullscreen(playerId); fsonload = false; } }); } } else if(tab.match(/^wiki\d+$/)){ if(firstTimeActivate){ load_wiki($('#'+tab), function(){ if(area){ var areaNode = $('#'+area); if(areaNode.length>0){ $('html, body').scrollTop(areaNode.offset().top + 10); return true; } } }); } } return parsed; }) window.activateTab = ensure(function(tab, area){ window.activeArea = null; if(tab == 'import_videos'){ if(area){ import_videos(area); }else{ start_import(); } return true; } if(tab == 'chat'){ update_chat_position($('.chat').eq(0)); window.activeArea = 'chat'; jQuery('.tabtrigger').offscreentabs('activateTab', 'chat'); return true; } if(tab in rev_names){ tab = rev_names[tab]; } if(tab.match(':')){ return false; } var sup = $('ul li a[id=#'+tab+']'); if(sup && sup.length>0){ window.activeArea = area; sup.first().click(); if(!window.activateTabArea(tab, area)){ window.activeArea = null; } window.activeArea = null; return true; }else{ var have_tabs = $('#playlist_menu li').length; if(tab.match(/^playlists?\d+$/)){ var to_add = +tab.substring(8).replace(/^s/,'')-have_tabs; if(to_add>0 && have_tabs){ add_more_videos(to_add); return true; } } } return false; }); window.currentPath = ensure(function(){ return window.lastHistory.replace(basepath, '').split('?')[0]; }); window.main_tab = window.main_tab || 'videos'; window.addHistory = ensure(function(path){ if(window.console && console.log) console.log("Adding to history: "+path); if(window.history && history.replaceState && document.location.hostname.match(/^(youtube\.)?(\w{2,3}\.)?wn\.com$/)){ if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = basepath; } else if( path.match('^'+main_tab+'/') ){ path = basepath + '/' + path.replace(main_tab+'/', '').replace('--','/'); } else { path = basepath + '/' + path.replace('--','/'); } if(document.location.search){ path += document.location.search; } if(window.lastHistory) { history.pushState(null, null, path); } else if(window.lastHistory != path){ history.replaceState(null, null, path); window.lastHistory = path; } } else{ path = path.replace('--','/'); if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = ''; } if(window.lastHistory != '/'+path){ window.location.hash = path? '/'+path : ''; window.lastHistory = '/'+path; } } }); $('.tabtrigger li a').live('click', ensure(function() { var tab = $(this).attr('id'); if(tab.substring(0,1) == '#'){ var name = tab.substring(1); if(name in menu_names){ name = menu_names[name][0]; } realTab = rev_names[name]; $('#'+realTab).show(); if(window.console && console.log) console.log("Triggering tab: "+name+(window.activeArea?" activeArea="+window.activeArea:'')); var path = name; if(window.activeArea){ path = path + '/' + window.activeArea; } if(tab.match(/#playlist\d+/) || tab.match(/#details\d+/)){ $('.multiple-playlists').show(); $('.related_playlist').show(); $('.longest_videos_playlist').show(); }else { $('.multiple-playlists').hide(); $('.related_playlist').hide(); $('.longest_videos_playlist').hide(); } // start the related script only when the tab is on screen showing if (tab.match(/related_sites/)) { if (mc) { mc.startCredits(); } } window.activeTab = realTab; addHistory(path); setTimeout(ensure(function(){ if(tab.match(/language--/)){ $('.tabtrigger').offscreentabs('activateTab', 'language'); } if(tab.match(/weather/)) { $('.tabtrigger').offscreentabs('activateTab', 'weather'); loadContinent(); } updateMenus(tab); updateHeight(); }), 10); } return false; })); }); -->

Seoul National University

Seoul National University (SNU; Korean, 서울대학교, Seoul Daehakgyo, colloquially Seouldae) is a national research university located in Seoul, the capital of Korea.

The university was founded in its current form in 1946. It is located on three campuses: the main campus in Gwanak and two additional campuses in Daehangno and Suwon. The university comprises sixteen colleges, one graduate school, and nine professional schools. The student body consists of nearly 17,000 undergraduate and 11,000 graduate students. Since its founding, Seoul National University has been widely considered to be the most prestigious university in the country. According to data compiled by KEDI, the university spends more on its students per capita than any other university in the country that enrolls at least 10,000.

Seoul National University holds a memorandum of understanding with over 700 academic institutions in 40 countries, the World Bank, and the country's first ever general academic exchange program with the University of Pennsylvania. The Graduate School of Business offers dual master's degrees with Duke University, ESSEC Business School, and the Peking University, double-degrees at the MIT Sloan School of Management and Yale School of Management, and MBA-, MS-, and PhD-candidate exchange programs with universities in ten countries on four continents. The university's international faculty headcount is 242 or 4% of the total.Nobel laureate Paul Crutzen and Fields Medal recipient Hironaka Heisuke are on the faculty roster.

Podcasts:

  • Seoul National University Official Video - A new tomorrow begins

    #SNU #Seoulnationaluniversity #snuofficialvideo #introductionvideo Seoul National University Official Video (2024. 3. 4.) | A new tomorrow begins

    published: 04 Mar 2024
  • Seoul National University campus tour 서울대학교 Seoul, South Korea 4K

    #1 university in Korea, Seoul National University campus tour 4K 서울대학교 Seoul, South Korea #snu #seoulnationaluniversity #korea #studyinkorea #koreastudy 서울대학교 Seoul National University SNU, established 77 years ago is a public university with a main campus in Seoul, South Korea. Seoul University is ranked number one in Korea and 11th in THE Asia University Rankings. The university has nearly 29000 students with nearly 17000 undergraduate students, 7000 graduate students in master's program and 6000 graduate students in doctoral program. Sixteen colleges of the university offer 83 undergraduate degree programs. There is one graduate school with 99 programs from five fields of studies for master and doctoral programs. The primary language of instruction at Seoul National University i...

    published: 03 Nov 2023
  • Watch This Before STUDYING IN KOREA - Korean SNU Students Advices | Seoul National University

    Watch this before studying in Korea. Hear from Korean students what it's like to be a student in Korea. In this video, I talked to top 1% student in Korea only in English at Seoul National University (SNU) campus asking What is it really like being a student at #1 University in Korea Can top 1% Korean student speak English? is studying at SNU very risky? #SNU #seoulnationaluniversity #studyinkorea #Korean #univlog #universitylife #university #campustour #서울대 #douyin #서울대학교 #streetinterview WATCH SIMILAR VIDEOS ◦ Yonsei Exchange Students - https://youtu.be/MMzvTDtkowg ◦ Korea University Day in the Life - https://youtu.be/xyerdRIJKKQ FOLLOW ME ON SOCIAL MEDIA ◦ Instagram - instagram.com/itsvickkymama BUSINESS, COLLABS & EDUCATIONAL SERVICES ONLY ◦ Hire my service: https://sites.g...

    published: 29 Apr 2024
  • graduated from the best university in korea. #shorts

    #seoulnationaluniversity MBA 2023

    published: 30 Aug 2023
  • Seoul National University Campus |Indian in SNU 🇰🇷🇮🇳 #shorts #fyp #Southkorea #trending

    Indian In South Korea Indian in Seoul National University

    published: 31 May 2023
  • How Difficult Is It To Get Into Korea's TOP University? 🎓 #shorts

    Get your free NaoNow trial here and start sounding like a native English speaker! ► https://bit.ly/naonow_freetrial If you enjoy their lessons and want to continue, use the code ‘asianboss’ to get a 25% discount! Have you ever wondered how difficult it is to get into Korea's most prestigious university? It's called Seoul National University (SNU) and we went to the campus to ask some students there how competitive it is to get in. #shorts #english #learning #korea #topstudents #university #streetinterview #challenge #languagechallenge #learningenglish #snu #seoul #asia #asianboss #staycurious

    published: 09 Jun 2023
  • Seoul National University Q&A | South Korea Study Abroad |서울대학교

    Pre-covid I went to Seoul National University on exchange! Here's the most common questions I get about studying abroad in Korea. Let me know if you have any other questions about living in Korea in the comments! 📱 DM me! I always respond » @ppeter_k » IG: http://instagram.com/ppeter_k 서울대 대학생의 일상 Questions? Comments? Leave them down below and I'll respond Want to see more? Subscribe :) Drone Credits: @sojuboi - https://www.youtube.com/user/Tomachoy

    published: 30 May 2021
  • Why I left Seoul National University? SNU || Korea 🇰🇷 || Medschool 🇧🇩

    Hello everyone! It’s been a long time and I missed you guys. This was a very hard video for me to make, I hope you guys understood my point and watch till the end of this video to know why I did what I did. I want to be clear that I don’t mean to discourage anyone by making this video. My experience was my experience, it can be totally different for you guys. I just wanted to portray that SNU being their main public university and their top one, they were really focused on Korean classes in my course at least. Just like I compared it with Dhaka University in Bangladesh. Your course might be different, your classes might be different. Just because I shared my experience, shouldn’t mean it should hinder your dreams. Everyone’s experience can be different. Don’t be discouraged, chase your dr...

    published: 26 Jul 2023
  • a day in my life: seoul national university MBA 🇰🇷 서울대 브이로그 | living in korea EP. 008

    서울대학생 브이로그 | more uni vlog: https://youtu.be/S87QFKd_Lpo hi everyone hope you are all doing well! how's the trial month so far LOL for me january is definitely not counted, but yep here we are at the end of chapter 1 out of 12! :D also this vlog is a long overdue one... i seriously need to stop procrastinating and have a better time management T^T see you on my apartment tour video!!! take care everyone, all love! sher =================== 🍵 FAQ - Sheren, born in 1995 - An Indonesian, who came from Hong Kong (yes, both are my homes!) - Currently studying at Seoul National University (MBA program) 서울대 대학생의 일상 - @SeoulNationalUniversity @snuoia6472 add me on IG: https://www.instagram.com/sherendev_/ buy me a coffee: https://ko-fi.com/sherendev -------- keywords: #collegevlog #seoulnat...

    published: 31 Jan 2023
  • NewJeans (뉴진스) 'ETA' Stage Cam @ SEOUL NATIONAL UNIVERSITY

    NewJeans (뉴진스) 'ETA' Stage Cam @ SEOUL NATIONAL UNIVERSITY ⓒ 2023 ADOR. All Rights Reserved. Connect with NewJeans PHONING https://phoning.onelink.me/KG15/n7452q87 OFFICIAL YOUTUBE https://www.youtube.com/c/NewJeans_official OFFICIAL WEBSITE https://newjeans.kr OFFICIAL INSTAGRAM https://www.instagram.com/newjeans_official OFFICIAL TWITTER https://twitter.com/NewJeans_ADOR NewJeans TWITTER https://twitter.com/NewJeans_twt OFFICIAL TIKTOK https://www.tiktok.com/@newjeans_official OFFICIAL WEVERSE https://weverse.io/newjeansofficial OFFICIAL FACEBOOK https://www.facebook.com/official.newjeans OFFICIAL JAPAN TWITTER https://twitter.com/@NewJeans_jp OFFICIAL WEIBO https://weibo.com/NewJeansADOR OFFICIAL BILIBILI https://space.bilibili.com/3493092783032940 #NewJeans #뉴진스 #NewJeans_ETA #Tim...

    published: 02 Nov 2023
developed with YouTube
Seoul National University Official Video - A new tomorrow begins
4:14

Seoul National University Official Video - A new tomorrow begins

  • Order:
  • Duration: 4:14
  • Uploaded Date: 04 Mar 2024
  • views: 35757
#SNU #Seoulnationaluniversity #snuofficialvideo #introductionvideo Seoul National University Official Video (2024. 3. 4.) | A new tomorrow begins
https://wn.com/Seoul_National_University_Official_Video_A_New_Tomorrow_Begins
Seoul National University campus tour 서울대학교 Seoul, South Korea 4K
22:30

Seoul National University campus tour 서울대학교 Seoul, South Korea 4K

  • Order:
  • Duration: 22:30
  • Uploaded Date: 03 Nov 2023
  • views: 49550
#1 university in Korea, Seoul National University campus tour 4K 서울대학교 Seoul, South Korea #snu #seoulnationaluniversity #korea #studyinkorea #koreastudy 서울대학교 Seoul National University SNU, established 77 years ago is a public university with a main campus in Seoul, South Korea. Seoul University is ranked number one in Korea and 11th in THE Asia University Rankings. The university has nearly 29000 students with nearly 17000 undergraduate students, 7000 graduate students in master's program and 6000 graduate students in doctoral program. Sixteen colleges of the university offer 83 undergraduate degree programs. There is one graduate school with 99 programs from five fields of studies for master and doctoral programs. The primary language of instruction at Seoul National University is Korean, though about 10 to 20 percent of university courses are English-taught. The colleges of engineering and business have the highest proportion of courses taught in English. Colleges of Engineering have several engineering departments including Architecture and Architectural, Chemical and Biological Engineering, Civil and Environmental, Computer Science and Engineering, Electrical and Computer Engineering, Energy Resources, Industrial Engineering, Materials Science and Engineering, Mechanical and Aerospace, Naval Architecture and Ocean and Nuclear Engineering. SNU College of Natural Sciences(CNS) is the home of eight departments (Mathematical Sciences, Physics and Astronomy, Chemistry, Biological Sciences, Earth and Environmental Sciences, Statistics and Brain and Cognitive Sciences) and six interdisciplinary graduate programs (in History and Philosophy of Science, Genetic Engineering, Neuroscience, Bioinformatics, Computational Sciences and Technology, Biophysics and Chemical Biology). The Department of Pharmacy offers a program leading to a B.S. degree in Pharmacy. This program offers the students a basic background in medicinal chemistry, pharmacology, biochemistry, hygienic chemistry, analytical chemistry and pharmacognosy. SNU business school consists of the College of Business Administration providing undergraduate, Master & PhD programs, Graduate School of Business providing MBA courses and the Institute of Management Research. The College of Social Sciences at SNU focuses on education, research, and community service. The College of Fine Arts consists of the Department of Oriental Painting, Department of Painting, Department of Sculpture, and Faculty of Crafts and Design, which is subdivided into the Crafts and Design department respectively. Seoul National University Library has a central library and 9 branch libraries. It houses a collection of 5.2 million volumes of books, more than 260,000 academic journals and e-journals, and over 230,000 of non-book materials. The Student Center contains the office of student representatives, club activity rooms, a restaurant, canteen, bookstore, souvenir shop, pharmacy, lounges and other convenient facilities. The Student Center is also home to the Center for Campus Life and Culture, Health Services Center and other facilities offering services frequently used by students. POSCO Sports Center contains an Olympic-size swimming pool, weight room, golf ranges, squash/racquetball courts and multipurpose fitness rooms.
https://wn.com/Seoul_National_University_Campus_Tour_서울대학교_Seoul,_South_Korea_4K
Watch This Before STUDYING IN KOREA - Korean SNU Students Advices  | Seoul National University
11:03

Watch This Before STUDYING IN KOREA - Korean SNU Students Advices | Seoul National University

  • Order:
  • Duration: 11:03
  • Uploaded Date: 29 Apr 2024
  • views: 13897
Watch this before studying in Korea. Hear from Korean students what it's like to be a student in Korea. In this video, I talked to top 1% student in Korea only in English at Seoul National University (SNU) campus asking What is it really like being a student at #1 University in Korea Can top 1% Korean student speak English? is studying at SNU very risky? #SNU #seoulnationaluniversity #studyinkorea #Korean #univlog #universitylife #university #campustour #서울대 #douyin #서울대학교 #streetinterview WATCH SIMILAR VIDEOS ◦ Yonsei Exchange Students - https://youtu.be/MMzvTDtkowg ◦ Korea University Day in the Life - https://youtu.be/xyerdRIJKKQ FOLLOW ME ON SOCIAL MEDIA ◦ Instagram - instagram.com/itsvickkymama BUSINESS, COLLABS & EDUCATIONAL SERVICES ONLY ◦ Hire my service: https://sites.google.com/view/vickkymama MUSIC ◦ Music by Blue Sirens - Less Traveled - https://thmatc.co/?l=08DAB604 ◦ Music by Matt Fly - Lullaby - https://thmatc.co/?l=4612055E SHOW YOUR SUPPORT ◦ buymeacoffee.com/VickkyMama ◦ paypal.me/VickkyMama KEYWORDS Being A Top 1% Student in Korea | Street Interview How Difficult Is It To Get Into Korea's TOP University? Top 1% Students of South Korea What’s it Like Being A Top 1% Student In Korea What is the number 1 university in Korea? Seoul National University. Asking SNU students how to study at SNU Asking Koreans to Speak English What is it like being a student at a top university in Korea How to study at SKY Universities in Korea Cultural shock as an international/exchange student in Korea Are courses taught in English in Korea Do Korea offer English courses talking to top 1% korean students in English Talking to top 1% Korean Students In English | SNU I got into SNU
https://wn.com/Watch_This_Before_Studying_In_Korea_Korean_Snu_Students_Advices_|_Seoul_National_University
graduated from the best university in korea. #shorts
0:13

graduated from the best university in korea. #shorts

  • Order:
  • Duration: 0:13
  • Uploaded Date: 30 Aug 2023
  • views: 29641
#seoulnationaluniversity MBA 2023
https://wn.com/Graduated_From_The_Best_University_In_Korea._Shorts
Seoul National University Campus |Indian in SNU 🇰🇷🇮🇳 #shorts #fyp #Southkorea #trending
0:13

Seoul National University Campus |Indian in SNU 🇰🇷🇮🇳 #shorts #fyp #Southkorea #trending

  • Order:
  • Duration: 0:13
  • Uploaded Date: 31 May 2023
  • views: 110985
Indian In South Korea Indian in Seoul National University
https://wn.com/Seoul_National_University_Campus_|Indian_In_Snu_🇰🇷🇮🇳_Shorts_Fyp_Southkorea_Trending
How Difficult Is It To Get Into Korea's TOP University? 🎓 #shorts
0:50

How Difficult Is It To Get Into Korea's TOP University? 🎓 #shorts

  • Order:
  • Duration: 0:50
  • Uploaded Date: 09 Jun 2023
  • views: 175545
Get your free NaoNow trial here and start sounding like a native English speaker! ► https://bit.ly/naonow_freetrial If you enjoy their lessons and want to continue, use the code ‘asianboss’ to get a 25% discount! Have you ever wondered how difficult it is to get into Korea's most prestigious university? It's called Seoul National University (SNU) and we went to the campus to ask some students there how competitive it is to get in. #shorts #english #learning #korea #topstudents #university #streetinterview #challenge #languagechallenge #learningenglish #snu #seoul #asia #asianboss #staycurious
https://wn.com/How_Difficult_Is_It_To_Get_Into_Korea's_Top_University_🎓_Shorts
Seoul National University Q&A | South Korea Study Abroad |서울대학교
8:34

Seoul National University Q&A | South Korea Study Abroad |서울대학교

  • Order:
  • Duration: 8:34
  • Uploaded Date: 30 May 2021
  • views: 35692
Pre-covid I went to Seoul National University on exchange! Here's the most common questions I get about studying abroad in Korea. Let me know if you have any other questions about living in Korea in the comments! 📱 DM me! I always respond » @ppeter_k » IG: http://instagram.com/ppeter_k 서울대 대학생의 일상 Questions? Comments? Leave them down below and I'll respond Want to see more? Subscribe :) Drone Credits: @sojuboi - https://www.youtube.com/user/Tomachoy
https://wn.com/Seoul_National_University_Q_A_|_South_Korea_Study_Abroad_|서울대학교
Why I left Seoul National University? SNU || Korea 🇰🇷 || Medschool 🇧🇩
38:12

Why I left Seoul National University? SNU || Korea 🇰🇷 || Medschool 🇧🇩

  • Order:
  • Duration: 38:12
  • Uploaded Date: 26 Jul 2023
  • views: 73386
Hello everyone! It’s been a long time and I missed you guys. This was a very hard video for me to make, I hope you guys understood my point and watch till the end of this video to know why I did what I did. I want to be clear that I don’t mean to discourage anyone by making this video. My experience was my experience, it can be totally different for you guys. I just wanted to portray that SNU being their main public university and their top one, they were really focused on Korean classes in my course at least. Just like I compared it with Dhaka University in Bangladesh. Your course might be different, your classes might be different. Just because I shared my experience, shouldn’t mean it should hinder your dreams. Everyone’s experience can be different. Don’t be discouraged, chase your dreams, work hard, you got this! I hope you all make a careful decision and it would mean a lot to me if you kept supporting me, sending lots of love 💕 Find me on Instagram: https://instagram.com/__fabihaaaaa__?igshid=OGQ5ZDc2ODk2ZA==
https://wn.com/Why_I_Left_Seoul_National_University_Snu_||_Korea_🇰🇷_||_Medschool_🇧🇩
a day in my life: seoul national university MBA 🇰🇷 서울대 브이로그 | living in korea EP. 008
9:20

a day in my life: seoul national university MBA 🇰🇷 서울대 브이로그 | living in korea EP. 008

  • Order:
  • Duration: 9:20
  • Uploaded Date: 31 Jan 2023
  • views: 47143
서울대학생 브이로그 | more uni vlog: https://youtu.be/S87QFKd_Lpo hi everyone hope you are all doing well! how's the trial month so far LOL for me january is definitely not counted, but yep here we are at the end of chapter 1 out of 12! :D also this vlog is a long overdue one... i seriously need to stop procrastinating and have a better time management T^T see you on my apartment tour video!!! take care everyone, all love! sher =================== 🍵 FAQ - Sheren, born in 1995 - An Indonesian, who came from Hong Kong (yes, both are my homes!) - Currently studying at Seoul National University (MBA program) 서울대 대학생의 일상 - @SeoulNationalUniversity @snuoia6472 add me on IG: https://www.instagram.com/sherendev_/ buy me a coffee: https://ko-fi.com/sherendev -------- keywords: #collegevlog #seoulnationaluniversity #korea – #collegelife international student in korea, college life, studying in korea, day in a life, university tour, SNU life, studying at SNU korea, #서울 #서울브이로그, kuliah di korea, 경영전문대학원, seoul national university MBA, s2 seoul national university, indonesian student in korea, life in korea, why i move to korea, moving to korea, living alone diaries, living alone in seoul, student life korea, seoul national university student, indonesian in korea, productive week in my life, a day in my life, explore seoul, #explore korea, chill day in my life, chill day with me, a chill day vlog, weekend vlog, aesthetic vlog, a day in my life aesthetic, kuliah s2 di korea, calming vlog, korea daily vlog, SNU international student, full time student life, study abroad in korea, 서울 브이로그, #서울대학교, #studyabroad, #koreavlog , university life in korea 외국인 foreigner in korea, student vlog
https://wn.com/A_Day_In_My_Life_Seoul_National_University_Mba_🇰🇷_서울대_브이로그_|_Living_In_Korea_Ep._008
NewJeans (뉴진스) 'ETA' Stage Cam @ SEOUL NATIONAL UNIVERSITY
2:45

NewJeans (뉴진스) 'ETA' Stage Cam @ SEOUL NATIONAL UNIVERSITY

  • Order:
  • Duration: 2:45
  • Uploaded Date: 02 Nov 2023
  • views: 920839
NewJeans (뉴진스) 'ETA' Stage Cam @ SEOUL NATIONAL UNIVERSITY ⓒ 2023 ADOR. All Rights Reserved. Connect with NewJeans PHONING https://phoning.onelink.me/KG15/n7452q87 OFFICIAL YOUTUBE https://www.youtube.com/c/NewJeans_official OFFICIAL WEBSITE https://newjeans.kr OFFICIAL INSTAGRAM https://www.instagram.com/newjeans_official OFFICIAL TWITTER https://twitter.com/NewJeans_ADOR NewJeans TWITTER https://twitter.com/NewJeans_twt OFFICIAL TIKTOK https://www.tiktok.com/@newjeans_official OFFICIAL WEVERSE https://weverse.io/newjeansofficial OFFICIAL FACEBOOK https://www.facebook.com/official.newjeans OFFICIAL JAPAN TWITTER https://twitter.com/@NewJeans_jp OFFICIAL WEIBO https://weibo.com/NewJeansADOR OFFICIAL BILIBILI https://space.bilibili.com/3493092783032940 #NewJeans #뉴진스 #NewJeans_ETA #Time_to_NewJeans
https://wn.com/Newjeans_(뉴진스)_'ETA'_Stage_Cam_Seoul_National_University
developed with YouTube
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • Seoul National University Official Video - A new tomorrow begins
    4:14
    Seoul National University Official Video - A new tomorrow beginsremove from playlist
  • Seoul National University campus tour 서울대학교 Seoul, South Korea 4K
    22:30
    Seoul National University campus tour 서울대학교 Seoul, South Korea 4Kremove from playlist
  • Watch This Before STUDYING IN KOREA - Korean SNU Students Advices  | Seoul National University
    11:03
    Watch This Before STUDYING IN KOREA - Korean SNU Students Advices | Seoul National Universityremove from playlist
  • How Difficult Is It To Get Into Korea's TOP University? 🎓 #shorts
    0:50
    How Difficult Is It To Get Into Korea's TOP University? 🎓 #shortsremove from playlist
  • Seoul National University Q&A | South Korea Study Abroad |서울대학교
    8:34
    Seoul National University Q&A | South Korea Study Abroad |서울대학교remove from playlist
  • Why I left Seoul National University? SNU || Korea 🇰🇷 || Medschool 🇧🇩
    38:12
    Why I left Seoul National University? SNU || Korea 🇰🇷 || Medschool 🇧🇩remove from playlist
  • a day in my life: seoul national university MBA 🇰🇷 서울대 브이로그 | living in korea EP. 008
    9:20
    a day in my life: seoul national university MBA 🇰🇷 서울대 브이로그 | living in korea EP. 008remove from playlist
  • NewJeans (뉴진스) 'ETA' Stage Cam @ SEOUL NATIONAL UNIVERSITY
    2:45
    NewJeans (뉴진스) 'ETA' Stage Cam @ SEOUL NATIONAL UNIVERSITYremove from playlist
developed with YouTube
PLAYLIST TIME:

Seoul National University Official Video - A new tomorrow begins

#SNU #Seoulnationaluniversity #snuofficialvideo #introductionvideo Seoul National University Official Video (2024. 3. 4.) | A new tomorrow begins
4:14
Seoul National University Official Video - A new tomorrow begins
#SNU #Seoulnationaluniversity #snuofficialvideo #introductionvideo Seoul National Univer...
published: 04 Mar 2024
Play in Full Screen
22:30
Seoul National University campus tour 서울대학교 Seoul, South Korea 4K
#1 university in Korea, Seoul National University campus tour 4K 서울대학교 Seoul, South Korea ...
published: 03 Nov 2023
Play in Full Screen
11:03
Watch This Before STUDYING IN KOREA - Korean SNU Students Advices | Seoul National University
Watch this before studying in Korea. Hear from Korean students what it's like to be a stud...
published: 29 Apr 2024
Play in Full Screen
0:13
graduated from the best university in korea. #shorts
#seoulnationaluniversity MBA 2023
published: 30 Aug 2023
Play in Full Screen
0:13
Seoul National University Campus |Indian in SNU 🇰🇷🇮🇳 #shorts #fyp #Southkorea #trending
Indian In South Korea Indian in Seoul National University
published: 31 May 2023
Play in Full Screen
0:50
How Difficult Is It To Get Into Korea's TOP University? 🎓 #shorts
Get your free NaoNow trial here and start sounding like a native English speaker! ► https:...
published: 09 Jun 2023
Play in Full Screen
8:34
Seoul National University Q&A | South Korea Study Abroad |서울대학교
Pre-covid I went to Seoul National University on exchange! Here's the most common question...
published: 30 May 2021
Play in Full Screen
38:12
Why I left Seoul National University? SNU || Korea 🇰🇷 || Medschool 🇧🇩
Hello everyone! It’s been a long time and I missed you guys. This was a very hard video fo...
published: 26 Jul 2023
Play in Full Screen
9:20
a day in my life: seoul national university MBA 🇰🇷 서울대 브이로그 | living in korea EP. 008
서울대학생 브이로그 | more uni vlog: https://youtu.be/S87QFKd_Lpo hi everyone hope you are all doi...
published: 31 Jan 2023
Play in Full Screen
2:45
NewJeans (뉴진스) 'ETA' Stage Cam @ SEOUL NATIONAL UNIVERSITY
NewJeans (뉴진스) 'ETA' Stage Cam @ SEOUL NATIONAL UNIVERSITY ⓒ 2023 ADOR. All Rights Reserv...
published: 02 Nov 2023
Play in Full Screen

Seoul National University

Seoul National University (SNU; Korean, 서울대학교, Seoul Daehakgyo, colloquially Seouldae) is a national research university located in Seoul, the capital of Korea.

The university was founded in its current form in 1946. It is located on three campuses: the main campus in Gwanak and two additional campuses in Daehangno and Suwon. The university comprises sixteen colleges, one graduate school, and nine professional schools. The student body consists of nearly 17,000 undergraduate and 11,000 graduate students. Since its founding, Seoul National University has been widely considered to be the most prestigious university in the country. According to data compiled by KEDI, the university spends more on its students per capita than any other university in the country that enrolls at least 10,000.

Seoul National University holds a memorandum of understanding with over 700 academic institutions in 40 countries, the World Bank, and the country's first ever general academic exchange program with the University of Pennsylvania. The Graduate School of Business offers dual master's degrees with Duke University, ESSEC Business School, and the Peking University, double-degrees at the MIT Sloan School of Management and Yale School of Management, and MBA-, MS-, and PhD-candidate exchange programs with universities in ten countries on four continents. The university's international faculty headcount is 242 or 4% of the total.Nobel laureate Paul Crutzen and Fields Medal recipient Hironaka Heisuke are on the faculty roster.

'); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->
×