学年

質問の種類

英語 高校生

英検2級writing 添削をしていただきたいです🙇‍♀️字が読みにくいかもしれません💦

2 ●以下の英文を読んで その内容を英語で要約し、解答欄に記入しなさい。 ●語数の目安は 45 語~ 55 語です。 ●解答欄の外に書かれたものは採点されません。 ●解答が英文の要約になっていないと判断された場合は、0点と採点されることがあります。 英文をよく読んで から答えてください。 In recent years, AI has become increasingly familiar in daily life. In particular, the introduction of AI systems into cars is attracting a lot of attention. Car manufacturers in Japan and other countries have been focusing their time and efforts on developing self-driving cars. Within the next few decades, they may become commonplace. What are the benefits of self-driving cars? First, by having an automated driving system control driving, the physical and mental burden on the driver will be significantly reduced. Also, there may be fewer traffic accidents because driving errors by drivers will be reduced. On the other hand, there are some concerns about self-driving cars. First, until self-driving cars are mass-produced, manufacturing costs are expected to be very high. Additionally, if the programs controlling self-driving cars are rewritten through hacking or other means, it may lead to accidents or crimes. Therefore, it is essential to ensure the security of the systems. 解答欄 Self-driving cars may become commonplace. It can reduce physical and mental burden on the driver and (20) be fewer traffic accidents. However. It costs are expected to be very high. Also if it hacking or other means, it may lead to accidents or crimes, so 43 it is essential to ensure the security of the systems. 110

未解決 回答数: 1
TOEIC・英語 大学生・専門学校生・社会人

今からこの問題のテストがあります! 答えを教えて頂きたいです!

I. mani"X" bnt Quiz 1al insmatste pniwallolantOpel llsw art no ftel mooooysterio Fill in the blanks with the appropriate words or phrases to match the following statement. 01. インターネットのない生活なんて想像もできない。 ) hardly imagine life without the Internet. ) 1 g to brossert) asyl as all anoutalbBQ rexland bed new pail nail art Innil bonteal V 30 ns ahenda sill lent benelque asinspo dT 80 nuzelmibe jut eg lon ed of ar leum and TO asamem Viimist lie yd have 02. コックピットは安全な場所どころではない。 The cockpit ( ) ( ) ( )( )( ) place. 03. 電話を切るやいなや、 また電話が鳴った。 No sooner ( ( oyoT yd ourpoind aew | 80 beaute all tudominib otomoomin bates Wo Hood art stelgmus al emot ansay wool 1.01 ) hung up than the phone rang again. 04. 愛というものは、言わば、心のための栄養である。LIGHmment na ro Love is, so ( ) ( ), a nutrient for the heart. bongenadyeing alt 05. 彼は毎晩誰かが事務所に残っていたらよいと提案した He ( ) that someone stay in the office every night. Vew art to to slam of soigston art live to draw all Co 06. 担保付きのローンから始めた方がよいと勧めたい。 I would ( ) that you start out with a secured loan. hom yde slevou a to poles conse of categ 07. 「ご用は承っておりますか」 「ありがとう。 ただ、 ぶらりとみているだけです」 "Are you (m) (i)?" "Thanks. I'm just browsing." nort 08. 先生が見えるまで、ロビーでお掛けになってお待ちになってください」 ) in the lobby while you wait for the doctor to arrive!" “Please be ( 09. パソコンがあれば、こんな手間はすべて省けますよ。 (パソコンを使えばこの手間はすべて省ける) Als) (c) you all this (c). A personal computer ( 10. 雨が激しく降っていたにもかかわらず、彼女は仕事に行った。 ) ( ) the heavy rain, she went to work. ( )( TO

回答募集中 回答数: 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
英語 高校生

こちらの回答であっているか確認お願いします! d.c.c.b.a

Questions 46--50 refer to the following invoice, e-mail and voucher. onnA FORESTS OFFICE SUPPLIES on Voucher Tel.: 289-467-8902 2 Baymax color printers for the price of 1. Invoice No.: 08-671-555 This voucher is valid until January 31. Bill to: Mr. John Scott FORESTS OFFICE SUPPLIES Units Unit Price Amount Description $199.99 $399.98 $149.94 2 Baymax color printer $24.99 $65.99 $3.99 6 CNG copy paper 3 $197.97 Lennox metal bookcases 8 $31.92 Millar transparent tape $779.81 $20.00 Sub Total 49. How much will the new invoice to charge? (A) $399.98 46. How much was John Scott charged? (A) $399.98 (B) $779.81 (C) $20.00 (D) $799.81 *f you have any questions about this invoice, please contact Jennifer Fairbanks. Shipping Total $799.81 (B) $599.82 (C) $779.81 (D) $799.81 OBC0 のBC0 From: John Scott 47. Who is most likely in charge of invoicesat Forests Office Supplies? 50. What will John Scott send with this e-mail? (A) A voucher (B) A printer To: fairbanks@forests.com Date: Jan 25 (A) John Scott (B) May Concern Subject: Invoice error (C) An invoice (D) A copy paper (C) Jennifer Fairbanks Dear Ms. Fairbanks, (D) Sandy Ridge のBC0 My name is John Scott, and I ordered some products from your online shop. I received the products and invoice, but there are some errors in the invoice. 48. What is the main purpose of this e-mail? (A) To complain about some products (B) To order more goods I received two color printers and the invoice states that the amount is $399.98, but I used a voucher. I will attach it to this e-mail for confirmation. The amount of the o (C) To reporta mistake in an invoice (D) To point out a mistake in calculation A6C0 Baymax color printer on the invoice is wrong. o) Please check your records and correct the error as soon as possible. Regards, John Scott

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

d.c.c.b.a であってますか? お願いします!

Questions 46--50 refer to the following invoice, e-mail and voucher. onnA FORESTS OFFICE SUPPLIES on Voucher Tel.: 289-467-8902 2 Baymax color printers for the price of 1. Invoice No.: 08-671-555 This voucher is valid until January 31. Bill to: Mr. John Scott FORESTS OFFICE SUPPLIES Units Unit Price Amount Description $199.99 $399.98 $149.94 2 Baymax color printer $24.99 $65.99 $3.99 6 CNG copy paper 3 $197.97 Lennox metal bookcases 8 $31.92 Millar transparent tape $779.81 $20.00 Sub Total 49. How much will the new invoice to charge? (A) $399.98 46. How much was John Scott charged? (A) $399.98 (B) $779.81 (C) $20.00 (D) $799.81 *f you have any questions about this invoice, please contact Jennifer Fairbanks. Shipping Total $799.81 (B) $599.82 (C) $779.81 (D) $799.81 OBC0 のBC0 From: John Scott 47. Who is most likely in charge of invoicesat Forests Office Supplies? 50. What will John Scott send with this e-mail? (A) A voucher (B) A printer To: fairbanks@forests.com Date: Jan 25 (A) John Scott (B) May Concern Subject: Invoice error (C) An invoice (D) A copy paper (C) Jennifer Fairbanks Dear Ms. Fairbanks, (D) Sandy Ridge のBC0 My name is John Scott, and I ordered some products from your online shop. I received the products and invoice, but there are some errors in the invoice. 48. What is the main purpose of this e-mail? (A) To complain about some products (B) To order more goods I received two color printers and the invoice states that the amount is $399.98, but I used a voucher. I will attach it to this e-mail for confirmation. The amount of the o (C) To reporta mistake in an invoice (D) To point out a mistake in calculation A6C0 Baymax color printer on the invoice is wrong. o) Please check your records and correct the error as soon as possible. Regards, John Scott

未解決 回答数: 1
1/4