今日の問題 CTスキャンは何の略称? ① Computed Tomography Scan ② Cardiovascular Test ③ Cranial Tumor Screening ④ Cellular Tissue Sampling ※回答はこちらからログインしてご確認ください 回答はこちら 正解は① Computed Tomography Scanです! CTは「Computed Tomography」の略称で、X線を用いて体内の断面像を作成する画像検査。頭部CT検査では脳出血や脳梗塞、胸部CT検査では肺がん、腹部CT検査では肝がんなどの病変が確認できる。 関連記事 ・見逃さないで!健診で偶然見つかる疾患 過去の問題 ・MRIは何の略称? ・腫瘍が線維芽細胞増殖因子(FGF)23を自律的に産生することで発症する疾患は? ・中世の欧州において、ペスト(黒死病)が流行した時期に医師が着用していたマスクの形状は? // ログイン調査 $(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' } })