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

PepsiCo

PepsiCo Inc. is an American multinational food, snack and beverage corporation headquartered in Purchase, New York, United States, with interests in the manufacturing, marketing, and distribution of grain-based snack foods, beverages, and other products. PepsiCo was formed in 1965 with the merger of the Pepsi-Cola Company and Frito-Lay, Inc. PepsiCo has since expanded from its namesake product Pepsi to a broader range of food and beverage brands, the largest of which includes an acquisition of Tropicana in 1998 and of Quaker Oats in 2001, which added the Gatorade brand to its portfolio.

As of January 26, 2012, 22 of PepsiCo's brands generated retail sales of more than $1 billion apiece, and the company's products were distributed across more than 200 countries, resulting in annual net revenues of $43.3 billion. Based on net revenue, PepsiCo is the second largest food and beverage business in the world. Within North America, PepsiCo is the largest food and beverage business by net revenue.

Podcasts:

  • PepsiCo CFO Hugh Johnston on Q3 earnings beat: As a company we are executing better and better

    Hugh Johnston, PepsiCo vice chairman and CFO, joins 'Squawk Box' to discuss the company's quarterly earnings results, which beat Wall Street’s estimates for third-quarter earnings and revenue, and more. For access to live and exclusive video from CNBC subscribe to CNBC PRO: https://cnb.cx/2NGeIvi  » Subscribe to CNBC TV: https://cnb.cx/SubscribeCNBCtelevision » Subscribe to CNBC: https://cnb.cx/SubscribeCNBC Turn to CNBC TV for the latest stock market news and analysis. From market futures to live price updates CNBC is the leader in business news worldwide. Connect with CNBC News Online Get the latest news: http://www.cnbc.com/ Follow CNBC on LinkedIn: https://cnb.cx/LinkedInCNBC Follow CNBC News on Facebook: https://cnb.cx/LikeCNBC Follow CNBC News on Twitter: https://cnb.cx/FollowCNBC...

    published: 10 Oct 2023
  • Pepsi - Bigger Than You Know

    I believe that Pepsi is bigger than most people realize. This video attempts to convey their size by outlining some of their main categories of sales over the years. To submit ideas and vote on future topics: https://companymanideas.com Patreon: https://www.patreon.com/companyman Twitter: https://twitter.com/MikeCompany17 A very special thanks to this wonderful group of Patrons: Adamant, Ahmad, Amy Westacott, Andrew Jeeves, Astra, Atsumari, Audria Richmond, aziz alfozan, Ballard Ingram, Blake Anderson, Brett Walton, Brian Dover, Brian Smith, Brooks Sparling, Chris Lion-Transler, Christian & Penny Gray, Cocacolabear12, Dandaley, Dominic Berlingeri, Dylan Kinnard, Emerald Computers – Jason Dragon, Evil Andy, John &Becki Johnston, John Briscoe, John Sterling, Jon, Ken, Kevin Sullivan, Ki...

    published: 03 Nov 2021
  • PepsiCo CFO Hugh Johnston on Q2 earnings: We're driving margins through productivity

    Hugh Johnston, PepsiCo vice chairman and CFO, joins 'Squawk Box' to discuss the company's quarterly earnings results, which beat exoectations. For access to live and exclusive video from CNBC subscribe to CNBC PRO: https://cnb.cx/2NGeIvi  » Subscribe to CNBC TV: https://cnb.cx/SubscribeCNBCtelevision » Subscribe to CNBC: https://cnb.cx/SubscribeCNBC Turn to CNBC TV for the latest stock market news and analysis. From market futures to live price updates CNBC is the leader in business news worldwide. Connect with CNBC News Online Get the latest news: http://www.cnbc.com/ Follow CNBC on LinkedIn: https://cnb.cx/LinkedInCNBC Follow CNBC News on Facebook: https://cnb.cx/LikeCNBC Follow CNBC News on Twitter: https://cnb.cx/FollowCNBC Follow CNBC News on Instagram: https://cnb.cx/InstagramCNBC...

    published: 13 Jul 2023
  • PepsiCo Simulates and Optimizes Distribution Centers with NVIDIA Omniverse and Metropolis

    One billion PepsiCo products are consumed each day, enabled by a complex network of hundreds of distribution centers. With NVIDIA partner Kinetic Vision, PepsiCo is developing AI-powered digital twins of their distribution centers in NVIDIA Omniverse and optimizing operations with NVIDIA Metropolis and TAO—improving throughput, reducing downtime, and reducing energy consumption.

    published: 23 Mar 2022
  • PepsiCo’s Company Story 2023

    PepsiCo’s Company Story 2023 PepsiCo Incorporated, is an American food and beverage company that is one of the biggest in the world, with products in over 200 countries. Its name was gotten when the Pepsi-Cola Company merged with Frito-Lay Incorporated, in 1965. The company's headquartered in Purchase, New York. In this video on PepsiCo’s company story, we will learn how they achieved this level of success. Caleb D. Bradham, a pharmacist in New Bern, North Carolina, created the first Pepsi-Cola. With hopes to replicate Coca-Cola's current accomplishment, Bradham called his carbonated-Cola-flavored sweet beverage, Pepsi-Cola, in 1898. The drink did so well that in 1902, Bradham incorporated the Pepsi-Cola Company. After doing fairly well for many years, the company experienced difficult t...

    published: 19 Jul 2021
  • Pepsico explaining how it uses Tesla Semi electric trucks

    Original video source: https://electrek.co/2023/08/04/pepsico-explains-uses-tesla-semi-electric-trucks-glimpse-future-of-trucking/

    published: 07 Aug 2023
  • Did You Know Pepsico Is Larger Than Coca Cola?

    Did you know Pepsico the corporation behind the famous brand Pepsi is actually larger than Coca Cola? The brand has acquired many companies in the food industry, You might not even know you are consuming products of Pepsico on a daily basis. #shorts #fact #crazy #history #cola #pepsi #cocacola

    published: 04 Oct 2022
PepsiCo CFO Hugh Johnston on Q3 earnings beat: As a company we are executing better and better
7:00

PepsiCo CFO Hugh Johnston on Q3 earnings beat: As a company we are executing better and better

  • Order:
  • Duration: 7:00
  • Uploaded Date: 10 Oct 2023
  • views: 3734
Hugh Johnston, PepsiCo vice chairman and CFO, joins 'Squawk Box' to discuss the company's quarterly earnings results, which beat Wall Street’s estimates for third-quarter earnings and revenue, and more. For access to live and exclusive video from CNBC subscribe to CNBC PRO: https://cnb.cx/2NGeIvi  » Subscribe to CNBC TV: https://cnb.cx/SubscribeCNBCtelevision » Subscribe to CNBC: https://cnb.cx/SubscribeCNBC Turn to CNBC TV for the latest stock market news and analysis. From market futures to live price updates CNBC is the leader in business news worldwide. Connect with CNBC News Online Get the latest news: http://www.cnbc.com/ Follow CNBC on LinkedIn: https://cnb.cx/LinkedInCNBC Follow CNBC News on Facebook: https://cnb.cx/LikeCNBC Follow CNBC News on Twitter: https://cnb.cx/FollowCNBC Follow CNBC News on Instagram: https://cnb.cx/InstagramCNBC https://www.cnbc.com/select/best-credit-cards/  #CNBC #CNBCTV 
https://wn.com/Pepsico_Cfo_Hugh_Johnston_On_Q3_Earnings_Beat_As_A_Company_We_Are_Executing_Better_And_Better
Pepsi - Bigger Than You Know
12:51

Pepsi - Bigger Than You Know

  • Order:
  • Duration: 12:51
  • Uploaded Date: 03 Nov 2021
  • views: 1294631
I believe that Pepsi is bigger than most people realize. This video attempts to convey their size by outlining some of their main categories of sales over the years. To submit ideas and vote on future topics: https://companymanideas.com Patreon: https://www.patreon.com/companyman Twitter: https://twitter.com/MikeCompany17 A very special thanks to this wonderful group of Patrons: Adamant, Ahmad, Amy Westacott, Andrew Jeeves, Astra, Atsumari, Audria Richmond, aziz alfozan, Ballard Ingram, Blake Anderson, Brett Walton, Brian Dover, Brian Smith, Brooks Sparling, Chris Lion-Transler, Christian & Penny Gray, Cocacolabear12, Dandaley, Dominic Berlingeri, Dylan Kinnard, Emerald Computers – Jason Dragon, Evil Andy, John &Becki Johnston, John Briscoe, John Sterling, Jon, Ken, Kevin Sullivan, Kib Bibens-LeFebvre, Laura Floyd, Logan Brown, Meow Wolf, milkshake, Moriah Krewec, MyNameIsKir, Peter Wesselius, ReignsRevenge, Robert T Kirton, Ron G, Ronnie Cheng, Sam Bennett, Sirpoptart, Sondre Grimsmo Sinnes, Tyrone Cowan. Company Declines: Kmart: https://youtu.be/1__Qg1toSSs Blockbuster: https://youtu.be/5sMXR7rK40U RadioShack: https://youtu.be/JFivtOmXPPM Solo Cups: https://youtu.be/YjzGKc4mynU Toys "R" Us: https://youtu.be/4JYUo9WKkao hhgregg: https://youtu.be/g6j4aoHbWdw Pan Am: https://youtu.be/YInewzLzc78 ESPN: https://youtu.be/bt-4PbhpGYE Gibson: https://youtu.be/apQ9SO7uF60 iHeartMedia: https://youtu.be/BImjay9KfYc Bon-Ton: https://youtu.be/buWiH5_ru2Y Kodak: https://youtu.be/eVrmFgvEnAA General Electric: https://youtu.be/CqF3WUST-fk Woolworth: https://youtu.be/iSEw4wmjuh4 Dell: https://youtu.be/rgDjQLyFXTA Sears: https://youtu.be/Qws713t3HBY Payless: https://youtu.be/GJ35lCrOYC0 Hostess: https://youtu.be/-c26ewfay9Q Redbox: https://youtu.be/sc-lrcYI1uo Nokia: https://youtu.be/QUk6V_fBSPw JCPenney: https://youtu.be/0d6op86y51U Quiznos: https://youtu.be/P3QK-32bxgw GameStop: https://youtu.be/YXEfgFCkv4k NASCAR: https://youtu.be/nSKk6J20SsA Shopko: https://youtu.be/9rHbSGjSsE0 MoviePass: https://youtu.be/QvCkp3rfgOU Reebok: https://youtu.be/RAM8s7lNXtw The Gap: https://youtu.be/HJUKLzG_2uo Pier 1 Imports: https://youtu.be/mUX70ZWbWmc Sbarro: https://youtu.be/eLwHim8W8TY AOL: https://youtu.be/CZTz6ZKPUl8 Long John Silver's: https://youtu.be/8gs2UuMFYwI Chuck E. Cheese's: https://youtu.be/u6L65O4YC08 GNC: https://youtu.be/UKFbMZy3zRw Hertz: https://youtu.be/Jn9Sh0Psc8U Steak 'n Shake: https://youtu.be/JRdCtryapgg CiCi's Pizza: https://youtu.be/WMQ2m1wWplM Boston Market: https://youtu.be/EVHpZsFE6eY Yahoo: https://youtu.be/Z2yr0W0BQXE Montgomery Ward: https://youtu.be/OUUoZqBt3DI Fry's Electronics: https://youtu.be/to-osQMHxpE Souplantation: https://youtu.be/0HcpXiAthnA Gateway: https://youtu.be/e3DQAmpsim4 BlackBerry: https://youtu.be/SFtkM-Yd2vQ Sports Authority: https://youtu.be/IqFhGQ4q8-k Atari: https://youtu.be/lhkq2f1fJn0 ______________________________ Website created by - https://fullertonmedia.com Intro Made By - https://www.youtube.com/channel/UCqi0-4XRvQLBo8E5r8bvPsA
https://wn.com/Pepsi_Bigger_Than_You_Know
PepsiCo CFO Hugh Johnston on Q2 earnings: We're driving margins through productivity
7:02

PepsiCo CFO Hugh Johnston on Q2 earnings: We're driving margins through productivity

  • Order:
  • Duration: 7:02
  • Uploaded Date: 13 Jul 2023
  • views: 10853
Hugh Johnston, PepsiCo vice chairman and CFO, joins 'Squawk Box' to discuss the company's quarterly earnings results, which beat exoectations. For access to live and exclusive video from CNBC subscribe to CNBC PRO: https://cnb.cx/2NGeIvi  » Subscribe to CNBC TV: https://cnb.cx/SubscribeCNBCtelevision » Subscribe to CNBC: https://cnb.cx/SubscribeCNBC Turn to CNBC TV for the latest stock market news and analysis. From market futures to live price updates CNBC is the leader in business news worldwide. Connect with CNBC News Online Get the latest news: http://www.cnbc.com/ Follow CNBC on LinkedIn: https://cnb.cx/LinkedInCNBC Follow CNBC News on Facebook: https://cnb.cx/LikeCNBC Follow CNBC News on Twitter: https://cnb.cx/FollowCNBC Follow CNBC News on Instagram: https://cnb.cx/InstagramCNBC https://www.cnbc.com/select/best-credit-cards/  #CNBC #CNBCTV 
https://wn.com/Pepsico_Cfo_Hugh_Johnston_On_Q2_Earnings_We're_Driving_Margins_Through_Productivity
PepsiCo Simulates and Optimizes Distribution Centers with NVIDIA Omniverse and Metropolis
1:23

PepsiCo Simulates and Optimizes Distribution Centers with NVIDIA Omniverse and Metropolis

  • Order:
  • Duration: 1:23
  • Uploaded Date: 23 Mar 2022
  • views: 17082
One billion PepsiCo products are consumed each day, enabled by a complex network of hundreds of distribution centers. With NVIDIA partner Kinetic Vision, PepsiCo is developing AI-powered digital twins of their distribution centers in NVIDIA Omniverse and optimizing operations with NVIDIA Metropolis and TAO—improving throughput, reducing downtime, and reducing energy consumption.
https://wn.com/Pepsico_Simulates_And_Optimizes_Distribution_Centers_With_Nvidia_Omniverse_And_Metropolis
PepsiCo’s Company Story 2023
7:44

PepsiCo’s Company Story 2023

  • Order:
  • Duration: 7:44
  • Uploaded Date: 19 Jul 2021
  • views: 30814
PepsiCo’s Company Story 2023 PepsiCo Incorporated, is an American food and beverage company that is one of the biggest in the world, with products in over 200 countries. Its name was gotten when the Pepsi-Cola Company merged with Frito-Lay Incorporated, in 1965. The company's headquartered in Purchase, New York. In this video on PepsiCo’s company story, we will learn how they achieved this level of success. Caleb D. Bradham, a pharmacist in New Bern, North Carolina, created the first Pepsi-Cola. With hopes to replicate Coca-Cola's current accomplishment, Bradham called his carbonated-Cola-flavored sweet beverage, Pepsi-Cola, in 1898. The drink did so well that in 1902, Bradham incorporated the Pepsi-Cola Company. After doing fairly well for many years, the company experienced difficult times after the First World War, and was restructured and reincorporated several times in the 1920s. In 1931, Charles G. Guth, founder of modern-day Pepsi-Cola, acquired the company's trademark and assets. He started a new Pepsi-Cola Company, employed a chemist to formulate a better drink, started new bottling operations, and began marketing a hugely successful 12-ounce bottle for five cents. Guth was also the president of Loft Incorporated. This was a candy and soda-fountain chain founded in 1919. He eventually lost a controlling stake in the Pepsi-Cola Company to the new Loft management in the 1936 to 1939 litigation. When the Pepsi-Cola Company merged with Loft in 1941, the name Loft Inc. was changed to the Pepsi-Cola Company. In 1950, Alfred N. Steele, former Vice President of The Coca-Cola Company, became the CEO. His focus on huge advertising campaigns and promotions increased Pepsi-Cola's net income by 11 times, in the 1950s, making it Coca-Cola's main competitor. After Steele's death, his wife, actress Joan Crawford, became an active director of the company. In 1965, Pepsi-Cola merged with Frito-Lay Incorporated - the makers of snacks like Fritos, Doritos, Lay's potato chips, and Rold Gold pretzels. The recently expanded company continued to diversify with the purchase of three restaurant chains: Pizza Hut, Inc. in 1977, Taco Bell Inc. in 1978, and Kentucky Fried Chicken Corp. in 1986; now called KFC, and Seven-Up International in 1986. In 1997, the restaurant chains were put into a separate new company called Tricon Global Restaurants, Inc. #pepsico’scompanystory #pepsico #pepsi #pepsicoceo is pepsico a buy,pepsico internship,pepsico stock,pepsico stock 2020,pepsico success story,pepsico ceo,pepsico history,pepsico interview,pepsico dividend,pepsico europe,sustainability,pepsi history,pepsi documentary,pepsi stock,pep stock,stocks,pepsi stock dividend,coca cola stock,best stocks to buy now for long term
https://wn.com/Pepsico’S_Company_Story_2023
Pepsico explaining how it uses Tesla Semi electric trucks
12:09

Pepsico explaining how it uses Tesla Semi electric trucks

  • Order:
  • Duration: 12:09
  • Uploaded Date: 07 Aug 2023
  • views: 90998
Original video source: https://electrek.co/2023/08/04/pepsico-explains-uses-tesla-semi-electric-trucks-glimpse-future-of-trucking/
https://wn.com/Pepsico_Explaining_How_It_Uses_Tesla_Semi_Electric_Trucks
Did You Know Pepsico Is Larger Than Coca Cola?
0:59

Did You Know Pepsico Is Larger Than Coca Cola?

  • Order:
  • Duration: 0:59
  • Uploaded Date: 04 Oct 2022
  • views: 1030091
Did you know Pepsico the corporation behind the famous brand Pepsi is actually larger than Coca Cola? The brand has acquired many companies in the food industry, You might not even know you are consuming products of Pepsico on a daily basis. #shorts #fact #crazy #history #cola #pepsi #cocacola
https://wn.com/Did_You_Know_Pepsico_Is_Larger_Than_Coca_Cola
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • PepsiCo CFO Hugh Johnston on Q3 earnings beat: As a company we are executing better and better
    7:00
    PepsiCo CFO Hugh Johnston on Q3 earnings beat: As a company we are executing better and betterremove from playlist
  • Pepsi - Bigger Than You Know
    12:51
    Pepsi - Bigger Than You Knowremove from playlist
  • PepsiCo CFO Hugh Johnston on Q2 earnings: We're driving margins through productivity
    7:02
    PepsiCo CFO Hugh Johnston on Q2 earnings: We're driving margins through productivityremove from playlist
  • PepsiCo Simulates and Optimizes Distribution Centers with NVIDIA Omniverse and Metropolis
    1:23
    PepsiCo Simulates and Optimizes Distribution Centers with NVIDIA Omniverse and Metropolisremove from playlist
  • PepsiCo’s Company Story 2023
    7:44
    PepsiCo’s Company Story 2023remove from playlist
  • Pepsico explaining how it uses Tesla Semi electric trucks
    12:09
    Pepsico explaining how it uses Tesla Semi electric trucksremove from playlist
  • Did You Know Pepsico Is Larger Than Coca Cola?
    0:59
    Did You Know Pepsico Is Larger Than Coca Cola?remove from playlist
PLAYLIST TIME: 0:00 / 49:08

PepsiCo CFO Hugh Johnston on Q3 earnings beat: As a company we are executing better and better

Hugh Johnston, PepsiCo vice chairman and CFO, joins 'Squawk Box' to discuss the company's quarterly earnings results, which beat Wall Street’s estimates for third-quarter earnings and revenue, and more. For access to live and exclusive video from CNBC subscribe to CNBC PRO: https://cnb.cx/2NGeIvi  » Subscribe to CNBC TV: https://cnb.cx/SubscribeCNBCtelevision » Subscribe to CNBC: https://cnb.cx/SubscribeCNBC Turn to CNBC TV for the latest stock market news and analysis. From market futures to live price updates CNBC is the leader in business news worldwide. Connect with CNBC News Online Get the latest news: http://www.cnbc.com/ Follow CNBC on LinkedIn: https://cnb.cx/LinkedInCNBC Follow CNBC News on Facebook: https://cnb.cx/LikeCNBC Follow CNBC News on Twitter: https://cnb.cx/FollowCNBC Follow CNBC News on Instagram: https://cnb.cx/InstagramCNBC https://www.cnbc.com/select/best-credit-cards/  #CNBC #CNBCTV 
7:00
PepsiCo CFO Hugh Johnston on Q3 earnings beat: As a company we are executing better and better
Hugh Johnston, PepsiCo vice chairman and CFO, joins 'Squawk Box' to discuss the company's ...
published: 10 Oct 2023
Play in Full Screen
12:51
Pepsi - Bigger Than You Know
I believe that Pepsi is bigger than most people realize. This video attempts to convey the...
published: 03 Nov 2021
Play in Full Screen
7:02
PepsiCo CFO Hugh Johnston on Q2 earnings: We're driving margins through productivity
Hugh Johnston, PepsiCo vice chairman and CFO, joins 'Squawk Box' to discuss the company's ...
published: 13 Jul 2023
Play in Full Screen
1:23
PepsiCo Simulates and Optimizes Distribution Centers with NVIDIA Omniverse and Metropolis
One billion PepsiCo products are consumed each day, enabled by a complex network of hundre...
published: 23 Mar 2022
Play in Full Screen
7:44
PepsiCo’s Company Story 2023
PepsiCo’s Company Story 2023 PepsiCo Incorporated, is an American food and beverage compa...
published: 19 Jul 2021
Play in Full Screen
12:09
Pepsico explaining how it uses Tesla Semi electric trucks
Original video source: https://electrek.co/2023/08/04/pepsico-explains-uses-tesla-semi-ele...
published: 07 Aug 2023
Play in Full Screen
0:59
Did You Know Pepsico Is Larger Than Coca Cola?
Did you know Pepsico the corporation behind the famous brand Pepsi is actually larger than...
published: 04 Oct 2022
Play in Full Screen

PepsiCo

PepsiCo Inc. is an American multinational food, snack and beverage corporation headquartered in Purchase, New York, United States, with interests in the manufacturing, marketing, and distribution of grain-based snack foods, beverages, and other products. PepsiCo was formed in 1965 with the merger of the Pepsi-Cola Company and Frito-Lay, Inc. PepsiCo has since expanded from its namesake product Pepsi to a broader range of food and beverage brands, the largest of which includes an acquisition of Tropicana in 1998 and of Quaker Oats in 2001, which added the Gatorade brand to its portfolio.

As of January 26, 2012, 22 of PepsiCo's brands generated retail sales of more than $1 billion apiece, and the company's products were distributed across more than 200 countries, resulting in annual net revenues of $43.3 billion. Based on net revenue, PepsiCo is the second largest food and beverage business in the world. Within North America, PepsiCo is the largest food and beverage business by net revenue.

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

Edit

Pepsi® presenta sus nuevas embajadoras globales del fútbol

Longview News-Journal 02 May 2025
-Pepsi® presenta sus nuevas embajadoras globales del fútbol. Alexia Putellas, Caroline Graham Hansen, Farah Jefry y Lauren James ....
Edit

Major brands flag consumer anxiety: McDonald's, Chipotle, P&G

The Hill 02 May 2025
Top executives at legacy American brands including PepsiCo, Procter & Gamble and McDonald's are also concerned about a slowdown, pointing to weaker consumer demand on recent earnings calls.
Edit

PepsiCo bottler Varun Beverages opts to expand reach as competitors in soft-drinks market engage in ...

Live Mint 01 May 2025
Varun Beverages aims for double-digit growth despite increased competition and challenges in margins, driven by operational efficiencies and enhanced distribution in India and overseas ....
Edit

Varun Beverages Share Price: PepsiCo's Bottle-Maker Profit Jumps 34% In Q1, Dividend�Announced

News18 30 Apr 2025
Varun Beverages' Q1 2025 revenue rose 28.9% YoY to Rs 5,556 crore. Sales volumes increased 30.1%. EBITDA grew 27.8%, net profit jumped 33.5% ... .
Edit

PepsiCo debuts lemonade-iced tea line

Food Business News 30 Apr 2025
The lemonade is available in two flavors ....
Edit

PepsiCo to remove artificial ingredients from popular food items by end of 2025

New York Post 30 Apr 2025
Kennedy Jr., PepsiCo isn’t wasting any time getting started. Ramon Laguarta, PepsiCo Inc ... In an April 24 conference call, PepsiCo Inc ... Fox News Digital reached out to PepsiCo for additional comment.
Edit

PepsiCo’s toxic legacy: From aborted fetal cell testing to chemical-laden “food” products — why their “natural” PR push isn’t enough

GMO News 30 Apr 2025
But is this just another corporate sleight of hand, or a genuine reckoning with PepsiCo’s poisonous legacy? ... Some companies, like PepsiCo, are seizing the moment to provide healthier alternatives to customers ... As PepsiCo scrambles to rebrand, remember.
Edit

PepsiCo expands focus on India's snacks market amid rising local competition

The Times of India 29 Apr 2025
PepsiCo Chairman Ramon Laguarta leads a large executive team to India, signaling ...
Edit

Big Marketers Like Mastercard, PepsiCo and Nissan Are Rethinking Pride Marketing

Wall Street Journal 29 Apr 2025
Brands are shaking up their Pride spending, with some citing political pressure and economic uncertainty ... .
Edit

Pepsico Cuts Its Guidance. Is Its Dividend In Danger?

MENA FN 29 Apr 2025
(MENAFN - Baystreet) Soft drink and snack company, PepsiCo (NASDAQ.PEP) recently reported earnings and in doing so, also cut its guidance for the year, amid tariffs and concerns of slowing ... .
Edit

REPORT: Mastercard, Nissan, PepsiCo, and Citi Pull Back on NYC Pride March Sponsorships

Adweek 29 Apr 2025
Mastercard, Nissan, PepsiCo, and Citi will not sponsor the 2025 New York City Pride March. According to a report from The Wall Street Journal on Tuesday, Mastercard is not renewing ....
Edit

PepsiCo debuts lemonade line

Food Business News 29 Apr 2025
The lemonade is available in two flavors ....
Edit

Leadership Legends visits PepsiCo in Valdosta

Moultrie Observer 29 Apr 2025
MOULTRIE — Moultrie mentoring group Leadership Legends took its mentees, referred to as “Legends,” on an “exposure tour” of the PepsiCo company at the Pepsi Bottling Group in Valdosta ... It started out with him going over some of the history of PepsiCo.
Edit

Lays, Tostitos to stop using artificial dyes this year to meet RFK Jr.'s phase-out

Usatoday 29 Apr 2025
At an April 24 earnings call, PepsiCo CEO Ramon Laguarta said the transition is already underway and that more of the company's brands will follow suit, with more than 60 percent of its business already lacking artificial color as of this month.
Edit

PepsiCo’s toxic legacy: From aborted fetal cell testing to chemical-laden “food” products — why their ...

Natural News 29 Apr 2025
For decades, PepsiCo has flooded the global market with foods and beverages laced with neurotoxic dyes, metabolism-destroying artificial sweeteners,... .
×