'+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; })); }); -->

Podcasts:

  • We are Volvo Group | About us and what we do

    Without the type of products and services the Volvo Group provides, the societies in which many of us live would not function. Like a circulatory system, our trucks, buses, engines, construction equipment and financial services are involved in many of the functions that most of us rely on every day. Read more about Volvo Group at https://www.volvogroup.com/en-en/about-us.html Visit Volvo Group's website: http://www.volvogroup.com Volvo Group on social media: https://facebook.com/Volvogroup https://instagram.com/volvogroup https://linkedin.com/company/volvo-group https://twitter.com/volvogroup https://www.youtube.com/VolvoGroupVideos #volvogroup #wearevolvogroup

    published: 30 Mar 2023
  • Volvo Group – The Balloon

    Volvo Group is on a mission to decarbonize transport and infrastructure solutions. We believe that the road to net-zero means utilizing technology-driven innovations and the latest propulsion technologies. This film was produced to visualize the solution-oriented mindset of our global engineers, who play a crucial role in this transformation journey for society. We are unleashing the potential of technology to shape the world we want to live in. Together Visit Volvo Group’s website: https://www.volvogroup.com  Volvo Group on social media:  https://facebook.com/Volvogroup https://instagram.com/volvogroup https://linkedin.com/company/volvo-group https://twitter.com/volvogroup https://www.youtube.com/VolvoGroupVideos

    published: 09 Feb 2024
  • The fossil-free construction site by Volvo Group

    Volvo Group is enabling the transition to zero-emission construction sites with a broad range of fossil-free, battery electric, construction machines, loaders, and trucks. Learn more about our products, services, and solutions, that are building a better tomorrow: https://www.volvogroup.com/en/sustainable-transportation/sustainable-solutions/climate-week.html?sc_cid=soco-yFGU67IZ Visit Volvo Group's website: http://www.volvogroup.com​ Volvo Group on social media: https://facebook.com/Volvogroup​ https://instagram.com/volvogroup​ https://linkedin.com/company/volvo-group https://twitter.com/volvogroup​ https://www.youtube.com/VolvoGroupVideos #SustainableTransportation

    published: 05 Sep 2024
  • Volvo Trucks - Two wheel stunt

    The daring two-wheel stunt from Reality Road. Visit Volvo Trucks website: https://www.volvotrucks.com Volvo Trucks on social media: https://facebook.com/VolvoTrucks https://youtube.com/VolvoTrucks https://linkedin.com/company/volvo-trucks https://instagram.com/volvotrucks https://twitter.com/volvotrucks https://www.tiktok.com/@volvotrucks

    published: 15 Oct 2018
  • Our road to net zero – Volvo Group keynote at CES 2025

    Wherever you may look – our vehicles and machines are transforming industries. Battery-powered trucks, haulers, excavators, buses, and more are now operating across Europe, North America, and beyond. We are driving the transformation toward sustainable transport and are fully committed to achieving net-zero emissions by 2040.

    published: 31 Jan 2025
  • Serial production of Heavy Duty electric trucks at Volvo Tuve plant in Sweden

    Volvo Group's long term ambition is to offer our customers solutions that are 100% fossil-free. This week we begin serial production of Heavy-Duty electric trucks at our Volvo Tuve plant in Sweden - a vital step in our transition journey. “We are integrating the assembly of our new electric trucks with our existing assembly lines offering increased flexibility to meet our customers’ demands for fossil-free solutions. With this start of production, we are truly shaping the future of transportation,” says Jens Holtinger, EVP of Volvo Group Trucks Operations. Read more: https://www.volvotrucks.com/en-en/news-stories/press-releases/2022/sep/volvo-trucks-starts-series-production-of-heavy-electric-trucks.html Visit Volvo Group's website: http://www.volvogroup.com Volvo Group on social medi...

    published: 14 Sep 2022
  • What students think of Volvo Group

    Watch students who won an Innovation contest visit our facilities and share their first impressions of Volvo Group. We are taking responsibility for shaping the next generation of people at work. We passionately believe in the importance of investing in talented young people and preparing them for their careers by offering job opportunities for students. Explore opportunities for students and graduates here: https://www.volvogroup.com/en-en/careers/opportunities-for-students.html

    published: 25 Oct 2019
  • CES 2025 Keynote with Volvo Group President and CEO, Martin Lundstedt

    Volvo Group will highlight its vision for a 100% safe, 100% fossil-free, and 100% more productive transportation and infrastructure. Volvo Group will focus its presentation on the urgency to deliver a more sustainable and efficient way of working through the power of electrification, connectivity, and automation. Technology and collaboration are Volvo Group’s most effective tools in achieving its ambitious target to reach net zero value chain greenhouse gas emissions by 2040.

    published: 09 Jan 2025
  • ರಾಜ್ಯದಲ್ಲಿ ವೋಲ್ವೊ ಸಂಸ್ಥೆಯಿಂದ 1400 ಕೋಟಿ ರೂ. ಹೂಡಿಕೆ | Volvo Group | CM Siddaramaiah | Kannada News

    ರಾಜ್ಯದಲ್ಲಿ ವೋಲ್ವೊ ಸಂಸ್ಥೆಯಿಂದ 1400 ಕೋಟಿ ರೂ. ಹೂಡಿಕೆ | Volvo Group | CM Siddaramaiah | Kannada News Suvarna News | Kannada News | Asianet Suvarna News | Latest Kannada News | Suvarna News 24x7 | ಕನ್ನಡ ಲೈವ್ ನ್ಯೂಸ್ | ಏಷ್ಯಾನೆಟ್ ಸುವರ್ಣ ನ್ಯೂಸ್ | Karnataka Political Updates Suvarna News Live: https://www.youtube.com/live/R50P2knCQBs?feature=shared #olvo #SuvarnaNews #kannadanews #karnatakapolitics #karnatakanews #AsianetSuvarnaNews WhatsApp ► https://whatsapp.com/channel/0029Va9CL2hGE56uFHsT3J2s YouTube ► https://www.youtube.com/@AsianetSuvarnaNews Website ► https://kannada.asianetnews.com/ Facebook ► https://www.facebook.com/SuvarnaNews Twitter ► https://twitter.com/AsianetNewsSN Instagram ► https://www.instagram.com/asianetsuvarnanews/

    published: 13 Feb 2025
  • Volvo Trucks - The #AllNewVolvoVNL at #TMCAnnual24

    The #AllNewVolvoVNL takes center stage at #TMCAnnual24 – swing by booth #2413 to see it for yourself.

    published: 07 Mar 2024
We are Volvo Group | About us and what we do
2:18

We are Volvo Group | About us and what we do

  • Order:
  • Duration: 2:18
  • Uploaded Date: 30 Mar 2023
  • views: 9115
Without the type of products and services the Volvo Group provides, the societies in which many of us live would not function. Like a circulatory system, our trucks, buses, engines, construction equipment and financial services are involved in many of the functions that most of us rely on every day. Read more about Volvo Group at https://www.volvogroup.com/en-en/about-us.html Visit Volvo Group's website: http://www.volvogroup.com Volvo Group on social media: https://facebook.com/Volvogroup https://instagram.com/volvogroup https://linkedin.com/company/volvo-group https://twitter.com/volvogroup https://www.youtube.com/VolvoGroupVideos #volvogroup #wearevolvogroup
https://wn.com/We_Are_Volvo_Group_|_About_US_And_What_We_Do
Volvo Group – The Balloon
1:34

Volvo Group – The Balloon

  • Order:
  • Duration: 1:34
  • Uploaded Date: 09 Feb 2024
  • views: 3407
Volvo Group is on a mission to decarbonize transport and infrastructure solutions. We believe that the road to net-zero means utilizing technology-driven innovations and the latest propulsion technologies. This film was produced to visualize the solution-oriented mindset of our global engineers, who play a crucial role in this transformation journey for society. We are unleashing the potential of technology to shape the world we want to live in. Together Visit Volvo Group’s website: https://www.volvogroup.com  Volvo Group on social media:  https://facebook.com/Volvogroup https://instagram.com/volvogroup https://linkedin.com/company/volvo-group https://twitter.com/volvogroup https://www.youtube.com/VolvoGroupVideos
https://wn.com/Volvo_Group_–_The_Balloon
The fossil-free construction site by Volvo Group
1:00

The fossil-free construction site by Volvo Group

  • Order:
  • Duration: 1:00
  • Uploaded Date: 05 Sep 2024
  • views: 360
Volvo Group is enabling the transition to zero-emission construction sites with a broad range of fossil-free, battery electric, construction machines, loaders, and trucks. Learn more about our products, services, and solutions, that are building a better tomorrow: https://www.volvogroup.com/en/sustainable-transportation/sustainable-solutions/climate-week.html?sc_cid=soco-yFGU67IZ Visit Volvo Group's website: http://www.volvogroup.com​ Volvo Group on social media: https://facebook.com/Volvogroup​ https://instagram.com/volvogroup​ https://linkedin.com/company/volvo-group https://twitter.com/volvogroup​ https://www.youtube.com/VolvoGroupVideos #SustainableTransportation
https://wn.com/The_Fossil_Free_Construction_Site_By_Volvo_Group
Volvo Trucks - Two wheel stunt
0:18

Volvo Trucks - Two wheel stunt

  • Order:
  • Duration: 0:18
  • Uploaded Date: 15 Oct 2018
  • views: 4878813
The daring two-wheel stunt from Reality Road. Visit Volvo Trucks website: https://www.volvotrucks.com Volvo Trucks on social media: https://facebook.com/VolvoTrucks https://youtube.com/VolvoTrucks https://linkedin.com/company/volvo-trucks https://instagram.com/volvotrucks https://twitter.com/volvotrucks https://www.tiktok.com/@volvotrucks
https://wn.com/Volvo_Trucks_Two_Wheel_Stunt
Our road to net zero – Volvo Group keynote at CES 2025
0:34

Our road to net zero – Volvo Group keynote at CES 2025

  • Order:
  • Duration: 0:34
  • Uploaded Date: 31 Jan 2025
  • views: 992029
Wherever you may look – our vehicles and machines are transforming industries. Battery-powered trucks, haulers, excavators, buses, and more are now operating across Europe, North America, and beyond. We are driving the transformation toward sustainable transport and are fully committed to achieving net-zero emissions by 2040.
https://wn.com/Our_Road_To_Net_Zero_–_Volvo_Group_Keynote_At_Ces_2025
Serial production of Heavy Duty electric trucks at Volvo Tuve plant in Sweden
0:33

Serial production of Heavy Duty electric trucks at Volvo Tuve plant in Sweden

  • Order:
  • Duration: 0:33
  • Uploaded Date: 14 Sep 2022
  • views: 5806
Volvo Group's long term ambition is to offer our customers solutions that are 100% fossil-free. This week we begin serial production of Heavy-Duty electric trucks at our Volvo Tuve plant in Sweden - a vital step in our transition journey. “We are integrating the assembly of our new electric trucks with our existing assembly lines offering increased flexibility to meet our customers’ demands for fossil-free solutions. With this start of production, we are truly shaping the future of transportation,” says Jens Holtinger, EVP of Volvo Group Trucks Operations. Read more: https://www.volvotrucks.com/en-en/news-stories/press-releases/2022/sep/volvo-trucks-starts-series-production-of-heavy-electric-trucks.html Visit Volvo Group's website: http://www.volvogroup.com Volvo Group on social media: https://facebook.com/Volvogroup https://instagram.com/volvogroup https://linkedin.com/company/volvo-group https://twitter.com/volvogroup https://www.youtube.com/VolvoGroupVideos #electromobility #electrictrucks #electricvehicles #electrification #heavydutyelectrictruck #operations #volvo #volvotrucks @volvotrucks
https://wn.com/Serial_Production_Of_Heavy_Duty_Electric_Trucks_At_Volvo_Tuve_Plant_In_Sweden
What students think of Volvo Group
0:39

What students think of Volvo Group

  • Order:
  • Duration: 0:39
  • Uploaded Date: 25 Oct 2019
  • views: 1503
Watch students who won an Innovation contest visit our facilities and share their first impressions of Volvo Group. We are taking responsibility for shaping the next generation of people at work. We passionately believe in the importance of investing in talented young people and preparing them for their careers by offering job opportunities for students. Explore opportunities for students and graduates here: https://www.volvogroup.com/en-en/careers/opportunities-for-students.html
https://wn.com/What_Students_Think_Of_Volvo_Group
CES 2025 Keynote with Volvo Group President and CEO, Martin Lundstedt
1:07:05

CES 2025 Keynote with Volvo Group President and CEO, Martin Lundstedt

  • Order:
  • Duration: 1:07:05
  • Uploaded Date: 09 Jan 2025
  • views: 15292
Volvo Group will highlight its vision for a 100% safe, 100% fossil-free, and 100% more productive transportation and infrastructure. Volvo Group will focus its presentation on the urgency to deliver a more sustainable and efficient way of working through the power of electrification, connectivity, and automation. Technology and collaboration are Volvo Group’s most effective tools in achieving its ambitious target to reach net zero value chain greenhouse gas emissions by 2040.
https://wn.com/Ces_2025_Keynote_With_Volvo_Group_President_And_Ceo,_Martin_Lundstedt
ರಾಜ್ಯದಲ್ಲಿ ವೋಲ್ವೊ ಸಂಸ್ಥೆಯಿಂದ 1400 ಕೋಟಿ ರೂ. ಹೂಡಿಕೆ | Volvo Group | CM Siddaramaiah | Kannada News
2:21

ರಾಜ್ಯದಲ್ಲಿ ವೋಲ್ವೊ ಸಂಸ್ಥೆಯಿಂದ 1400 ಕೋಟಿ ರೂ. ಹೂಡಿಕೆ | Volvo Group | CM Siddaramaiah | Kannada News

  • Order:
  • Duration: 2:21
  • Uploaded Date: 13 Feb 2025
  • views: 412
ರಾಜ್ಯದಲ್ಲಿ ವೋಲ್ವೊ ಸಂಸ್ಥೆಯಿಂದ 1400 ಕೋಟಿ ರೂ. ಹೂಡಿಕೆ | Volvo Group | CM Siddaramaiah | Kannada News Suvarna News | Kannada News | Asianet Suvarna News | Latest Kannada News | Suvarna News 24x7 | ಕನ್ನಡ ಲೈವ್ ನ್ಯೂಸ್ | ಏಷ್ಯಾನೆಟ್ ಸುವರ್ಣ ನ್ಯೂಸ್ | Karnataka Political Updates Suvarna News Live: https://www.youtube.com/live/R50P2knCQBs?feature=shared #olvo #SuvarnaNews #kannadanews #karnatakapolitics #karnatakanews #AsianetSuvarnaNews WhatsApp ► https://whatsapp.com/channel/0029Va9CL2hGE56uFHsT3J2s YouTube ► https://www.youtube.com/@AsianetSuvarnaNews Website ► https://kannada.asianetnews.com/ Facebook ► https://www.facebook.com/SuvarnaNews Twitter ► https://twitter.com/AsianetNewsSN Instagram ► https://www.instagram.com/asianetsuvarnanews/
https://wn.com/ರಾಜ್ಯದಲ್ಲಿ_ವೋಲ್ವೊ_ಸಂಸ್ಥೆಯಿಂದ_1400_ಕೋಟಿ_ರೂ._ಹೂಡಿಕೆ_|_Volvo_Group_|_Cm_Siddaramaiah_|_Kannada_News
Volvo Trucks - The #AllNewVolvoVNL at #TMCAnnual24
0:47

Volvo Trucks - The #AllNewVolvoVNL at #TMCAnnual24

  • Order:
  • Duration: 0:47
  • Uploaded Date: 07 Mar 2024
  • views: 7868711
The #AllNewVolvoVNL takes center stage at #TMCAnnual24 – swing by booth #2413 to see it for yourself.
https://wn.com/Volvo_Trucks_The_Allnewvolvovnl_At_Tmcannual24
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
PLAYLIST TIME: 0:00 / 1:17:09

We are Volvo Group | About us and what we do

Without the type of products and services the Volvo Group provides, the societies in which many of us live would not function. Like a circulatory system, our trucks, buses, engines, construction equipment and financial services are involved in many of the functions that most of us rely on every day. Read more about Volvo Group at https://www.volvogroup.com/en-en/about-us.html Visit Volvo Group's website: http://www.volvogroup.com Volvo Group on social media: https://facebook.com/Volvogroup https://instagram.com/volvogroup https://linkedin.com/company/volvo-group https://twitter.com/volvogroup https://www.youtube.com/VolvoGroupVideos #volvogroup #wearevolvogroup
2:18
We are Volvo Group | About us and what we do
Without the type of products and services the Volvo Group provides, the societies in which...
published: 30 Mar 2023
Play in Full Screen
1:34
Volvo Group – The Balloon
Volvo Group is on a mission to decarbonize transport and infrastructure solutions. We beli...
published: 09 Feb 2024
Play in Full Screen
1:00
The fossil-free construction site by Volvo Group
Volvo Group is enabling the transition to zero-emission construction sites with a broad ra...
published: 05 Sep 2024
Play in Full Screen
0:18
Volvo Trucks - Two wheel stunt
The daring two-wheel stunt from Reality Road. Visit Volvo Trucks website: https://www.vol...
published: 15 Oct 2018
Play in Full Screen
0:34
Our road to net zero – Volvo Group keynote at CES 2025
Wherever you may look – our vehicles and machines are transforming industries. Battery-pow...
published: 31 Jan 2025
Play in Full Screen
0:33
Serial production of Heavy Duty electric trucks at Volvo Tuve plant in Sweden
Volvo Group's long term ambition is to offer our customers solutions that are 100% fossil-...
published: 14 Sep 2022
Play in Full Screen
0:39
What students think of Volvo Group
Watch students who won an Innovation contest visit our facilities and share their first im...
published: 25 Oct 2019
Play in Full Screen
1:07:05
CES 2025 Keynote with Volvo Group President and CEO, Martin Lundstedt
Volvo Group will highlight its vision for a 100% safe, 100% fossil-free, and 100% more pro...
published: 09 Jan 2025
Play in Full Screen
2:21
ರಾಜ್ಯದಲ್ಲಿ ವೋಲ್ವೊ ಸಂಸ್ಥೆಯಿಂದ 1400 ಕೋಟಿ ರೂ. ಹೂಡಿಕೆ | Volvo Group | CM Siddaramaiah | Kannada News
ರಾಜ್ಯದಲ್ಲಿ ವೋಲ್ವೊ ಸಂಸ್ಥೆಯಿಂದ 1400 ಕೋಟಿ ರೂ. ಹೂಡಿಕೆ | Volvo Group | CM Siddaramaiah | Kannad...
published: 13 Feb 2025
Play in Full Screen
0:47
Volvo Trucks - The #AllNewVolvoVNL at #TMCAnnual24
The #AllNewVolvoVNL takes center stage at #TMCAnnual24 – swing by booth #2413 to see it fo...
published: 07 Mar 2024
Play in Full Screen
'); } 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)); } }); }); }); // -->

Latest News for: Volvo Group

Edit

Trump tariffs set off doubts — even in Rust Belt area he pledged to restore

Detroit news 07 May 2025
Mack’s parent company, the Volvo Group, announced last year that it would build a new truck plant in Mexico, where average salaries are much lower than the roughly $33 an hour its Pennsylvania production employees can earn ... GOP congressman in a vise.
Edit

SMT appointed official dealer for Dynapac

B & FT Online 05 May 2025
Dynapac is part of the FAYAT Group ... SMT is one of the largest-standing partners with Volvo Group with a presence in 22 countries across Europe, Africa and in the United States ... SMT Ghana is part of SMT Group.
Edit

Transition to green steel in Europe: what went wrong?

GMK Center 05 May 2025
The automakers General Motors Co, Jaguar Land Rover Corp, Volvo Group AB, Mercedes-Benz Group AG, and Volkswagen AG have all previously stated that they will switch to 100% carbon-free steel in automotive production by 2050.
Edit

US payroll gain of 177,000 shows uncertainty from tariffs yet to dent hiring

The Spokesman-Review 02 May 2025
Job growth in the U.S ... Nonfarm payrolls increased 177,000 last month after the prior two months’ advances were revised lower, according to Bureau of Labor Statistics data out Friday ... U.S ... Others including Volvo Group and Cleveland-Cliffs Inc ... .
Edit

US employers add 177,000 jobs, solid pace in face of uncertainty

The Mercury News 02 May 2025
By Augusta Saraiva . Bloomberg ... Nonfarm payrolls increased 177,000 last month after the prior two months’ advances were revised lower, according to Bureau of Labor Statistics data out Friday ... U.S ... Others including Volvo Group and Cleveland-Cliffs Inc ... .
Edit

Polestar opens a proper Irish dealership – is this the end of the agency model?

The Irish Times 30 Apr 2025
The Polestar dealership (Polestar still insists upon calling it a ‘space’) will be run and managed by Spirit Motor Group, a part of OHM Group, which runs dealerships with franchises for Land Rover, Jaguar, Volvo, Ford and others.
Edit

Mack Trucks Unwraps Pioneer Electric Plans

TT News 30 Apr 2025
Mack Trucks pulled back the curtain April 29 on plans to launch a battery-electric version of the Volvo Group division’s recently unveiled flagship on-highway Class 8 tractor, the Pioneer ... .
Edit

PH should firmly reject deep-sea mining

The Manila Times 30 Apr 2025
These governments were joined by 37 financial institutions and investment groups, among them French insurance giant Allianz and public bank La Banque Postale group, major Dutch insurance group ASR Nederland and the CZ Group.
Edit

Volvo Cars launches $1.9 billion cost-cutting drive, scraps financial guidance as earnings fall

CNBC 29 Apr 2025
Volvo Group said its so-called "cost and cash action plan" would include reductions in investments and redundancies at its operations across the globe ... .
Edit

Buick vulnerable to Trump tariffs: ‘It could just disappear altogether’

The Oakland Press 28 Apr 2025
Major auto groups make united plea for tariff relief from Trump Stellantis juggles production ... bought British car brand MG in 2005, and Zhejiang Geely Holding Group Co ... “They didn’t trample on it as some feared,” Dunne said about the Volvo acquisition.
Edit

Buick vulnerable to Trump tariffs: 'It could just disappear altogether'

Detroit news 28 Apr 2025
bought British car brand MG in 2005, and Zhejiang Geely Holding Group Co ... acquired Swedish luxury brand Volvo in 2010, later developing its Polestar EV brand for sales in the United States and other markets.
Edit

Greensboro-based Volvo Group North America to lay off almost 1,000 but local operations not impacted

Business Journal 24 Apr 2025
Volvo CEO explains the factors behind the decision to reduce its workforce in three states while sparing its Greensboro headquarters from job cuts ... .
Edit

Could EV battery health certificates convince more drivers to buy a used EV?

This is Money 24 Apr 2025
Polestar, which is part of the Chinese Geely Group and a sister brand to Volvo, confirmed its '2' saloons will now be sold with their own 'battery state of health certificates'.
Edit

Could EV battery health certificates convince more drivers to buy a used EV? | Daily ...

The Daily Mail 24 Apr 2025
Polestar, which is part of the Chinese Geely Group and a sister brand to Volvo, confirmed its '2' saloons will now be sold with their own 'battery state of health certificates'.
Edit

Could EV battery health certificates convince more drivers to buy a used electric car? | ...

The Daily Mail 24 Apr 2025
Polestar, which is part of the Chinese Geely Group and a sister brand to Volvo, confirmed its '2' saloons will now be sold with their own 'battery state of health certificates'.
×