Which Hawks players also played for the Jazz and averaged 5+ APG in a season? NBA Immaculate Grid an

Posted by Aldo Pusey on Saturday, June 15, 2024

The 60th edition of the NBA Immaculate Grid is out for fans trying to test their basketball knowledge. With the offseason in full swing, the grid has become a favorite among basketball fans. A puzzle each day has kept boredom away for hoop fanatics who can't wait for the new season to begin.

The Immaculate Grid is more stringent than other basketball puzzles, as fans need to get each cell right with every attempt. Failure to do so would mean the entire grid remains unsolved, so the term “immaculate,” which is taken from baseball’s immaculate inning.

Here’s a look at today’s grid:

march madness logo

70% Win

(110-25-1)

70% Win

(110-25-1)

70% Win

(110-25-1)

'; }); pollOptions.innerHTML = pollOptionsDom; pollCount.innerHTML = totalVotes + ' votes'; if (totalVotes > 10) { pollCount.classList.remove("hidden"); } } function trackBetsTodayPollImpression() { var intersectionObserverForArticlePoll = new IntersectionObserver( function(entries) { entries.forEach(function(entry) { var pollId = entry.target.getAttribute("data-poll-id"); if (POLLS_BY_ID[pollId]['impression_tracked']) return; if (!entry.target || !entry.isIntersecting || entry.intersectionRatio < 0.5) return; setTimeout(function() { if (isInViewport(entry.target)) { POLLS_BY_ID[pollId]['impression_tracked'] = true; var isDesktop = "1"; var gaPayload = { "question" : POLLS_BY_ID[pollId]['question'], "category": "Basketball", "page_url": window.location.href, "option1": POLLS_BY_ID[pollId]['option1'], "option2": POLLS_BY_ID[pollId]['option2'], } if (isDesktop) { gaPayload["device"] = "Desktop"; } else { gaPayload["device"] = "Mobile"; } gtag("event", "BETS_TODAY_POLL_IMPRESSION", gaPayload); intersectionObserverForArticlePoll.unobserve(entry.target); } }, 1000); }); }, { threshold: 0.5 } ); var pollElements = document.querySelectorAll('.bets-today-poll'); pollElements.forEach(function(pollElement) { var isAnswered = pollElement.querySelector(".poll-option-answered"); if (!isAnswered) { intersectionObserverForArticlePoll.observe(pollElement); } }) } return { answerPollX: answerPollX, }; }();

Clues to the Sept. 22 NBA Immaculate Grid

Cell 1 - Player who had stints with the Phoenix Suns and Utah Jazz

Cell 2 - Player who had stints with the Suns and Portland Trail Blazers

Cell 3 - Suns player with 5+ APG in a single season

Cell 4 - Player who had stints with the Denver Nuggets and Jazz

Cell 5 - Player who had stints with the Nuggets and Blazers

Cell 6 - Nuggets player with 5+ APG in a single season

Cell 7 - Player who had stints with the Atlanta Hawks and Utah Jazz

Cell 8 - Player who had stints with the Hawks and Blazers

Cell 9 - Hawks player with 5+ assists in a single season

Answers to the Sept. 22 NBA Immaculate Grid

Answers to Cells 1-3 are here.

Cell 4 could be Bryon Russell, Jarred Vanderbilt, Paul Millsap, Richard Jefferson, Juancho Hernangomez and Tim Legler. They all played for the Denver Nuggets and Utah Jazz.

T.R. Dunn, Alonzo Gee, Rudy Fernandez, Voshon Lenard, Juwan Howard, Andre Miller and Jeff McInnis are Cell 5 answers. They suited up for both the Nuggets and the Portland Trail Blazers.

Nuggets players with 5+ APG in a season include Warren Jabali, Nikola Jokic, Jamal Murray, Ty Lawson, Aaron Brooks, Chauncey Billups and Raymond Felton. Cell 6 is where they fit best.

Cell 7 could be Trent Forrest, Joe Johnson, Kris Dunn, Kyle Korver, Brevin Knight and Marvin Williams. They all played for the Atlanta Hawks and Utah Jazz.

Rasheed Wallace, Reggie Jordan, Jamal Crawford, Allen Crabbe, Cam Reddish, Tony Snell and Steve Smith had stints with the Hawks and Portland Trail Blazers. They're Cell 8 answers.

Hawks players with 5+ APG in a season include Toni Kukoc, Trae Young, Dejounte Murray, Jeff Teague, Jason Terry and Mike Bibby. Cell 9 of the NBA Immaculate Grid is where they fit best.

Here’s the filled-out NBA Immaculate Grid:

Here's the completed September 22 NBA Immaculate Grid are here

Quick Links

More from Sportskeeda

" modalPopup.closeOnEsc = false; modalPopup.setHeader("Why did you not like this content?"); modalPopup.setContentText(modalText); modalPopup.addCancelOkButton("Submit", resetRatingAndFeedbackForm, sendRating); modalPopup.removeCloseModalIcon(); modalPopup.disableDismissPopup(); modalPopup.open(); } else { sendRating(index); } } function sendRating() { var requestPayload = { "post_id": 1678674, "rating_value": ratingValue } if (ratingValue > 3) { requestPayload.rating_feedback_type = null; requestPayload.rating_feedback = null; } else { if (!$('input[name="drone"]:checked') || !$('input[name="drone"]:checked').value) { showErrorMessage('option'); return; } if (!$(".post-rating-feedback-note textarea") || !$(".post-rating-feedback-note textarea").value) { showErrorMessage('note'); return; } var selectedOption = $('input[name="drone"]:checked').value; var feedbackNote = $(".post-rating-feedback-note textarea").value; requestPayload.rating_feedback_type = selectedOption; requestPayload.rating_feedback = feedbackNote; } pureJSAjaxPost(addratingAPI, requestPayload, onsaveRatingSuccess, onsaveRatingFail, function() {}, true); } function resetRatingAndFeedbackForm() { var activeStars = Array.from($all('.rating span.rating-star.active')); for (var i=0; i < activeStars.length; i++) { activeStars[i].classList.remove("active"); } if ($('input[name="drone"]:checked')) { $('input[name="drone"]:checked').checked = false; } var userNote = document.querySelector(".post-rating-feedback-note textarea"); userNote.value = ''; modalPopup.close(); } function onsaveRatingSuccess() { modalPopup.close(); savePostIdInUserRatedPostsCookie(); $("#post-rating-layout").classList.add("hidden"); $("#post-rating-message").classList.remove("hidden"); window.setInterval(function showMessage() { $("#post-rating-widget").classList.add("hidden"); }, 3000); } function onsaveRatingFail() { console.error('Saving post rating failed!'); modalPopup.close(); } function savePostIdInUserRatedPostsCookie() { userRatedPostIds.push(1678674); var expiryTime = new Date(); expiryTime.setMonth(expiryTime.getMonth() + 12); // Expiry after 1 year setCookie("user_rated_post_ids", JSON.stringify(userRatedPostIds), expiryTime); } function isPostRatedByUser() { var userRatedPostIds = getCookie('user_rated_post_ids'); if (userRatedPostIds) { try { userRatedPostIds = JSON.parse(userRatedPostIds); } catch (err) { console.error(err); return false; } } else { return false; } if(userRatedPostIds.indexOf(1678674) >= 0) { return true; } else { return false; } } function getRatingCountByPostId(postId) { return new Promise(function(resolve, reject) { pureJSAjaxGet( getRatingCountBaseURL + postId + '/rating/count', function(data) { try { data = JSON.parse(data); if (data.meta_value) { resolve(data.meta_value); } reject("Failed to fetch rating count for the post:" + postId); } catch (err) { reject("Failed to fetch rating count for the post:" + postId); } }, function(err) { reject("Failed to fetch rating count for the post:" + postId); }, true); }); } function showErrorMessage(messageType) { var messageContainerId = '#' + messageType + '-error'; $(messageContainerId).classList.remove('hidden'); window.setInterval(function () { $(messageContainerId).classList.add("hidden"); }, 5000); } (function() { var callFired = false; function lazyLoadPostRating() { if (callFired) return; callFired = true; if (!isPostRatedByUser()) { getRatingCountByPostId(1678674) .then(function(ratingCount) { if (ratingCount < 10) { $("#post-rating-widget").classList.remove("hidden"); } }) .catch(function(err){ console.error(err); }); } } document.addEventListener("scroll", lazyLoadPostRating, { passive: true, once: true }); document.addEventListener("mousemove", lazyLoadPostRating, { passive: true, once: true }); document.addEventListener("touchmove", lazyLoadPostRating, { passive: true, once: true }); })();

ncG1vNJzZmivp6x7tLzOq6uso5WasaJ6wqikaJqRqLimwMGao6VnnprEtHnWoaCcoF2drri30manpZmpmr%2B0ecClqqhloKGuurHDZqGasqpirrex0ZqenpxdanqivMZmqp6Zo6S7brrBmmSipZ2WsLa4wK2cZp%2BinrFurc2srp6qo2LAprzTnqSbnaJif3M%3D