学年

教科

質問の種類

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

この長文問題の答えと解説をお願いします。

15 語数: 398 語 出題校 法政大 5 We are already aware that our every move online is tracked and analyzed. But you 2-53 couldn't have known how much Facebook can learn about you from the smallest of social interactions - a 'like'*. (1) Researchers from the University of Cambridge designed (2) a simple machine-learning 2-54 system to predict Facebook users' personal information based solely on which pages they had liked. E "We were completely surprised by the accuracy of the predictions," says Michael 2-55 Kosinski, lead researcher of the project. Kosinski and colleagues built the system by scanning likes for a sample of 58,000 volunteers, and matching them up with other 10 profile details such as age, gender, and relationship status. They also matched up those likes with the results of personality and intelligence tests the volunteers had taken. The team then used their model to make predictions about other volunteers, based solely on their likes. The system can distinguish between the profiles of black and white Facebook users, 15 getting it right 95 percent of the time. It was also 90 percent accurate in separating males and females, Democrats and Republicans. Personality traits like openness and intelligence were also estimated based on likes, and were as accurate in some areas as a standard personality test designed for the task. Mixing what a user likes with many kinds of other data from their real-life activities could improve these predictions even more. 20 Voting records, utility bills and marriage records are already being added to Facebook's database, where they are easier to analyze. Facebook recently partnered with offline data companies, which all collect this kind of information. This move will allow even deeper insights into the behavior of the web users. 25 30 (3) - Sarah Downey, a lawyer and analyst with a privacy technology company, foresees insurers using the information gained by Facebook to help them identify risky customers, and perhaps charge them with higher fees. But there are potential benefits for users, too. Kosinski suggests that Facebook could end up as an online locker for your personal information, releasing your profiles at your command to help you with career planning. Downey says the research is the first solid example of the kinds of insights that can be made through Facebook. "This study is a great example of how the little things you do online show so much about you,” she says. "You might not remember liking things, " but Facebook remembers and (4) it all adds up.", * a 'like': フェイスブック上で個人の好みを表示する機能。 日本語版のフェイスブックでは「いいね!」 と表記される。 2-56 2-57 2-58 36

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

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
1/14