今日の問題 左心室と右心室で心臓壁厚が大きいのは? ① 左心室 ② 右心室 ③ どちらも同じ ※回答はこちらからログインしてご確認ください 回答はこちら 正解は① 左心室です! 血液を全身に拍出する左心室は、心筋壁厚が右心室の3倍程度である。 関連記事 ・ --> 過去の問題 ・以下のうち、成人期の腸内細菌叢における理想的な占有率が7割とされる菌種は? ・以下のうち、ヒトの呼吸器系で最も小さい部位は? ・2023年11~12月、過去10年間で最多の報告数となった感染症は? // ログイン調査 $(document).ready(function () { // 医師のみの場合 // if (js_class == '医師・研修医') { // $('#answerButton').removeAttr('disabled'); // console.log('医師・研修医IDでログイン中'); // } // ログインしてるか?のみチェック if ('' != sf_id) { $('#answerButton').removeAttr('disabled'); $('#notLoggedText').hide(); } }); const answerButton = document.getElementById('answerButton') answerButton.addEventListener('click', function() { this.classList.toggle('active') const answer = this.nextElementSibling if (answer.style.maxHeight) { answer.style.maxHeight = null } else { answer.style.maxHeight = answer.scrollHeight + 'px' } })