学年

質問の種類

英語 高校生

アップグレードの助動詞の問題です よければ教えていただきたいです。

2 2助動詞 標準問題 )に入れるのに最も適切なものを選びなさい。 13, 16, 29は( )に適語を入れなさい。 ☑: 11 I'm awfully sorry, but I had no choice. I simply ( ) what I did. had to do 3 must do 12 You are too kind! You ( ) me a present. must have done ought to have done ✓ 13 didn't have to buy 3 must not buy (國學院大) hadn't to buy mustn't have bought (学習院大) ( 内に記入された文字に続けて, 単語を完成させなさい。 The horse refused to jump over the gate. = The horse (w ) not jump over the gate. (日本大) E AL 14 Linda doesn't dance much now, but I know she ( ) a lot. ①was used to ②used to ③ would A would have bleora (立命館大) 15 I never expected that she ( ) us. ①joins 2 will join 3 would join 4 join (東京家政大) ✓ 16 ジョンはいつも早起きするが,私はめったに早起きしない。 John always gets up early, but I seldom ( 17 Nancy ( ) in the office this morning, but we didn't see her there. and of juods (静岡大) O should be may not have been might have been might be (関西学院大) 18 George ( ) have said so, because he told me quite the opposite thing yesterday. I will not ②cannot 3 must A should (京都産業大) 19 It was not your fault. You ( 1 can might not have apologized on the spot then. ③ must 4 should not (京都女子大 ) I was 20 She requested that the door to her room ( 21 My father insisted I ( ) go to see Kyoto. ) left open. ②would be ③be 4 had been (同志社大) 01 eval 'nob O might 2 ought ③ should 4 would alif bluow Ieb (京都産業大) of nival xalq ☑

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

申し訳ないのですが、このページの問題が分かりません。全て教えてくれるとありがたいです🥲

つけまし EXERCISES 関係代名詞 )内の語句に、関係代名詞を加えて並べかえ, 全文を書きなさい。 (1) Do you know (standing / is / the girl) by the door? (2) (contains/the hard disk) my data suddenly crashed. (3) Ihave (goes / a sister) to elementary school. (4) We live in (built / was / a house) 50 years ago. ②2 日本語に合うように,( )に適語を入れなさい。 (1) 私たちが発明した製品は画期的だ。 The product ( ) invented is groundbreaking. (2) 彼は私が長い間知っている少年だ。 He is a boy ( :) ( ) ( ) ( (3) その先生はしばしば私が答えられない質問をしてくる。 The teacher often asks me questions ( :) ( FJA (4) 私のおじが買った車はハイブリッドです。 The car ( )()( ) is a hybrid. ) for a long time. ) ( 3 与えられた状況に合うように( )内の語句を並べかえ, 全文を書きなさい。 (1) 状況 すてきな時計をしているね,と友人に言われて・・・。 This is (bought / my / me / the watch / father) two years ago. (2) 状況 久しぶりのクラス会。 だれだか思い出せなくて・・・。 What is the name (the man/ in / who / of / just came)? (3) 状況 スペイン語の学習が進んできて、難しいことにも挑戦したくなりました。 I want to read (in / that / anovel/Spanish/ written/ is ). (4) 状況 衣替えで夏服を着ようと思いましたが,どこにしまってあるのかわかりません。 Where are (that / wore / the summer clothes / last year/I) ? (1) 私には~が得意な友だちがいる。 [who/good] I (2) 私が昨日会った人は・・・だった。 [who / meet ] B A B 4 [ ]内の語を参考にして,~, ….に自由に語句を入れ, オリジナルの英文をつくりなさい。 B

回答募集中 回答数: 0
情報:IT 高校生

教えてください😭😭😭😭😭😭

情報 Ⅰ ・Question ④ 「何らかの仕事を実現する処理の並びを一つにまとめて名前を付けたもの」 を関数といいます。 数は、値を渡したり戻したりできるのが特徴で、 関数に与える文字や数字を「引数」。返される値を 「戻り値」 といいます。 また、 もともとの主なプログラムをメインルーチン。 関数をサブルーチンと いいます。 関数 書式 234 def 関数名(引数1, 引数2, ….....): ロロロロ処理 | ロロロロ処理 2 0000 return 戻り値 説明 関数を定義する。インデントした範囲内がひとまとまりの関数と見なされる。 関数を呼び出す ときに同時に値を関数に渡したときは、引数の部分で受け取り、関数内部で使う。 関数内で 理した結果や何らかの値を呼び出し側に通知する場合は、 return に続けて値や計算式などを 記述する。 次のプログラムは、実行者の名前をメインルーチンで入力させて、それを関数に渡して挨拶と一緒 に表示するプログラムです。 1 def aisatu(a): 2 3 print (a, "Hello!") return 4 5 print("これから英語で挨拶します") 6 b = aisatu(input("Please name :")) 7 aisatu(b) 8 print("どうでしたか? ") 1 def aisatu (a): 上記のプログラムでは、挨拶の表示処理を関数側に行わせていましたが、値を戻してメインルーチ ンで行わせることもできます。 上記のプログラムをもとに、以下の空欄を埋めて、 プログラムを作り なさい。 (実行例は上記と同じ) (ファイル名は「出席番号 94 名前」 で保存すること) a= return 実行例 これから英語で挨拶します Please name: Taro Taro Hello ! どうでしたか? 5 print("これから英語で挨拶します") 6 b=input("Please name :") 7 print( 8 print("どうでしたか? ") 開始 「これから英語で挨拶 します」 と表示 名前を入力させる →関数に渡す aisatu 関数 戻り値を 受け取って表示 「どうでしたか?」 と表示 関数定義 終了 CITIO aisatu 関数開始 ← 受け取った引数 atak 「Hello!」を合体 a を戻り値 aisatu 関数終了

回答募集中 回答数: 0
情報:IT 高校生

教えて欲しいです🙇‍♀️🙇‍♀️🙇‍♀️🙇‍♀️🙇‍♀️

番氏名 · Question33 変数にデータを入れるとき、 [] (括弧)にまとめて代入し、リスト(配列) として定義することが できます。 変数の大きさを知りたい場合には、 len() を使います。また、リストはリスト内の値を入 れるといった処理も行えます。 リスト 書式 説明 len(). 書式 説明 6 変数の値の交換! 書式 変数1, 変数2 = 変数2, 変数 1 説明 年 変数 = [データ 1, データ 2, データ 3, …] 1つの変数の中に、 複数の数値や、 複数の文字列を格納するときの書き方。 文字列を格納す る場合には、各データをダブルクォーテーションやシングルクォーテーションで囲む必要が ある。 格納されたデータの一つ一つは要素と呼ばれる。 組 la = [5,8,4,3,6,9,2,1,7] print (a) #並べ替える前のリスト 3b = 4 for i in range(b): 5 c=i for j in range (i + 1,b): if a[c] > a[j]: (大きさの知りたい変数) 変数=len リストならデータの個数を知る。 結果は普通、 別の変数に格納する。 変数なら文字列、 変数の値を変数2に、 変数2の値を変数に入れ替える書き方。 リスト内のデータを比較して並べ替える操作を「選択ソート」 という。以下のプログラムの空欄を埋めて、選択ソートでリスト 内の9つの数字を昇順に並べ替えるプログラムを作りなさい。 1.olleHond T (#の文は入力しない) (ファイル名は「出席番号 93 名前」 で保存すること) 8 9 a[i], a[c] = 10 print (a) #並べ替えた後のリスト 実行例 [5, 8, 4,3, 6, 9, 2, 1,7] [1,2,3,4,5,6,7,8,9] リスト作成 Aceptos 開始 長さ判定 入替処理 リストの作成 リストαの表示 リストの個数 繰り返し (0からbの数まで ci の値 繰り返し (i+1 から b の数まで) a[c]> a[j] Yes c←jの値 繰り返し | a[i] と a[c] の値を交換 繰り返し リストの表示 終了 No.

回答募集中 回答数: 0
情報:IT 高校生

期末課題なのですがテストが無い分これで成績が決まってしまうのですが全く分かりません💦教えて欲しいです

■アルゴリズムとプログラミング (課題) 以下の課題に取り組み、 作成したファイルをデスクトップに保存し、PCの「課題提出全日制」 → 「2学年」 「自分のクラスのフォルダー」→「問題番号に対応したフォルダー」にドラッグアンド ドロップして提出しなさい。 (作成できたファイルのみ提出すること) ・Question ① マウスの移動量を表す単位で 「ミッキー」というものがある。 | ミッキーあたり0.254mm(ミリ メートル) である。 以下のプログラムの空欄を埋めて、キーボードからマウスの移動量をミッキーで 入力されたら、 cm (センチメートル) で表示されるプログラムを作りなさい。 (ファイル名は 「出席番号 q1 名前」 で保存すること) 1 a = float(input("マウスを何ミッキー動かしましたか?>")) 2b = 3. print("あなたは", b, "センチメートル動かしました。 ") 実行例 マウスを何ミッキー動かしましたか? >100 あなたは 2.54センチメートル動かしました。 • Question ② 製 以下のプログラムの空欄を埋めて、 「おはよう」, 「さよなら」 と言われたら挨拶を返すプログラム を作りなさい。 (ファイル名は「出席番号 92 名前」 で保存すること) 1 a=str(input("挨拶をしてください>")) 2 if a | "おはよう": print("コンピュータ:", a) "さよなら": print("コンピュータ:", a) 3 4 elifa 5 6 else: 7 実行例 挨拶をしてください > おはよう コンピュータ:おはよう print("コンピュータ:よくわかりません") 挨拶をしてください > さよなら コンピュータ: さよなら 挨拶をしてください > こんにちは コンピュータ: よくわかりません 開始 at 挨拶をしてください> aは "おはよう Yes おはよう 終了 No. は さよなら Yes さよなら No. よくわかりませ

回答募集中 回答数: 0
生物 高校生

生物の食物連鎖とかの問題だと思うんですけど誰かわかる方いますか??? 英語すみません💦

hhmi Biolnteractive Some Animals Are More Equal than Others: Trophic Cascades and Keystone Species Mean Leaf Area per Plant Over 18 Months without beetle with beetle Leaf Area per Plant (cm²) Control Ecology 2400 2200 2000 1800 1600 1400 1200 1000 800 Experimental 0 T 2 www.BioInteractive.org 8 10 12 14 16 Months After Start of Experiment 4 6 Refer to the figure to answer questions 12 through 17. 12. For both the plots with the beetles added and the control plots, state the mean tree leaf area per plot that the scientists recorded after running the experiment for 18 months. The mean tree leaf area per plot that the Scientist recorded after running the experiment for 18 months wit the beetles added is 1.7m², S 2.2m² 13. Compare the trends in mean tree leaf area per plot for both the plots with the beetles added and the control plots over the 18 months of the experiment. The area of the control plat for thinoceros beetles has d has increased at a nearly constant rate, the other is a gradua decrease at first, then a sudden decrease, and finally a dradua 18 Figure 2. Mean leaf area per tree. Initial measurements were taken before (0 to 2 months) and after (7 to 18 months) beetles were added to 40 of 80 plants. The light gray round markers represent measurements taken of the control plots, to which beetles were not added. The black square markers represent measurements taken of the experimental plots, to which beetles were added. Measurements were made on all leaves to calculate the mean leaf area per plant. Error bars represent standard error of the mean. 14. Draw two diagrams that show the food chains for both the experimental and control plots. Include increase. interactions among predatory beetles (if present), ants, caterpillars, and piper plants. Revised January 2018 Page 4 of 5

回答募集中 回答数: 0