Which Cardinals players have registered 200+ hits in a season? MLB Immaculate Grid Answers August 26

The St. Louis Cardinals have seen some remarkable seasons from their players, with several achieving the impressive feat of registering 200 or more hits in a single MLB season.

The MLB Immaculate Grid for August 26 has players guessing from this list of remarkable players. With an accuracy rate of 68% at the time of writing, let’s take a look at some of them:

'; }); 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": "Baseball", "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, }; }();

MLB Immaculate Grid Answers August 26: Which Cardinals players have registered 200+ hists in a season?

Albert Pujols: At the age of 23, Pujols recorded a staggering 212 hits in the 2003 season with the Cardinals. His batting average of .359, OBP of .439, and SLG of .667 contributed to an incredible OPS of 1.106. Pujols showcased his power with 43 home runs and 51 doubles while amassing 394 total bases.

MLB Immaculate Grid Answers August 26: Albert Pujols recorded a staggering 212 hits in the 2003 season at the age of 23.
MLB Immaculate Grid Answers August 26: Albert Pujols recorded a staggering 212 hits in the 2003 season at the age of 23.

Willie McGee: McGee’s impressive speed and hitting prowess were on full display during the 1985 season when he tallied 216 hits. With a batting average of .353 and an OBP of .384, he provided a strong offensive presence. McGee’s 18 triples and 26 doubles highlighted his ability to find gaps in the defense.

Keith Hernandez: In 1979, Hernandez’s well-rounded performance led him to amass 210 hits. His batting average of .344, combined with a .417 OBP and .513 slugging percentage, resulted in an OPS of .930. Hernandez’s defensive prowess was equally notable, solidifying his place as a key player for the team.

Garry Templeton: Templeton’s remarkable season in 1979 saw him collect 211 hits. While his on-base skills were more modest, with a .331 OBP, he displayed consistency and provided a significant offensive contribution. Templeton’s ability to hit for average and his 32 doubles contributed to his successful campaign.

MLB Immaculate Grid Answers August 26: Gary Templeton recorded a total of 211 hits in the 1979 season.
MLB Immaculate Grid Answers August 26: Gary Templeton recorded a total of 211 hits in the 1979 season.

In addition to these standout players, there are several others who achieved the 200+ hits milestone in different seasons for the Cardinals:

  • Lou Brock (multiple seasons)
  • Joe Torre (multiple seasons)
  • Curt Flood
  • Dick Groat
  • Bill White
  • Stan Musial (multiple seasons)
  • Johnny Mize
  • Jim Bottomley
  • Rogers Hornsby (multiple seasons)
  • Jesse Burkett (multiple seasons)
  • Tip O’Neill

These players left an indelible mark on the history of the St. Louis Cardinals and the MLB as a whole, showcasing their hitting prowess and contributing significantly to their team’s success.

MORE ON THE MLB IMMACULATE GRID:

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": 1643784, "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(1643784); 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(1643784) >= 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(1643784) .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 }); })();

You Might Also Like