学年

教科

質問の種類

TOEIC・英語 大学生・専門学校生・社会人

テストの過去問に解答がなく、答えがわからないので英語得意な方教えていただきたいです🤲明日がテストなので早めに解答をいただけるとありがたいです🙇‍♀️

Ⅱ 次の英文を読み, 問に答えよ。 2.2.2. Consumer test それぞれ異なる容量の1つのキューブ (10) Consumers were recruited among workers from the Instituto de Agroquímica y Tecnología de Alimen- tos, Valencia, Spain. Thirty persons, 22-60 years old, approximately half female, half male, who consumed apples frequently, were used for the study. Consumers received one cube from each different storage time fol-following lowing a balanced complete block experimental design. For each sample they had to score global acceptability of the product using a nine-box) scale labeled on the left with “dislike very much', in the middle with indiffer- ent" and on the right with "like very much". They also answered the question “Would you normally consume this product?" with a yes or a no (Hough et al., 2003; Gámbaro et al., 2004a,b). ロロロ B 問1. 本文中に記載されている試験方法は, 何を何するかどうかを問うものである。 "( A ) ( )する場合の試験” と答える場合に, (A) と(B)に当てはまる単語を英語で答えよ。 問2. 何人のパネルに試験しているのかを答えよ。 問3.ここで示されている食品の官能評価法をもっとパネルが評価しやすく回答しやす いようにするには, どうしたらよいか答えよ。 問4. パネルの男女比はどの程度であると述べているか答えよ。 5. この英文に書かれている内容に沿った官能評価シートを作成せよ。 以上

回答募集中 回答数: 0
TOEIC・英語 大学生・専門学校生・社会人

英語の問題です。 教えて欲しいです🙇‍♀️

(2) I had my teeth 1 check 1( )に入る最も適切な語句を ① ~ ④から選びなさい。 (1) He went on speaking as if she ( 1 can't 2 hasn't ) there. Son 3 wouldn't ) by a dentist this morning. ult niles 3 checking wahiwon (青山学院大 ) ④weren't pomibinand (岩手医科大) 24 to check 2 checked (3) You should not keep any pets ( 1 after 2 unless ) you can take good care of them. 3 when (中央大) ④which 1 as 2 in ) all be correct. ②anytime (6) If the weather ( ①must have been (4) This town will change ( ) another ten years. (5) Those may not ( 1 absolute ) fine yesterday, I would have done the laundry. 2 is (7) Studying takes up a lot of my time during the week, ( ) little time for hobbies. (芝浦工業大) since 3 of (國學院大) 3 everything ④necessarily (関西学院大 ) ③ wasn't 4 had been (皇學館大) ①1 has left (8) Have you heard the rumors ( 1 that 2 what leaves leaving 4 left ) Susan has returned to this town? ③ which (麗澤大) ④ who 1 by (9) What was found in this experiment is ( 2 for (10)( ) what to say, she remained silent. ) great importance to researchers. 3 in (立命館大) 4 of (愛知工業大) 1 Not knowing 2 Being not knowing ③No knowing ④Knowing no (11) I tried to ( 1 have 2 make ) her to tell me what happened last night. 3 get (十文字学園女子大) 4 let How gimon and (12) Do what you like, as ( 1 far 2 much B in 1 in 2 with bnat am ) as you leave me alone. 3 long (13) This tool is dangerous. Please read the instructions ( (14) If I hadn't drunk so much last night, I ( 1 feel (15) I wish you 1 attend (16) If I ( 1 were ) 2 will feel ) the party yesterday. 2 were attending ) much better than I do right now. ③ would feel ③ have attended (中京大) 4 would have felt (目白大) ④had attended ) in your situation, I would be more careful about what you post on social media. (フェリス女学院大) 4 many ) care. (聖隷クリストファー大) at ④take gwol 3 will be (南山大) ④would be

回答募集中 回答数: 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
TOEIC・英語 大学生・専門学校生・社会人

至急お願いします!

次の1~5の日本文の意味を表すように、 語を補いなさい。 )内の語(句)を使って、下線部分に適切な英 1. 彼女は給油するためにガソリンスタンドに立ち寄った。 (car, fill up) 《英語》She stopped 2. 私は日本に私の服を送るための箱を探している。 (clothes, box, Japan, send) 《英語》I am looking for 3.彼はファイナンシャルプランナーになるために勉強している。 (become, financial, study) 《英語》 He is 4. 彼女は子供に料理を教えることのできる場所を借ります。 (cooking, kids, place, teach) 《英語》 She rents 5. キャシーは彼に仕事を引き継いでもらいたがっていた。 (business, take over) 《英語》 Cathy wanted at a gas station. planner. Ⅱ 次の英文を読んで、 下記のペアワークやグループワークに取り組みましょう。 ◎ CD 70 DL 70 A good work-life balance enables us to divide our energy between our home and work priorities. It also enables us to reduce stress and anxiety both at work and at home. In an effort to strike an optimum work-life balance, I struggle to find anything like a balance between work and doing something for myself at all. I want to travel to places in Asia to diversify my life. I hope to stay physically and mentally fit. I hope that my life will not always be as busy as it is right now. Notes 1. enable O to do 「○が…することを可能にする」 2. divide ○ ○ を分ける」 3. priority 「優先事項」 4. reduce 「○ を減らす」 5. optimum 「最適な」 6. struggle to do 「・・・ しようと努力する」 7. at all 「とにかく」 8. diversify ○ ○ に厚みを持たせる」 9. stay C 「Cのままでいる」 Pair/Group Work ペアまたはグループになって質問をしたり、答えたりしましょう。

回答募集中 回答数: 0
1/6