CINXE.COM
Sitemap | Verizon Careers
<!doctype html> <html lang="en-US"> <head> <meta charset="utf-8"> <meta http-equiv="x-ua-compatible" content="ie=edge"> <meta name="viewport" content="width=device-width, initial-scale=1" /> <link rel="dns-prefetch" href="https://ajax.googleapis.com"> <link rel="dns-prefetch" href="https://ajax.aspnetcdn.com"> <link rel="dns-prefetch" href="https://fonts.gstatic.com"> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> <link rel="preload" href="https://fonts.gstatic.com/s/archivo/v9/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTNDNZ9xdp.woff2" as="font" type="font/woff2" crossorigin> <link href="https://fonts.googleapis.com/css?family=Archivo&display=swap" rel="stylesheet"> <link rel="stylesheet" href="https://www.verizon.com/etc/designs/vzwcom/gnav20/core.css" type="text/css"> <script> var gnavdl = { "bu": "corporate", "appid": "corpweb", "options": { "sticky": "true" } }; </script> <title>Sitemap | Verizon Careers</title> <meta name="author" content="Verizon Careers"> <meta name="twitter:card" content="summary" /> <meta name="twitter:site" content="@VerizonCareers" /> <meta property="og:url" name="url" content="https://mycareer.verizon.com/sitemap/" /> <meta property="og:title" content="Sitemap" /> <meta property="og:site_name" content="Verizon Careers" /> <meta property="og:locale" content="en_US" /> <meta property="http://ogp.me/ns/article#published_time" content="2019-11-12T11:51:50" /> <meta property="http://ogp.me/ns/article#modified_time" content="2022-04-19T11:13:11" /> <meta property="http://ogp.me/ns/article#section" content="Home" /> <link rel="canonical" href="https://mycareer.verizon.com/sitemap/" /> <link rel="alternate" href="https://mycareer.verizon.com/sitemap/" hreflang="" /> <link rel="icon" href="/Images/favicon.png"> <link rel="apple-touch-icon" href="/Images/favicon.png"> <link rel="icon" href="/favicon.ico"> <script> const isLowerEnv = /wwwnssit|verizon-uat|securepp|community-stage|localhost|wwwnssit|ebiz.verizon|securesit|vzwqa|qa.billpay|plusplay-sit|esus-uat|stream-sit|sso-np|www98.verizon/i.test( location.host ); //value shared among instances on verizon.com const SYNC_GRP = "3e1db8d7e927e65ebdea683143ab1db4511e86f8dfad7916b7808217b30683af"; cLog = function (txt, strc = 0) { if (strc > 9 || isLowerEnv || getCk("udns_logs") === "1") { const e = new Error(); if (!e.stack) { try { throw e; } catch (e) { if (!e.stack) { } } } const cLine = e.stack.toString().split(/\r\n|\n/); const nLine = cLine[2].trim().split(/\:/); console.log(`line ${nLine[2]}: ${txt}`); } }; //create id for non-logged in users function generateId() { let randomString = String( Math.random().toString(16) + Date.now().toString(16) + Math.random().toString(16) ).replace(/0*\./g, ""); let id = randomString.substring(0, 8) + "-" + randomString.substring(8, 4) + "-4" + randomString.substring(12, 3) + "-" + randomString.substring(15, 4) + "-" + randomString.substring(19, 12); return id; } //run in console to generate a session cookie that will allow viewing of logs window.viewUdnsLogs = () => { document.cookie = "udns_logs=1"; return "refresh page to view logs in the console"; }; if (isLowerEnv) { setLclCk("udns_logs", "1"); } //retrieve consent value from local storage const TC_CONSENT_STRING = localStorage.getItem("tcmMPConsent"); const TC_CONSENT_OBJECT = TC_CONSENT_STRING ? JSON.parse(TC_CONSENT_STRING) : undefined; //if no ID found in local storage, create a new one const I_UD_ID = TC_CONSENT_OBJECT?.[SYNC_GRP]?.metadata?.UDNS_ID; var udns_id = ""; if (I_UD_ID) { udns_id = I_UD_ID; } else { udns_id = generateId(); } //required by airgap self.airgap = { readyQueue: [], ready(callback) { this.readyQueue.push(callback); }, ...self.airgap, }; //fires when airgap is ready to regulate self.airgap.ready((airgap) => { cLog("airgap.ready()"); //fires whenever consent is changed - here used for logging purposes airgap.addEventListener( "consent-change", ({ detail: { consent, oldConsent, changes } }) => { if (changes) { const optPrior = oldConsent.purposes.SaleOfInfo === true ? "N" : "Y"; const optCur = consent.purposes.SaleOfInfo === true ? "N" : "Y"; cLog( `consent change - old value: ${optPrior} | new Value: ${optCur}` ); } } ); }); /* ------------ Implement Privacy Banner Notification Begin ------------ */ function setLclCk(cName, cVal, cExp = "") { cLog(`setting cookie: ${cName} = ${cVal}`); document.cookie = cName + "=" + cVal + "; domain=." + window.location.hostname.match( /^(?:.*?\.)?([a-zA-Z0-9\-_]{3,}\.(?:\w{2,8}|\w{2,4}\.\w{2,4}))$/ )[1] + "; path=/; expires=" + cExp; } function getCk(cName) { const name = cName + "="; const ca = document.cookie.split(";"); for (let i = 0; i < ca.length; i++) { let c = ca[i]; while (c.charAt(0) == " ") { c = c.substring(1); } if (c.indexOf(name) === 0) { return c.substring(name.length, c.length); } } return ""; } //display banner for US users only async function setUserLocation() { cLog("setUserLocation()"); let apiUrl = "https://www.verizon.com/business/geoloc.json"; if (isLowerEnv) apiUrl = "https://www98.verizon.com/business/geoloc.json"; try { const response = await fetch(apiUrl, { referrerPolicy: "origin" }); if (!response.ok) { throw new Error(`Response status: ${response.status}`); } const userLocationData = await response.json(); cLog( "setUserLocation() - user location data from geoloc.json API: " + JSON.stringify(userLocationData) ); localStorage.setItem("objGeo", JSON.stringify(userLocationData)); setLclCk("geoC", 1); if (userLocationData.ctry === "us") preparePrivacyBanner(); } catch (error) { cLog( "setUserLocation() - error in getting user location geoloc API - " + error.message ); preparePrivacyBanner(); } } function checkUserLocation() { try { if (getCk("geoC") === "1") { const userLocationData = JSON.parse(localStorage.getItem("objGeo")); cLog("user location cookie found: ", JSON.stringify(userLocationData)); if (userLocationData.ctry === "us") preparePrivacyBanner(); } else { setUserLocation(); } } catch (error) { cLog( "error getting location data from local storage - setting location now" ); setUserLocation(); } } function handleBannerClose() { airgap .sync() .then(() => airgap.setConsentMetadata(window.airgapScriptLoadEvent, { ...(airgap.getConsent().metadata || {}), UDNS_NTCD: Date.now(), UDNS_NTCV: 0, }) ) .then(() => cLog("Incremented NTCD To " + udnsNTCD)); try { document.getElementsByClassName( "gnav20-footer-level-two" )[0].style.paddingBottom = ""; } catch (e) { cLog("unable to select global footer and remove padding"); } window.coreData = window.coreData || []; window.coreData.push({ task: "emit", event: "linkClick", params: { name: "privacy banner close", detail: "PRIVACY_BANNER_DISPLAY", }, }); } function preparePrivacyBanner() { window.displayNTC = function () { cLog("preparePrivacyBanner()"); try { document.getElementsByClassName( "gnav20-footer-level-two" )[0].style.paddingBottom = "210px"; } catch (e) { cLog("unable to select global footer and add padding for banner"); } /* Log the display of the Privacy Banner for analytics */ window.coreData = window.coreData || []; window.coreData.push({ task: "emit", event: "openView", params: { selector: "#transcend-consent-manager", name: "PRIVACY_BANNER_DISPLAY", trackAs: "link", }, }); transcend.showConsentManager({ viewState: "PrivacyPolicyNotice" }); window.UDNS_NTC_VISUAL = Date.now(); }; const inApp = /(MY_VZW_APP|MFA)/i.test( (navigator && navigator.userAgent) || "" ); if (getCk("UDNS_NTCBLK") != "TRUE" && inApp != true) { let NTCinit = 0; for (let i = 500; i < 5001; i += 250) { setTimeout(() => { if (NTCinit === 0) { if ( typeof transcend === "object" && typeof transcend.addEventListener === "function" ) { cLog("Transcend Loaded: " + i); NTCinit = i; BuildAndShowNTC(); } else { cLog("Transcend Not Yet Loaded: " + i); } } }, i); } } function BuildAndShowNTC() { cLog("BuildAndShowNTC"); if (typeof transcend != "object") { cLog("Transcend Not Yet Loaded"); return 0; } transcend.addEventListener( "view-state-change", ({ detail: { viewState, previousViewState } }) => { cLog("view-state-change event fired"); if ( viewState === "Hidden" && previousViewState === "PrivacyPolicyNotice" ) { cLog( "Transcend view-state-change event callback - banner has been closed" ); handleBannerClose(); } else { cLog( "Transcend view-state-change event callback - banner has been displayed" ); } } ); const udnsMTD = airgap.getConsent().metadata; let udnsNTCD = (window.UDNS_NTCD = Number(udnsMTD?.UDNS_NTCD) || 0); let udnsNTCV = Number(udnsMTD?.UDNS_NTCV) || 0; if (udnsNTCD < Date.now() - 7.776e9) { cLog("more than 90 days since banner dismissed"); if (udnsNTCV < 2) { cLog("less than 2 vistis to verizon.com with the banner displayed"); var UDNS_NTCS = Number(getCk("UDNS_NTCS")); if (UDNS_NTCS === 0) { cLog("first session with banner"); setLclCk("UDNS_NTCS", 1); udnsNTCV += 1; airgap .sync() .then(() => airgap.setConsentMetadata(window.airgapScriptLoadEvent, { ...(airgap.getConsent().metadata || {}), UDNS_NTCV: udnsNTCV, }) ) .then(() => cLog("incremented banner views to " + udnsNTCV)) .then(window.displayNTC()); } else if (UDNS_NTCS < 3) { cLog("banner displayed less than 3 times this session"); UDNS_NTCS = UDNS_NTCS + 1; setLclCk("UDNS_NTCS", UDNS_NTCS); window.displayNTC(); } else { cLog("banner has been viewed 3 times this visit - do not display"); } } else { window.UDNS_NTCD = Date.now(); airgap .sync() .then(() => airgap.setConsentMetadata(window.airgapScriptLoadEvent, { ...(airgap.getConsent().metadata || {}), UDNS_NTCD: window.UDNS_NTCD, UDNS_NTCV: 0, }) ) .then(() => cLog(`UDNS_NTCD: now | UDNS_NTCV: 0 `)); } } } window.NTCpvc = function () { cLog("NTCpvc()"); window.coreData = window.coreData || []; window.coreData.push({ task: "emit", event: "linkClick", params: { name: "privacy banner policy link", detail: "PRIVACY_BANNER_DISPLAY", }, }); //open new tab with privacy policy window.open("https://www.verizon.com/about/privacy", "_blank"); }; window.resetNTCDisplay = function () { airgap.setConsentMetadata(window.airgapScriptLoadEvent, { ...(airgap.getConsent().metadata || {}), UDNS_NTCD: Date.now() - 7.777e9, UDNS_NTCV: 0, }); setLclCk("UDNS_NTCS", 0); return "banner visits and dismissal have been reset - refresh the page to see the banner"; }; window.resetNTCVisits = function (visitCount = 0) { airgap.setConsentMetadata(window.airgapScriptLoadEvent, { ...(airgap.getConsent().metadata || {}), UDNS_NTCV: visitCount, }); setLclCk("UDNS_NTCS", 0); return `number of visits with the banner displayed has been reset to ${visitCount}`; }; } /* ------------ Implement Privacy Banner Notification End ------------ */ //update banner UI document.addEventListener("readystatechange", (event) => { function updateUi(consentManagerPopup) { cLog("updateUI() - privacy banner"); try { consentManagerPopup.querySelector(":first-child").style.outline = "none"; let privacyLink = consentManagerPopup.querySelector("a"); privacyLink.setAttribute("tabindex", "0"); privacyLink.setAttribute("class", "privacyPolicyBannerAnchor"); privacyLink.focus(); let closeBtn = consentManagerPopup.querySelector("button"); //cloning close button to remove Transcend event listener that was causing polfill issues and preventing the banner from closing on pages with Angular const newBtn = closeBtn.cloneNode(true); closeBtn.parentNode.replaceChild(newBtn, closeBtn); newBtn.setAttribute("data-initialfocus", false); newBtn.addEventListener("click", () => { transcend.toggleConsentManager(); handleBannerClose(); }); } catch (error) { cLog( "updateUI() privacy banner - no banner to select error: " + error.message ); } } let seconds = 0; let consentManagerPopup = null; function getConsentMgrPopupAndUpdate() { seconds++; try { consentManagerPopup = document .querySelector("#transcend-consent-manager") .shadowRoot.querySelector("#consentManagerMainDialog"); } catch (error) { cLog("getConsentMgrPopupAndUpdate() - waiting for banner to load"); } if (consentManagerPopup) { cLog("getConsentMgrPopupAndUpdate() - privacy banner selected"); updateUi(consentManagerPopup); } else { if (seconds < 10 && !consentManagerPopup) { setTimeout(getConsentMgrPopupAndUpdate, 1000); } else { cLog( "getConsentMgrPopupAndUpdate() - privacy banner did not load and not able to update UI" ); } } } if (event.target.readyState === "complete") { getConsentMgrPopupAndUpdate(); } else { cLog( "no readystatechange event not complete and not able to modify CSS on Privacy Banner" ); } }); </script> <script id="blank"></script> <script> const airgapScript = document.getElementById("blank"); airgapScript.id = "airgapScript"; airgapScript.setAttribute("cfasync", false); airgapScript.setAttribute("data-ui-shadow-root", "open"); //allows modification of the privacy banner if (isLowerEnv) { airgapScript.src = "https://cdn.transcend.io/cm-test/69ce6fd5-5c2a-4981-ab32-aed4088087ab/airgap.js"; } else { airgapScript.src = "https://cdn.transcend.io/cm/69ce6fd5-5c2a-4981-ab32-aed4088087ab/airgap.js"; } let SYNC_ENDPOINT = "https://www.verizonwireless.com/vendor/transcend/vcg/xdi.html"; if (/verizon.com/i.test(location.host)) { SYNC_ENDPOINT = "https://secure.verizon.com/vendor/transcend/vcg/xdi.html"; } airgapScript.dataset.syncEndpoint = SYNC_ENDPOINT; airgapScript.onload = async (event) => { cLog("airgapScript tag onload()"); window.airgapScriptLoadEvent = event; let APIDomainName = "www.verizon.com"; if (/vzwqa|wwwnssit5/i.test(location.host)) { APIDomainName = "vzwqa3.verizonwireless.com"; } else if (/www98/i.test(location.host)) { APIDomainName = "www.verizonwireless.com"; } function gatherAEIData() { function getKVal(val) { try { if (val.startsWith("ck!")) { return getCk(val.substr(3)); } else { return eval(val); } } catch { return ""; } } let kTJ = { UniqDNSUserID: "window.UDNS_ID", UDNS_THROTTLE: "window.UDNS_THROTTLE", _gid: "ck!_gid", "User-Agent": "navigator.userAgent", Invoca_Session: "ck!invoca_session", }; let newAEIjson = {}; newAEIjson.email = [ { value: getKVal( "window.UDNS_RES.body.data.privacyChoiceOptOutResponse.emailId" ), }, ]; newAEIjson.phone = [{ value: "" }]; newAEIjson.custom = [{}]; let custWork = {}; let custom = []; for (let x in kTJ) { custWork = { name: x, value: getKVal(kTJ[x]) }; custom.push(custWork); } newAEIjson.custom = custom; window.UDNS_AEI = newAEIjson; } function activeGPC() { return ( navigator.globalPrivacyControl === true || navigator.globalPrivacyControl === "true" || navigator.globalPrivacyControl === 1 || navigator.globalPrivacyControl === "1" ); } async function setProfGuest(priorPrefValue, newPrefValue) { cLog( `setProfileGuest() - oldPreferenceValue: ${priorPrefValue} | newPreferenceValue: ${newPrefValue}` ); let postJson = { visitorSessionId: window.UDNS_ID, requestType: "GPC", unifiedLogin: "false", emailId: "", firstName: "", lastName: "", mtn: "", globalOptOutPrefs: [ { accountId: "", serviceType: "guest", role: "", optOutFlags: [ { type: "DT", prevValue: priorPrefValue, newValue: newPrefValue, }, ], }, ], }; postJson.transcendJson = window.UDNS_AEI; fetch( "https://" + APIDomainName + "/soe/digital/prospect/dns/ccpa-core/updateGlobalOptOut", { method: "POST", headers: { "Content-Type": "application/json", }, referrerPolicy: "no-referrer-when-downgrade", mode: "no-cors", credentials: "include", body: JSON.stringify(postJson), } ) .then((response) => { if (!response.ok) { cLog("response error when calling DB:", response); } return response; }) .then(async (update) => { window.UDNS_POST = update; try { if (update?.statusCode != "200") { throw Error( "Guest Update Status: " + update.statusCode + " Text: " + update.statusMessage ); } await airgap .sync() .then(() => airgap.setConsent( window.airgapScriptLoadEvent, { SaleOfInfo: false }, { metadata: { ...(airgap.getConsent().metadata || {}) } } ) ) .then(() => cLog("Tell Airgap SOI False After", airgap.getConsent()) ); } catch (e) { cLog("POST FAILED:", e.message); return false; } }); return true; } const localID = (window.UDNS_ID = TC_CONSENT_OBJECT?.[SYNC_GRP]?.metadata?.UDNS_ID); if (!localID) { window.UDNS_ID = generateId(); } gatherAEIData(); window.UDNS_PR = airgap.getConsent()?.purposes?.SaleOfInfo === false ? "O" : "I"; if (activeGPC() && window.UDNS_PR === "I") { setProfGuest("N", "Y"); } }; document.head.appendChild(airgapScript); checkUserLocation(); </script> <!-- GTM DataLayer --> <script>window.dataLayer = window.dataLayer || [];</script> <!-- Google Tag Manager --> <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src= 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f); })(window,document,'script','dataLayer','GTM-TBL5HV52');</script> <!-- End Google Tag Manager --> <link href="/css/style.css?v=Bq1ubBle1gdLjrGXNR-sgSMMo0zcQVAuJOb84cMmrDQ1" rel="stylesheet"/> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js" defer></script> <script src='/bundles/scripts/main.js?v=Z-_BkpDrhCa2CVGestkCRgDKI9wosPwIJA2FeRmp-fI1' defer></script> <script src='/bundles/scripts/ajaxActions.js?v=eVvQ01GV87QG-vWoxhh74E9fWgnyzLmbB17wixc1dVI1' defer></script> <script src="https://cdn.cookielaw.org/scripttemplates/otSDKStub.js" data-domain-script="5e80d9f1-2819-44bd-ba2b-44ca530493f7"></script> <script> function OptanonWrapper() { window.OneTrust.OnConsentChanged(function () { window.location.reload(); }); } </script> </head> <body class="js-template-sitemap" id="js-page-f79cc224-a343-4678-9387-2158a2aef524" > <!-- Google Tag Manager (noscript) --> <noscript> <iframe src="https://www.googletagmanager.com/ns.html?id=GTM-TBL5HV52" height="0" width="0" style="display:none;visibility:hidden"></iframe> </noscript> <!-- End Google Tag Manager (noscript) --> <a class="sr-only sr-only-focusable" href="#content">Skip to main content</a> <header class="header" id="header"> <div class="subnav-outer"> <div class="container-fluid container-xl"> <div class="row"> <div class="col-12 col-lg-auto"> <ul class="subnav-links"> <li> <a href="https://www.verizon.com/about" rel="noopener">About Us</a> </li> <li> <a class="active" href="/">Careers</a> </li> </ul> </div> </div> </div> </div> <div class="container-fluid container-xl"> <div class="row align-items-center justify-content-between"> <div class="col-8 col-lg-auto"> <a class="logo" href="/" id="js-logo-home-link"> <img src="/Images/logo.svg" class="img-fluid" alt="Verizon Careers logo" width="124" /> </a> </div> <div class="col-4 d-flex justify-content-end align-items-center d-lg-none"> <div class="nav-item header-saved-mobile"> <a href="/jobs/saved-jobs/" class="nav-link js-saved-jobs-page" rel="nofollow"> <svg class="icon-sprite" aria-hidden="true"> <use xlink:href="/Images/sprite.svg#heart-outline"></use> </svg> <span class="sr-only">Saved Jobs</span> <span><span class="js-saved-job-count">0</span></span> </a> </div> <button class="header-toggle btn" type="button" aria-label="Toggle navigation"> <svg class="icon-sprite is-collapsed"> <use xlink:href="/Images/sprite.svg#menu"></use> </svg> </button> </div> <div class="col-12 col-lg-auto"> <nav id="js-offcanvas" class="navbar navbar-expand-lg navbar-dark"> <ul class="navbar-nav"> <li> <a href="/" class="top-nav">Careers</a> </li> <li class="nav-item"> <a class="nav-link js-top-nav" id="nav-d-1231" href="/jobs/"> Jobs </a> </li> <li class="nav-item dropdown"> <a class="nav-link dropdown-toggle js-top-nav" href="/life-at-verizon/" id="nav-d-1356" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Life at Verizon</a> <ul class="dropdown-menu" aria-labelledby="nav-d-1356"> <li><a class="dropdown-item" href="/life-at-verizon/">Life at Verizon</a></li> <li><a class="dropdown-item js-top-nav" id="nav-sub-5222" href="/life-at-verizon/benefits/">Benefits</a></li> <li><a class="dropdown-item js-top-nav" id="nav-sub-5150" href="/life-at-verizon/work-culture/">Culture & Diversity</a></li> <li><a class="dropdown-item js-top-nav" id="nav-sub-5763" href="/life-at-verizon/culture-of-learning/">Culture of Learning</a></li> <li><a class="dropdown-item js-top-nav" id="nav-sub-5762" href="/life-at-verizon/doing-good/">Doing Good</a></li> <li><a class="dropdown-item js-top-nav" id="nav-sub-5152" href="/life-at-verizon/faqs/">FAQs</a></li> <li><a class="dropdown-item js-top-nav" id="nav-sub-5149" href="/life-at-verizon/how-we-hire/">How We Hire</a></li> <li><a class="dropdown-item js-top-nav" id="nav-sub-5151" href="/life-at-verizon/military/">Military</a></li> <li><a class="dropdown-item js-top-nav" id="nav-sub-1608" href="/life-at-verizon/students-internships/">Students & Internships</a></li> </ul> </li> <li class="nav-item dropdown"> <a class="nav-link dropdown-toggle js-top-nav" href="/career-paths/" id="nav-d-1235" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Career Paths</a> <ul class="dropdown-menu" aria-labelledby="nav-d-1235"> <li><a class="dropdown-item" href="/career-paths/">Career Paths</a></li> <li><a class="dropdown-item js-top-nav" id="nav-sub-5146" href="/career-paths/corporate/">Corporate</a></li> <li><a class="dropdown-item js-top-nav" id="nav-sub-6805" href="/career-paths/customer-support/">Customer Support</a></li> <li><a class="dropdown-item js-top-nav" id="nav-sub-5944" href="/career-paths/cybersecurity/">Cybersecurity</a></li> <li><a class="dropdown-item js-top-nav" id="nav-sub-6336" href="/career-paths/field-operations-technicians/">Field Operations & Technicians</a></li> <li><a class="dropdown-item js-top-nav" id="nav-sub-1344" href="/career-paths/marketing/">Marketing</a></li> <li><a class="dropdown-item js-top-nav" id="nav-sub-5877" href="/career-paths/retail/">Retail</a></li> <li><a class="dropdown-item js-top-nav" id="nav-sub-6032" href="/career-paths/sales/">Sales</a></li> <li><a class="dropdown-item js-top-nav" id="nav-sub-1236" href="/career-paths/technology/">Technology</a></li> </ul> </li> <li class="nav-item dropdown"> <a class="nav-link dropdown-toggle js-top-nav" href="/locations/" id="nav-d-1238" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Locations</a> <ul class="dropdown-menu" aria-labelledby="nav-d-1238"> <li><a class="dropdown-item" href="/locations/">Locations</a></li> <li><a class="dropdown-item js-top-nav" id="nav-sub-5766" href="/locations/apac/">APAC</a></li> <li><a class="dropdown-item js-top-nav" id="nav-sub-5767" href="/locations/emea/">EMEA</a></li> <li><a class="dropdown-item js-top-nav" id="nav-sub-6993" href="/locations/india/">India</a></li> <li><a class="dropdown-item js-top-nav" id="nav-sub-5768" href="/locations/north-america/">North America</a></li> </ul> </li> <li class="nav-item"> <a class="nav-link js-top-nav" id="nav-d-5761" href="/events/"> Events </a> </li> <li class="nav-item dropdown"> <a class="nav-link dropdown-toggle js-top-nav" href="/blog/" id="nav-d-1183" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Blog</a> <ul class="dropdown-menu" aria-labelledby="nav-d-1183"> <li><a class="dropdown-item" href="/blog/">Blog</a></li> <li><a class="dropdown-item js-top-nav" id="nav-sub-5213" href="/blog/our-culture/">Our Culture</a></li> <li><a class="dropdown-item js-top-nav" id="nav-sub-5205" href="/blog/verizon-voices/">Verizon Voices</a></li> <li><a class="dropdown-item js-top-nav" id="nav-sub-1188" href="/blog/ask-a-recruiter/">Ask a Recruiter</a></li> </ul> </li> <li class="nav-item"> <a class="nav-link js-top-nav" id="nav-d-5235" href="/candidate-home/"> Candidate Home </a> </li> <li class="header-cta"> <a class="btn btn-light btn-sm js-talent-link" href="/join-our-talent-network/" id="js-talent-link-nav" target="_blank">Join our talent network</a> </li> <li class="nav-item header-saved"> <a href="/jobs/saved-jobs/" class="nav-link js-saved-jobs-page" rel="nofollow"> <svg class="icon-sprite" aria-hidden="true"> <use xlink:href="/Images/sprite.svg#heart-outline"></use> </svg> <span class="sr-only">Saved Jobs</span> <span><span class="js-saved-job-count">0</span></span> </a> </li> <li> <a class="bottom-nav" href="https://www.verizon.com/about">About Us</a> </li> </ul> </nav> </div> </div> </div> </header> <div id="content"> <main> <div class="breadcrumb-wrap"> <div class="container d-none d-sm-block"> <nav aria-label="Breadcrumb"> <ol class="breadcrumb" itemscope itemtype="https://schema.org/BreadcrumbList"> <li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem" class="breadcrumb-item" id="js-crumb-1098"> <a href="/" itemprop="item"><span itemprop="name">Home</span></a> <meta itemprop="position" content="1" /> </li> <li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem" class="breadcrumb-item active"> <span itemprop="name">Sitemap</span> <meta itemprop="position" content="2" /> </li> </ol> </nav> </div> </div> <div class="container"> <div class="header-content"> <h1 class="page-header">Sitemap</h1> <p></p> </div> <nav aria-label="Sitemap"> <ul class="sitemap"> <li> <a href="/">Home</a> <ul> <li> <a href="/jobs/" class="js-sitemap-link">Jobs</a> <ul> <li> <a href="/jobs/saved-jobs/" class="js-sitemap-link">Saved Jobs</a> </li> </ul> </li> <li> <a href="/life-at-verizon/" class="js-sitemap-link">Life at Verizon</a> <ul> <li> <a href="/life-at-verizon/benefits/" class="js-sitemap-link">Benefits</a> </li> <li> <a href="/life-at-verizon/work-culture/" class="js-sitemap-link">Culture & Diversity</a> <ul> <li> <a href="/life-at-verizon/work-culture/employee-resource-groups/" class="js-sitemap-link">Employee Resource Groups</a> </li> </ul> </li> <li> <a href="/life-at-verizon/culture-of-learning/" class="js-sitemap-link">Culture of Learning</a> </li> <li> <a href="/life-at-verizon/doing-good/" class="js-sitemap-link">Doing Good</a> </li> <li> <a href="/life-at-verizon/faqs/" class="js-sitemap-link">FAQs</a> </li> <li> <a href="/life-at-verizon/how-we-hire/" class="js-sitemap-link">How We Hire</a> <ul> <li> <a href="/life-at-verizon/how-we-hire/assessments/" class="js-sitemap-link">Assessments</a> </li> <li> <a href="/life-at-verizon/how-we-hire/interviewing/" class="js-sitemap-link">Interviewing</a> </li> </ul> </li> <li> <a href="/life-at-verizon/military/" class="js-sitemap-link">Military</a> </li> <li> <a href="/life-at-verizon/students-internships/" class="js-sitemap-link">Students & Internships</a> </li> </ul> </li> <li> <a href="/career-paths/" class="js-sitemap-link">Career Paths</a> <ul> <li> <a href="/career-paths/corporate/" class="js-sitemap-link">Corporate</a> <ul> <li> <a href="/career-paths/corporate/finance/" class="js-sitemap-link">Finance</a> </li> <li> <a href="/career-paths/corporate/human-resources/" class="js-sitemap-link">Human Resources</a> </li> <li> <a href="/career-paths/corporate/legal-public-policy/" class="js-sitemap-link">Legal & Public Policy</a> </li> <li> <a href="/career-paths/corporate/strategy/" class="js-sitemap-link">Strategy</a> </li> <li> <a href="/career-paths/corporate/supply-chain-sustainability/" class="js-sitemap-link">Supply Chain & Sustainability</a> </li> </ul> </li> <li> <a href="/career-paths/customer-support/" class="js-sitemap-link">Customer Support</a> <ul> <li> <a href="/career-paths/customer-support/consumer/" class="js-sitemap-link">Consumer</a> </li> <li> <a href="/career-paths/customer-support/business-government/" class="js-sitemap-link">Business & Government</a> </li> </ul> </li> <li> <a href="/career-paths/cybersecurity/" class="js-sitemap-link">Cybersecurity</a> <ul> <li> <a href="/career-paths/cybersecurity/security-development/" class="js-sitemap-link">Security Development</a> </li> <li> <a href="/career-paths/cybersecurity/managed-security-consulting/" class="js-sitemap-link">Managed security & consulting</a> </li> <li> <a href="/career-paths/cybersecurity/infrastructure-security/" class="js-sitemap-link">Infrastructure security</a> </li> <li> <a href="/career-paths/cybersecurity/security-risk-management-pci/" class="js-sitemap-link">Security Risk Management & PCI</a> </li> </ul> </li> <li> <a href="/career-paths/field-operations-technicians/" class="js-sitemap-link">Field Operations & Technicians</a> <ul> <li> <a href="/career-paths/field-operations-technicians/building-maintenance/" class="js-sitemap-link">Building Maintenance</a> </li> <li> <a href="/career-paths/field-operations-technicians/fleet-mechanics/" class="js-sitemap-link">Fleet Mechanics</a> </li> <li> <a href="/career-paths/field-operations-technicians/technicians/" class="js-sitemap-link">Technicians</a> </li> <li> <a href="/career-paths/field-operations-technicians/network-assurance/" class="js-sitemap-link">Network Assurance</a> </li> </ul> </li> <li> <a href="/career-paths/marketing/" class="js-sitemap-link">Marketing</a> <ul> <li> <a href="/career-paths/marketing/creative-marketing/" class="js-sitemap-link">Creative Marketing</a> </li> <li> <a href="/career-paths/marketing/product-marketing/" class="js-sitemap-link">Product Marketing</a> </li> <li> <a href="/career-paths/marketing/experience-insights/" class="js-sitemap-link">Experience & Insights</a> </li> <li> <a href="/career-paths/marketing/media/" class="js-sitemap-link">Media</a> </li> <li> <a href="/career-paths/marketing/communications-media-relations/" class="js-sitemap-link">Communications & Media Relations</a> </li> </ul> </li> <li> <a href="/career-paths/retail/" class="js-sitemap-link">Retail</a> </li> <li> <a href="/career-paths/sales/" class="js-sitemap-link">Sales</a> <ul> <li> <a href="/career-paths/sales/global-enterprise/" class="js-sitemap-link">Global Enterprise</a> </li> <li> <a href="/career-paths/sales/public-sector/" class="js-sitemap-link">Public Sector</a> </li> <li> <a href="/career-paths/sales/small-business/" class="js-sitemap-link">Small Business</a> </li> <li> <a href="/career-paths/sales/inside-sales/" class="js-sitemap-link">Inside Sales</a> </li> </ul> </li> <li> <a href="/career-paths/technology/" class="js-sitemap-link">Technology</a> <ul> <li> <a href="/career-paths/technology/product-strategy/" class="js-sitemap-link">Product & Strategy</a> </li> <li> <a href="/career-paths/technology/data-analytics/" class="js-sitemap-link">Data & Analytics</a> </li> <li> <a href="/career-paths/technology/technology-solutions/" class="js-sitemap-link">Technology Solutions</a> </li> <li> <a href="/career-paths/technology/network-engineering-and-operations/" class="js-sitemap-link">Network Engineering and Operations</a> </li> <li> <a href="/career-paths/technology/technical-project-management/" class="js-sitemap-link">Technical Project Management</a> </li> <li> <a href="/career-paths/technology/network-assurance/" class="js-sitemap-link">Network Assurance</a> </li> </ul> </li> </ul> </li> <li> <a href="/locations/" class="js-sitemap-link">Locations</a> <ul> <li> <a href="/locations/apac/" class="js-sitemap-link">APAC</a> </li> <li> <a href="/locations/emea/" class="js-sitemap-link">EMEA</a> </li> <li> <a href="/locations/india/" class="js-sitemap-link">India</a> </li> <li> <a href="/locations/north-america/" class="js-sitemap-link">North America</a> </li> </ul> </li> <li> <a href="/blog/" class="js-sitemap-link">Blog</a> <ul> <li> <a href="/blog/our-culture/" class="js-sitemap-link">Our Culture</a> <ul> <li> <a href="/blog/our-culture/paying-it-forward-how-to-succeed-in-the-verizon-leadership-development-program/" class="js-sitemap-link">Paying it forward: How to succeed in the Verizon Leadership Development Program.</a> </li> <li> <a href="/blog/our-culture/v-teamers-light-the-way-to-celebrate-this-womens-history-month/" class="js-sitemap-link">V Teamers Light The Way to celebrate this Womens History Month.</a> </li> <li> <a href="/blog/our-culture/armed-forces-day-they-served-their-countries-lets-honor-veterans-today-and-every-day/" class="js-sitemap-link">Armed Forces Day: They served their countries. Lets honor veterans today and every day.</a> </li> <li> <a href="/blog/our-culture/meet-our-caribbeantechies-and-learn-how-their-culture-has-shaped-them-as-women-in-stem/" class="js-sitemap-link">Meet our #caribbeantechies and learn how their culture has shaped them as women in STEM.</a> </li> <li> <a href="/blog/our-culture/verizon-welcomes-our-first-hiring-our-heroes-fellows-of-2021/" class="js-sitemap-link">Verizon welcomes our first Hiring Our Heroes Fellows of 2021.</a> </li> <li> <a href="/blog/our-culture/proud-to-foster-a-culture-of-learning/" class="js-sitemap-link">Proud to foster a culture of learning.</a> </li> <li> <a href="/blog/our-culture/fostering-belonging-and-celebrating-diversity-equity-and-inclusion/" class="js-sitemap-link">Fostering belonging and celebrating diversity, equity, and inclusion.</a> </li> <li> <a href="/blog/our-culture/ready-to-thrive/" class="js-sitemap-link">Ready to Thrive.</a> </li> <li> <a href="/blog/our-culture/learn-grow-thrive/" class="js-sitemap-link">Learn. Grow. Thrive.</a> </li> <li> <a href="/blog/our-culture/fostering-diversity-in-the-workplace-and-it-shows/" class="js-sitemap-link">Fostering diversity in the workplace, and it shows!</a> </li> <li> <a href="/blog/our-culture/rounding-up-the-top-blogs-of-2021/" class="js-sitemap-link">Rounding up the top blogs of 2021.</a> </li> <li> <a href="/blog/our-culture/meet-our-cohort-1-2022-of-hiring-our-heroes/" class="js-sitemap-link">Meet our Cohort 1-2022 of Hiring Our Heroes.</a> </li> <li> <a href="/blog/our-culture/were-a-2022-linkedin-top-us-company/" class="js-sitemap-link">Were a 2022 LinkedIn top US company.</a> </li> <li> <a href="/blog/our-culture/a-top-company-for-moms-and-dads-and-for-20-years/" class="js-sitemap-link">A top company for moms and dads, and for 20+ years!</a> </li> <li> <a href="/blog/our-culture/verizon-ranks-high-once-again/" class="js-sitemap-link">Verizon ranks high once again.</a> </li> <li> <a href="/blog/our-culture/you-can-only-improve-what-you-can-measure/" class="js-sitemap-link">You can only improve what you can measure.</a> </li> <li> <a href="/blog/our-culture/reaching-the-pinnacle-as-verizon-women-in-sales/" class="js-sitemap-link">Reaching the pinnacle as Verizon Women in Sales.</a> </li> <li> <a href="/blog/our-culture/serving-those-who-serve-military-appreciation-month-2023/" class="js-sitemap-link">Serving those who serve: Military Appreciation Month 2023</a> </li> <li> <a href="/blog/our-culture/good-things-come-to-those-who-go-local/" class="js-sitemap-link">Good things come to those who go local.</a> </li> <li> <a href="/blog/our-culture/breaking-records-as-women-in-sales/" class="js-sitemap-link">Breaking records as women in sales.</a> </li> <li> <a href="/blog/our-culture/verizon-s-intelligent-scoring-enhances-the-customer-experience/" class="js-sitemap-link">Verizon's intelligent scoring enhances the customer experience.</a> </li> <li> <a href="/blog/our-culture/introducing-the-v-team-life/" class="js-sitemap-link">Introducing… the V Team Life!</a> </li> <li> <a href="/blog/our-culture/our-journey-to-verizon-s-employer-brand-the-v-team-life/" class="js-sitemap-link">Our journey to Verizon’s employer brand: the V Team Life.</a> </li> </ul> </li> <li> <a href="/blog/verizon-voices/" class="js-sitemap-link">Verizon Voices</a> <ul> <li> <a href="/blog/verizon-voices/diversity-and-leadership-keys-to-driving-verizon-s-global-application-security-organization-forward/" class="js-sitemap-link">Diversity and leadership keys to driving Verizon’s Global Application Security Organization forward.</a> </li> <li> <a href="/blog/verizon-voices/forwardtogether-welcome-to-our-first-verizon-virtual-internship-class-of-2020/" class="js-sitemap-link">#ForwardTogether: Welcome to our first Verizon Virtual Internship Class of 2020.</a> </li> <li> <a href="/blog/verizon-voices/patented-success/" class="js-sitemap-link">Patented Success</a> </li> <li> <a href="/blog/verizon-voices/be-an-ally/" class="js-sitemap-link">Be An Ally.</a> </li> <li> <a href="/blog/verizon-voices/winning-the-zinnov-awards-as-a-titan-of-technology/" class="js-sitemap-link">Winning the Zinnov Awards as a Titan of Technology.</a> </li> <li> <a href="/blog/verizon-voices/top-reasons-to-consider-a-bilingual-career-at-verizon/" class="js-sitemap-link">Top reasons to consider a bilingual career at Verizon.</a> </li> <li> <a href="/blog/verizon-voices/the-workplace-of-the-future-and-a-return-to-business-as-unusual/" class="js-sitemap-link">The workplace of the future and a return to business as ‘unusual’</a> </li> <li> <a href="/blog/verizon-voices/moving-the-world-forward-through-community-service-and-supporting-latinxs-in-stem/" class="js-sitemap-link">Moving the world forward through community service and supporting Latinxs in STEM.</a> </li> <li> <a href="/blog/verizon-voices/v-teamers-share-their-moments-of-fame-in-national-verizon-commercial/" class="js-sitemap-link">V Teamers share their moments of fame in national Verizon commercial.</a> </li> <li> <a href="/blog/verizon-voices/manager-mom-military-spouse/" class="js-sitemap-link">Manager, Mom, Military Spouse.</a> </li> <li> <a href="/blog/verizon-voices/apprenticeship-program-helps-emea-v-teamers-thrive-early-in-their-careers/" class="js-sitemap-link">Apprenticeship program helps EMEA V Teamers thrive early in their careers.</a> </li> <li> <a href="/blog/verizon-voices/a-voice-for-native-american-heritage-in-the-corporate-world/" class="js-sitemap-link">A voice for Native American heritage in the corporate world.</a> </li> <li> <a href="/blog/verizon-voices/cycling-for-a-cause/" class="js-sitemap-link">Cycling for a cause.</a> </li> <li> <a href="/blog/verizon-voices/geared-up-for-stem-education/" class="js-sitemap-link">Geared Up for STEM Education.</a> </li> <li> <a href="/blog/verizon-voices/pandemic-parenting-awarding-working-mother-and-dad-of-the-year/" class="js-sitemap-link">Pandemic Parenting: Awarding Working Mother and Dad of the Year.</a> </li> <li> <a href="/blog/verizon-voices/overcoming-prejudice-moving-the-world-forward-and-making-a-difference/" class="js-sitemap-link">Overcoming prejudice, moving the world forward and making a difference.</a> </li> <li> <a href="/blog/verizon-voices/celebrating-allyship-verizon-india-shares-the-benefits-of-teamwork/" class="js-sitemap-link">Celebrating Allyship: Verizon India Shares the Benefits of Teamwork.</a> </li> <li> <a href="/blog/verizon-voices/sammy-d-a-bold-leader-on-the-v-team/" class="js-sitemap-link">Sammy D., a BOLD leader on the V Team.</a> </li> <li> <a href="/blog/verizon-voices/ken-jack-paves-the-way-for-others-as-a-2021-most-influential-african-american-in-business/" class="js-sitemap-link">Ken Jack paves the way for others as a 2021 Most Influential African American in Business.</a> </li> <li> <a href="/blog/verizon-voices/the-best-technology-driven-by-the-best-people/" class="js-sitemap-link">The best technology, driven by the best people.</a> </li> <li> <a href="/blog/verizon-voices/achieving-your-goals-the-power-of-why/" class="js-sitemap-link">Achieving your goals: The power of why.</a> </li> <li> <a href="/blog/verizon-voices/a-vietnam-war-veteran-still-remembers-all-too-well/" class="js-sitemap-link">A Vietnam War veteran still remembers – all too well.</a> </li> <li> <a href="/blog/verizon-voices/take-control-of-your-career/" class="js-sitemap-link">Take control of your career.</a> </li> <li> <a href="/blog/verizon-voices/learn-grow-pursue-your-ambitions/" class="js-sitemap-link">Learn. Grow. Pursue your ambitions.</a> </li> <li> <a href="/blog/verizon-voices/awareness-acceptance-and-inclusion/" class="js-sitemap-link">Awareness, acceptance, and inclusion.</a> </li> <li> <a href="/blog/verizon-voices/saluting-our-veterans/" class="js-sitemap-link">Saluting our veterans.</a> </li> <li> <a href="/blog/verizon-voices/honoring-military-families/" class="js-sitemap-link">Honoring military families.</a> </li> <li> <a href="/blog/verizon-voices/bringing-our-network-to-life/" class="js-sitemap-link">Bringing our network to life.</a> </li> <li> <a href="/blog/verizon-voices/from-retail-to-rockstar/" class="js-sitemap-link">From Retail to Rockstar.</a> </li> <li> <a href="/blog/verizon-voices/see-us-hear-us-we-belong/" class="js-sitemap-link">See us. Hear us. We belong.</a> </li> <li> <a href="/blog/verizon-voices/all-in-the-verizon-military-family/" class="js-sitemap-link">All in the Verizon military family.</a> </li> <li> <a href="/blog/verizon-voices/v-teamer-veteran-national-champion/" class="js-sitemap-link">V Teamer. Veteran. National Champion.</a> </li> <li> <a href="/blog/verizon-voices/lets-show-our-school-spirit/" class="js-sitemap-link">Lets show our school spirit</a> </li> <li> <a href="/blog/verizon-voices/getting-comfortable-being-uncomfortable/" class="js-sitemap-link">Getting comfortable being uncomfortable.</a> </li> <li> <a href="/blog/verizon-voices/words-of-pride/" class="js-sitemap-link">Words of Pride.</a> </li> <li> <a href="/blog/verizon-voices/ace-self-awareness/" class="js-sitemap-link">ACE self-awareness.</a> </li> <li> <a href="/blog/verizon-voices/the-abcs-of-mec/" class="js-sitemap-link">The ABCs of MEC.</a> </li> <li> <a href="/blog/verizon-voices/my-first-30-as-a-verizon-intern/" class="js-sitemap-link">My first 30 as a Verizon intern.</a> </li> <li> <a href="/blog/verizon-voices/nothing-without-us/" class="js-sitemap-link">Nothing Without Us.</a> </li> <li> <a href="/blog/verizon-voices/4-tips-from-our-2021-verizoninterns/" class="js-sitemap-link">4 Tips from our 2021 #VerizonInterns.</a> </li> <li> <a href="/blog/verizon-voices/the-keys-to-success-in-r2b/" class="js-sitemap-link">The keys to success in R2B.</a> </li> <li> <a href="/blog/verizon-voices/a-simple-thank-you-goes-a-long-way/" class="js-sitemap-link">A simple thank you goes a long way.</a> </li> <li> <a href="/blog/verizon-voices/the-pursuit-of-success/" class="js-sitemap-link">The pursuit of success.</a> </li> <li> <a href="/blog/verizon-voices/loving-familia-selfless-sacrifices/" class="js-sitemap-link">Loving Familia. Selfless sacrifices.</a> </li> <li> <a href="/blog/verizon-voices/celebrating-20-years-in-verizon-india/" class="js-sitemap-link">Celebrating 20 years in Verizon India.</a> </li> <li> <a href="/blog/verizon-voices/a-long-tradition-of-serving-their-country/" class="js-sitemap-link">A long tradition of serving their country.</a> </li> <li> <a href="/blog/verizon-voices/from-the-air-force-to-verizon-incident-command/" class="js-sitemap-link">From the Air Force to Verizon Incident Command.</a> </li> <li> <a href="/blog/verizon-voices/driving-change-transformation-and-growth/" class="js-sitemap-link">Driving change, transformation, and growth.</a> </li> <li> <a href="/blog/verizon-voices/in-the-field-with-patty-roze/" class="js-sitemap-link">In the field with Patty Roze.</a> </li> <li> <a href="/blog/verizon-voices/find-your-path-make-your-mark/" class="js-sitemap-link">Find your path. Make your mark.</a> </li> <li> <a href="/blog/verizon-voices/sourcing-superstars/" class="js-sitemap-link">Sourcing superstars.</a> </li> <li> <a href="/blog/verizon-voices/meet-the-teams-working-at-visible/" class="js-sitemap-link">Meet the teams working at Visible.</a> </li> <li> <a href="/blog/verizon-voices/get-to-know-the-network-operations-center-team/" class="js-sitemap-link">Get to know the Network Operations Center team.</a> </li> <li> <a href="/blog/verizon-voices/writing-and-work-life-balance/" class="js-sitemap-link">Writing and work-life balance.</a> </li> <li> <a href="/blog/verizon-voices/from-campus-to-career-progression/" class="js-sitemap-link">From campus to career progression.</a> </li> <li> <a href="/blog/verizon-voices/break-the-bias-verizon-wave-celebrates-womens-history-month/" class="js-sitemap-link">Break The Bias-Verizon WAVE celebrates Womens History Month</a> </li> <li> <a href="/blog/verizon-voices/venturing-out-to-an-indirect-sales-career/" class="js-sitemap-link">Venturing out to an Indirect Sales career.</a> </li> <li> <a href="/blog/verizon-voices/from-the-military-to-marketing/" class="js-sitemap-link">From the military to marketing.</a> </li> <li> <a href="/blog/verizon-voices/empowering-veterans-to-move-their-careers-forward/" class="js-sitemap-link">Empowering veterans to move their careers forward.</a> </li> <li> <a href="/blog/verizon-voices/next-up-to-thrive/" class="js-sitemap-link">Next up to thrive.</a> </li> <li> <a href="/blog/verizon-voices/defying-all-odds-to-succeed/" class="js-sitemap-link">Defying all odds to succeed.</a> </li> <li> <a href="/blog/verizon-voices/my-verizon-internship-experience/" class="js-sitemap-link">My Verizon internship experience.</a> </li> <li> <a href="/blog/verizon-voices/join-a-team-that-innovates-and-inspires/" class="js-sitemap-link">Join a team that innovates and inspires.</a> </li> <li> <a href="/blog/verizon-voices/shaping-the-future-through-strategy/" class="js-sitemap-link">Shaping the future through strategy.</a> </li> <li> <a href="/blog/verizon-voices/meet-a-few-mvps-of-our-verizon-value-organization/" class="js-sitemap-link">Meet a few MVPs of our Verizon Value Organization.</a> </li> <li> <a href="/blog/verizon-voices/field-life-in-the-network-life/" class="js-sitemap-link">Field life in the Network Life.</a> </li> <li> <a href="/blog/verizon-voices/get-to-know-verizon-s-experience-design-team/" class="js-sitemap-link">Get to know Verizon’s Experience Design team.</a> </li> <li> <a href="/blog/verizon-voices/putting-the-v-in-evolution/" class="js-sitemap-link">Putting the V in evolution.</a> </li> </ul> </li> <li> <a href="/blog/ask-a-recruiter/" class="js-sitemap-link">Ask a Recruiter</a> <ul> <li> <a href="/blog/ask-a-recruiter/how-to-answer-the-question-tell-me-about-yourself-in-an-interview/" class="js-sitemap-link">How to answer the question “Tell me about yourself” in an interview.</a> </li> <li> <a href="/blog/ask-a-recruiter/how-do-i-complete-a-pre-recorded-video-interview/" class="js-sitemap-link">How do I complete a pre-recorded video interview?</a> </li> <li> <a href="/blog/ask-a-recruiter/4-ways-to-stay-productive-while-you-work-from-home/" class="js-sitemap-link">4 ways to stay productive while you work from home.</a> </li> <li> <a href="/blog/ask-a-recruiter/3-tips-for-managing-a-remote-team-effectively/" class="js-sitemap-link">3 tips for managing a remote team effectively.</a> </li> <li> <a href="/blog/ask-a-recruiter/how-do-i-stay-organized-during-my-job-search/" class="js-sitemap-link">How do I stay organized during my job search?</a> </li> <li> <a href="/blog/ask-a-recruiter/10-interview-tips-to-help-you-prepare/" class="js-sitemap-link">10 interview tips to help you prepare.</a> </li> <li> <a href="/blog/ask-a-recruiter/a-guide-to-preparing-for-a-job-interview-like-a-pro/" class="js-sitemap-link">A guide to preparing for a job interview like a pro.</a> </li> </ul> </li> </ul> </li> <li> <a href="/events/" class="js-sitemap-link">Events</a> </li> <li> <a href="/search/" class="js-sitemap-link">Search</a> </li> <li> <a href="/sitemap/" class="js-sitemap-link">Sitemap</a> </li> <li> <a href="/candidate-home/" class="js-sitemap-link">Candidate Home</a> </li> <li> <a href="/join-our-talent-network/" class="js-sitemap-link">Join Our Talent Network</a> </li> </ul> </li> </ul> </nav> </div> </main> </div> <div id="vz-gf20"></div> <script src="https://www.verizon.com/etc/designs/vzwcom/gnav20/corporate.js"></script> </body> </html>