学年

質問の種類

英語 高校生

(4)について This is why にしてしまいました。  This is becauseというようなThis is whyの表現ではだめな理由を教えてください

(60分) Ⅰ 次の英文を読んで、下の設問 (1)~ (11) の語には注が付いています。 に答えなさい。 なお、 Food is fuel. When your body needs energy, you eat. When it doesn't you don't. It should be so simple when you think about it, but that's exactly the problem: us big smart humans can and do think about it, (, introduces all manner of problems and neuroses*. Have you noticed how you always have "room for dessert"? You might have just eaten the best part of a cow, or enough cheesy pasta to sink a gondola, but you can manage that fudge brownie or sundae. Why? How? If your stomach is full, how ice cream triple-scoop b) eating more even physically possible? It's largely because your brain makes an executive decision and decides that, no, you still have room. The sweetness of desserts is a palpable* reward (7)that the brain recognizes and wants so it overrules the stomach. C Exactly {c case is ③ is 4 the this why) uncertain. It may be that humans need quite a complex diet in order to remain in tip-top* condition, so rather than just relying on our basic metabolic systems to eat whatever is available, the brain steps in and tries to regulate our diet better. And this would be fine if that was all the brain does. But it doesn't. So it isn't. Learned associations are incredibly powerful when it comes ( d ) eating. You may be a big fan of something like, say, cake. You can be eating cake for years without any bother, then one day you eat some cake that makes you vomit. Could be some of the cream in it has gone sour; it might contain an ingredient you're allergic to; or (and here's the annoying one) it could be that something else entirely made you throw up shortly after eating cake. out of The disgust eating poiso g And it consider th The brain than food, it doesn't worryingl needlessl one of li shovelin the brai (注) (1) (2

回答募集中 回答数: 0
化学 高校生

eってどのように判断しますか?(NaClの気体が問に出てこないので) あとそれぞれのエンタルピーを出そうと思って写真のように考えてたんですけど、考え方は合ってますか?

思考 発展やや難 H=120C=120=16 283. 格子エネルギー■次の文を読み, (ア) には適切な語句, (イ), (ウ)には有効数字 3 桁の数値, (エ), (オ)には下記の選択肢から選んだ記号を答えよ。 塩化ナトリウムのイオン結晶の生成と溶解について,下の熱化学方程式をもとに考え る。①式から,NaCI(固)の(ア)エネルギーは +788kJ/molであることがわかる。 Na+ (気)が水和して Na+aq となる反応を⑦式に示した。 ヘスの法則を利用して ⑦式中 [k]を求めると(イ)kJ となる。 Cl2 (気)の結合エネルギーを244kJ/mol とする と, Na(気)の第1イオン化エネルギーは(ウ)kJ/mol となる。 以上から,下記の選択 肢の中で, エネルギー的に最も不安定な状態は(エ)で、最も安定な状態は(オ)で ある。 第1章 物質の変化と平衡 熱化学方程式 選択肢 NaCl (固) Na+ (気) +CI- (気) AH = +788kJ ... ① (a) Na+aq+Cl-aq CI (気) +e- → CI- (気) △H=-354kJ ... ② (b) Na (気) +CI (気) 1 (c) Na (固) +Cl2(気) NaCI(固) △H=-411kJ ...③ 2 (d) Na+ (気) +CI- (気) NaCl(固)+aq 02 Hin Na (固) Na(気) AH = +107k ... ④ (e) NaCl(気) NaCl (固) +aq CI- (気) +aq THOONM Na+ (気) +aq V 甲 Naaq+Cl-aq △H = +4.0kJ...⑤ → Cl¯aq △H=-364kJ ...⑥ Na+aq △H=x[kJ] ...⑦ (09 慶応義塾大改) 09

回答募集中 回答数: 0
情報 大学生・専門学校生・社会人

Oracle certified Java Programmer Gold SE11 IT系ベンダー資格のOracle certified Java Programmer Gold SE11の資格勉強をしているのですが、もし、Javaに詳しい人がいるのでしたら、 第6章... 続きを読む

8. 次のコードをコンパイル、 実行したときの結果として、正しいものを びなさい。 (1つ選択) } var sql = "select * from item where id = ?": try (var ps = con.prepareStatement (sql)){ ResultSet rs = ps.executeQuery(); // do something 0件の検索結果が戻される 11. 次のコードをコンパイル、実行したときの結果として、正しいものを選 びなさい。(1つ選択) var sql = "select * from emp"; try (PreparedStatement ps = con.prepareStatement(sql){ ResultSet rsps.executeQuery(); System.out.println(rs.getString(2)); なお、 検索する対象となるempテーブルは、以下のレコードが登録さ れているものとする。 DEPARTMENT A. B. 全件の検索結果が戻される C. コンパイルエラーが発生する D. 実行時に例外がスローされる ID NAME 1 ALLEN R&D A. B. executeQueryメソッド C. executeメソッド D. executeBatch メソッド メソッドとして、最も適切なものを選びなさい。 (1つ選択) executeUpdate メソッド 19. JDBCを使ったデータベースプログラミングをしている。 UPDATE文を 実行した結果、 何件更新されたかを調べたい。 PreparedStatementの P314 2 SCOTT SALES 3 BILL ACCOUNTING A. 「1」 と表示される Marit B. 「2」 と表示される C. 「ALLEN」 と表示される D. 「SCOTT」 と表示される E. コンパイルエラーが発生する F. 実行時に例外がスローされる 第6章 JDBCによるデータベース連携 (問題) <->P316 P314 10. 次のコードをコンパイル、 実行したときの結果として、正しいものを選 びなさい。 (1つ選択) var sql = "delete from item where id = ?"; try (var ps = con.prepareStatement(sql))( ps.setInt(1, 1); ps.executeUpdate("update item set name="test' where id = ?'); 12. 次のコードをコンパイル、 実行したときの結果として、正しいものを選 びなさい。 (1つ選択) var sql = "select count(*) from item"; try (PreparedStatement ps = con.prepareStatement(sql)){ System.out.println(ps.execute()); なお、検索する対象となるitemテーブルは、以下のレコードが登録さ れているものとする。 A. DELETE文が実行される id name 1 B. UPDATE文が実行される banana 2 C. コンパイルエラーが発生する apple 3 D. 実行時に例外がスローされる P316 orange 298 ※次ページに続く 299

回答募集中 回答数: 0
英語 高校生

全然わからないです😭 1問でも教えて頂けたら嬉しいです…🙏

Lesson 3. Palliative Care 部突破! いま最もアツく、最もイカ Medical treatment / Health STEP P 1 Read the Article Let's learn about palliative care, medical care that relieves pain, symptoms and stress caused by serious illness. 1) Palliative care, form of health care that seeks to improve the quality of life of patients with terminal disease through the prevention and relief of suffering. It is facilitated by the early identification of life-threatening disease and by the treatment of pain and disease- associated problems, including those that are physical, psychological, social, or spiritual in nature. As defined, palliative care begins at the point of diagnosis of terminal disease and can be delivered in a variety of health care settings. In general, it involves health and social care professionals working in hospitals, communities, hospices, and voluntary sectors. 2) Palliative care has been associated with many different terms, including terminal care, care of the dying, end-of-life care, and supportive care. However, these forms of care are not necessarily the same as palliative care. Likewise, palliative care is also sometimes described as hospice care. While hospice care does imply palliative care, it is specific to care provided near the end of life. In contrast, palliative care covers the duration of a patient's illness and, hence, may be delivered over the course of years. 3) Palliative care emphasizes three main principles: 1) A team-based approach is fundamental in managing distressing symptoms, such as pain, nausea, fatigue, and depression. It is also a necessary component in meeting the physical and psychosocial needs of the patient and his or her family. 2) Dying is a normal process. Symptom management is needed in order to help patients live life to the fullest until they die. 3) The synthesis of physical care with psychological and spiritual care fulfills a vital role in the overall care of the patient. 4) Palliative care is a global concern, and a steady rise in the number of people who are living longer with degenerative disease suggests that demand for palliative care services will increase in the are areas of intense. developments such Standards Framewo and Palliative Care Indian Association health care profes intended to help physical and psyc 5) In some place For example, the and has identifie framework is int days of life. Its communication, their families, a palliative c diagnosis duration: nausea H Log in to Watch th Hear resear the 2020 co

回答募集中 回答数: 0
英語 高校生

Q&Aの解答が分かりません。 明日テストなので回答よろしくお願いします。

10 *** 5 Dances Around the World This is a student's report about dances around the world. Section 1 Setting 生徒が世界のさまざまなダンスについてレポートしています。 How did the hula begin? There are many dances around the world. Each of them has a unique background. Here, let's look at three styles of dancing: the hula, Irish dance, breakdancing. and The first dance is the hula in Hawaii. It comes from the indigenous religion there. In ancient Hawaii, people showed their respect for gods by dancing. They also danced to pass on important values from generation to generation. That was because they had no formal writing system at the time. In other words, the hula was more than a leisure activity. In the hula, dancers use their hands to express G emotions and things in nature. The dancers believe that they can communicate various messages through 15 the hula. background [bækgrȧund] hula [hú:lǝ] ♦Irish láiriЛ] breakdancing [bréikdænsin] religion [rilidzǝn] ancient [éinfant] generation [dzènǝréifn] leisure [li:3ǝr]) TF Su Read 世 フラダンスを踊るハワイ先住民の女性 (1938年) 1. Does each of the dances have a unique background? & 2. What did people in Hawaii show by dancing? 1 2 13 .text ⚫ new words A 3. What do hula dancers believe? 8 pass on ~~を伝える 8 from generation to generation (t 10 at the time 10 writing system 書きことばのしくみ

回答募集中 回答数: 0