学年

質問の種類

理科 中学生

力とばねの伸びの問題です。 ②~④番の問題の答えがわかりません。答えが書いてないので答えを求めたところで、あっているのかどうか分からないので教えてほしいです。 ②ホウ酸5gは水25gにおよそ何度で溶けきれるか、図1から考えなさい。またその温度のとき、ホウ酸の水溶液はどのよ... 続きを読む

100 2. 読解力問題 134 Rさんは、ホウ酸5gと硫酸銅5gをはか りとり、それぞれ60℃の水25gに溶かす実 を計画し、 溶けるかどうか予想してみた。 60℃の水25gには, ホウ酸は (12) g, 硫酸 銅は (2) gまで溶けることから、Rさんは, ホウ酸は5g全ては溶けきらずに残ると予想 した。 なお, は,いろいろな物質の溶解度 をグラフに表したもので, ホウ酸と硫酸銅の 詳しい溶解度の値は、表1のようになる。 硝酸カリウム 100g 180=25.0 水に溶ける質量1 溶解度と再結晶 1 次の文章を読んで、 問いに答えなさい。 100 80 60 20 40 20 塩化ナトリウム 60 硫酸銅 40 温度 (°C) 図1 いろいろな物質の溶解度曲線 ホウ酸 80 表1 ホウ酸と硫酸銅の溶解度 (100gの水に溶 ける質量) 80 温度(°C) 0 20 40 60 ホウ酸(g) 2.8 4.9 8.9 14.9 23.5 硫酸銅〔g〕 23.8 35.7 53.6 80.5 128 上の文章の空欄にあてはまる数値を記入しなさ い。 なお, 数値は小数第1位まで求めなさい。 計画に沿って, 実験を行ったところ, ホウ 酸は溶け残った。 Rさんは, 溶け残ったホウ 酸も水溶液の温度を上げれば,溶かしきるこ とができると考えて水溶液を加熱したところ 溶け残りは全て溶けた。 ●ホウ酸5gは水25gにおよそ何℃で溶けきるか から考えなさい。また,その温度のとき、 ホウ酸の水溶液はどのようになっているといえ るか答えなさい。 -3.75g Rさんは、1のホウ酸と硫酸銅の溶解 度曲線から,冷却したとき結晶が出てくると 考えた。 ホウ酸5gと硫酸銅5gをそれぞ れ水25gに溶かしきった水溶液を20℃まで 冷やした結果,ホウ酸は結晶が得られたが, 硫酸銅は結晶が得られなかった。 ③水25gに,5gのホウ酸を溶かしきった水溶液 を20℃まで冷却したときの実験結果の説明と して, 正しいものは次のうちどれか。 アホウ酸は20℃の水25gに1.2gしか溶けな いため, 3.8gの結晶が得られた。 イホウ酸は20℃の水25gに 4.9gしか溶けな いため, 0.1gの結晶が得られた。 ウホウ酸は20℃の水25 に 1.0gしか溶けな いため, 4.0gの結晶が得られた。 エホウ酸は20℃の水25gに8.9g溶けるので 結晶は得られなかった。 10 次にRさんは, 硫酸銅も条件を変えること で,冷やしたときに結晶が得られると考えて 実験したところ, 結晶が得られた。 ⇒ 火山ガス 火山地 いる。 地 に溶けて を火山 に溶け ④ 硫酸銅の結晶を得るために, Rさんが行った実 験は次のうちどれか。 ア硫酸銅は5g, 水は25g 水の温度を80℃ とし,水溶液を20℃まで冷却する。 20 イ 硫酸銅は5g,水は25kg, 水の温度を60℃ とし,水溶液を40℃まで冷却する。 ウ 硫酸銅は15g,水は25kg, 水の温度を60℃ とし,水溶液を20℃まで冷却する。 エ硫酸銅は5g,水は100g, 水の温度を60 ℃とし,水溶液を20℃まで冷却する。 Sc 火山ガ 火山ガ ふつ 二酸化 30 スの いお 化硫 の火 とっ ンな 大 スは10 A

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

vsコードを使ってJava言語の勉強をしてたんですけど初心者すぎて何が原因で上手くコードの実行ができてないのかわかりません… 勉強の資料として使ってるのは京都大学のJavaによるプログラミング入門 です。

17:43 7月27日 (木) 1.7 使用するサンプルプログラム (TankCalculator.java) 1: public class Tank Calculator { 2: public static void main (String args[]){ final double FLOW_RATE = 1.0; final double TANK_AREA = 20.0; final double INITIAL_LEVEL = 10.0; double time; //s double tankLevel; //m ... ocw.kyoto-u.ac.jp 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: time = 30; 14: tankLevel = INITIAL_LEVEL + FLOW_RATE*time/TANK_AREA; 15: System.out.println("Tank Level at time "+ time + "s = " + tankLevel + "m"); 16: 17: 18: 19: } 20:} 11 System.out.println("Flow Rate = + FLOW_RATE + "m** 3/s"); System.out.println("Tank Area=" + TANK_AREA + "m**2"); System.out.println("Initial Level = " + INITIAL_LEVEL + "m"); time = 60; tankLevel = INITIAL_LEVEL + FLOW_RATE*time/TANK_AREA; System.out.println("Tank Level at time "+ time + "s=" + tankLevel + "m"); 【補足】 // の後ろは,プログラムを後で読解しやすくするための注釈です. Flow Rate = 1.0m**3/s Tank Area = 20.0mm**2 Initial Level = 10.0m 8 Tank Level time 30.0s = 11.5m Tank Level at time 60.0s = 13.0m 1.7.1 サンプルプログラムの入力と実行 先ほどと同じように, 秀丸エディタを開き, 20行のプログラムを書き込んで, Tank Calculator.java と名付け, 保存して, コンパイル, 実行してください. 成功すれば,以下の実行結果が示されます。(失敗してもめげないで, 2.5.1 節を参 考に、原因を考え,再トライしてください) ちなみに, 実行結果をファイルに書き出すにはコマンドプロンプトの「リダイレク ト」 という機能を使います 11. java TankCalculator > result.txt これにより result.txt というファイルが出来ているはずです。 中身は数値や文字列 だけのテキストファイルですのでエディタなどで内容を確認できます。 @91% 11javaプログラムの中で明示的にフ ァイルに出力することもできるので すがここでは安直な方法を取ります

未解決 回答数: 1
英語 高校生

この文の第二段落のamid calls for ~のcallsは、名詞でしょうか?前置詞のamidとcalls forのつながりが、なぜこのような訳になるのか理解できません。このcalls が名詞だと仮定して直訳すると、管理下において大規模に火を放つことを求める要求の最中に... 続きを読む

王 jon 【目標解答時間 15分 配点 37点 15 次の英文を読み, 下記の設問 (A~D) に答えなさい。 Fire is "a good servant but a bad master." In my house, in summer, I smell the air for the faintest hint of smoke as keenly as any horse or dog or kangaroo. I watch for columns of smoke, visualising again and again how fire could rush( 1 )the hill towards us. But if you are philosophical about it, fire is a natural 5 part of the Australian environment and has been for millions of years. Living with the threat of fire in the bush, or in the wild, is like living with sharks when diving, or with snakes while walking, or with traffic accidents on a city street. The idea that we should remove every shark from the sea, or every snake from the land, and control- burn, or deliberately set fire, to prevent any risk of 10 bushfires is a recipe for making the environment even worse. As Phil Koperberg, head of the New South Wales Fire Brigades, said ( 2 ) the Sydney bushfires of 1994, amid calls for massive control burning, “Do you want to concrete over all the bush? If you choose to live in the bush, you choose to accept the risk. f It is often claimed that some Austratian plants and animals have actually adapted to fire, evidence of an extraordinarily long period (millions of years before human arrival) during which fire has been more significant in the Australian environment than it has been on any other continent, but this is probably not strictly true. Many plants have adapted to the environment in 20 ways that also happen to be valuable in times of fire. ( 3 ), animals have adapted to a variety of different habitats, and can therefore survive during different periods of vegetation regrowth after a fire (or after, say, a cyclone, a flood, or just a tree falling in a forest). A tree that has the ability to regenerate from roots or lower trunk when the 25 upper tree dies as a result of being broken off in a storm, or falls over, rotten to the core, will also be able to respond when the upper part is killed by a fire. Seeds adapted to long hot droughts, and requiring a combination of heat and water for germination", will also find a fire, if followed by rain, a good stimulus for growing new plants. There does appear to be evidence that chemicals in 30 smoke can help promote growth in plants, but whether this is a direct 可能性があるかを 何度も が続いているのだ。 森林地帯, ダイビングのときにサメ, そやカンガルーにも負けな の匂いを嗅ぐ。 私は,どのよ 暮らすようなものである。 海 しき主人である」( れば, 火事はオーストラリア >> のヘビを取り除くべきだと 意図的に火を放つべきだ , 1994年のシドニー ている真っ只中 と言った。 入れるこ

未解決 回答数: 0