学年

教科

質問の種類

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

下線部(1)の文構造が分かりません。特に2行目の文構造が分かりません。強調のdoであることは分かりますが、その後のthat以降が関係詞?かすらも分からないので、誰か教えて下さい!

次の英文は1991年に出版された本からのもので、 研究分野としての「人工知 能」 (Artificial Intelligence) について述べています。 下線部(1)~(3)を日本語に訳 しなさい。 What is Artificial Intelligence (AI)? Just about the only characterization of Al that would meet with universal acceptance is that it involves trying to make machines do tasks which are normally seen as requiring intelligence. There are countless refinements of this characterization: what sort of machines we want to consider; how we decide what tasks require intelligence and so on. One of the most important questions concerns the reasons why we want to make machines do such tasks. AI has always been split between people who want to make machines do tasks that require intelligence because they want more useful machines, and people who want to do it because they see it as a way of exploring how humans do such tasks. We will call the two approaches the engineering approach and the cognitive-science respectively. (2) (1) approach The techniques required for the two approaches are not always very different. For many of the tasks that engineering AI wants solutions to, the only systems we know about that can perform them are humans), so that, at least initially, the obvious way to design solutions is to try to mimic what we know about humans. For many of the tasks that cognitive-science Al wants solutions to, the evidence on how humans do them is too hard to interpret to enable us to construct computational models, so the only approach is to try to design solutions from scratch" and then see how well they fit what we know about humans. The main visible difference between the two approaches is in (3) their criteria for success; an engineer would be delighted to have create something that outperformed a person; a cognitive scientist would regard it as a failure. -1- M7 (492-61

未解決 回答数: 1
情報 大学生・専門学校生・社会人

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