学年

教科

質問の種類

情報 大学生・専門学校生・社会人

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 Two n-dimensional coordinate systems & and ŋ in S overlap smoothly provided the functions on¯¹ and ŋo §¯¹ are both smooth. Explicitly, if : U → R" and ŋ: R", then ŋ 1 is defined on the open set ε (ur) → ° (UV) V and carries it to n(u)—while its inverse function § 4-1 runs in the opposite direction (see Figure 1). These functions are then required to be smooth in the usual Euclidean sense defined above. This condition is con- sidered to hold trivially if u and do not meet. Č (UV) R" Ĕ(U) n(UV) R" S n(v) Figure 1. 1. Definition. An atlas A of dimension n on a space S is a collection of n-dimensional coordinate systems in S such that (A1) each point of S is contained in the domain of some coordinate system in, and (A2) any two coordinate systems in ✅ overlap smoothly. An atlas on S makes it possible to do calculus consistently on all of S. But different atlases may produce the same calculus, a technical difficulty eliminated as follows. Call an atlas Con S complete if C contains each co- ordinate system in S that overlaps smoothly with every coordinate system in C. 2. Lemma. Each atlas ✅ on S is contained in a unique complete atlas. Proof. If has dimension n, let A' be the set of all n-dimensional coordinate systems in S that overlap smoothly with every one contained in A. (a) A' is an atlas (of the same dimension as ✅).

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

ExcelのVBAの問題なのですが、コマンドボタンのデータ参照の④の問題が分からないので、教えてください。

総合演習ⅡI (2) コマンドボタン オブジェクト名: 参照 表示文字列 : データ参照 クリックしたら以下の処理をするイベントプロシージャを記述 ① テキストボックス英語、数学、国語の文字列に空欄文字 ( ''')を代入 ② Range 型オブジェクト変数結果を宣言 ③ ワークシート試験結果の受験番号データからテキストボックス受験番号の文字列を完全一致で検索し、 検索結果を結 果に代入 ④ 結果がNothingの場合はメッセージダイアログ (メッセージ : 該当データがありません、 ボタン : OKのみ、 アイコン : 警 告)を表示し(戻り値は使用しない)、 それ以外は該当データの英語、数学、国語の得点 (対象セルの値を参 照) をテキストボックス英語、数学、国語の文字列に代入 ※ヒント: Offsetを用いて対象セルを指定 オブジェクト名: 更新 表示文字列 : データ更新 クリックしたら以下の処理をするイベントプロシージャを記述 ① Range 型オブジェクト変数結果を宣言 ワークシート試験結果の受験番号データからテキストボックス受験番号の文字列を完全一致で検索し、 検索結果を結 果に代入 結果がNothingの場合はメッセージダイアログ (メッセージ : 該当データがありません、 ボタン: OK のみ、 アイコン : 警 告)を表示し(戻り値は使用しない)、それ以外はテキストボックス英語、数学、国語の文字列を該当データの英語、 数学、国語の得点 (対象セルの値)に代入 入試データ ※ヒント: Offsetを用いて対象セルを指定 受験番号 英語 JMS001 89 JMS002 58 JMS003 82 JMS004 98 JMS005 89 数学 69 96 60 77 88 国語 73 73 79 89 94 検索する受験番号 英語の得点 70 JMS003 数学の得点 80 データ参照 国語の得点 90 データ更新 × Microsoft Excel データがありません _OK

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

英語がとっても苦手で何が書いてあるか全く分かりません。 明日の朝提出しなければならないのでどなたか解いてください。お願いしますお願いします。

44 15 20 25 30 Lecturer 10 Class times Office hours* Classroom Textbook Reading Read the following passage and answer the questions. English Writing Core I 43 ► This course is for foreign students to learn basic academic writing skills. The course is divided into three classes according to the results of a placement test. ► The placement test is on Tuesday, September 2 at 9:00 in Bldg. 10 Room 1. ▸ After the test, students must visit the student office by September 9 to register. This is a half-year course, and students who have completed one level can enter the next level in the spring term without taking the placement test. Level 1 Level 2 Level 3 Prof. Smith Friday 9:00 a.m.-10:30 a.m. Friday 10:45 a.m.-12:00 p.m. Bldg. 12 Room 1 "Advanced Writing Strategies Level 1: This course introduces students to the basics of English academic writing. Students will begin by learning how to write a coherent paragraph and then apply this skill to writing a five-paragraph essay. They will learn how to create an effective thesis statement, topic sentences, introduction and conclusion, as well as how to organize supporting sentences logically. Students are required to submit one single-paragraph composition, one essay outline and two essays on pre-selected topics at the end of the course for assessment. | 43-45 英 Green Valley University, Autumn Semester Level 2: In this course students focus on gaining an in-depth understanding of the form and function of *argumentative writing and compare and contrast representative essays. Emphasis is placed on writing effective thesis statements and developing paragraphs. Students also learn effective citation, paraphrasing and summarizing skills. Reading academic articles to improve their writing style and vocabulary is a key feature of this course. Assessment is based on two short essays and a paraphrasing and summarizing task. 4 Bldg. 19 pre-selected 24 paraphrase Prof. Simpson Prof. Wheeler Wednesday 9:00 a.m.-10:30 a.m. Monday 10:30 a.m.-12:00 p.m. Wednesday 10:45 a.m-12:00 p.m. Monday 1:20 p.m.-2:50 p.m. Bldg. 10 Room 1 "Have Fun Writing" Bldg. 10 Room 5 "Essay Writing Skills" Level 3: For more experienced students, this course aims to develop advanced essay. writing skills. Emphasis is placed on taking a position in an argumentative essay, researching, evaluating sources and logically developing ideas throughout the essay Students will also learn how to effectively integrate a range of sources into their writing. Assessment is based on one long essay on an academic topic chosen by the student. (379 words) * office hours: 大学の研究室などで教員に面談が可能な時間帯 thesis statement: (エッセイの) 主題文 argumentative: Words & Phrases 32 9 Prof. 20 assessment 29 take a position 15 coherent 21 in-depth 31 integrate A into B 19 composition 24 citation 31 a range of~ Read the passage and put T (True) or F (False) in the brackets. (各2点) (1) Students cannot choose the level of the course they want to take. (2) Students who have finished the level 2 course can enter the level 3 course without taking a test. ( ) (3) All students, whichever level they are taking, must submit at least one essay on a topic chosen by the student for assessment. ) 2 Questions Answer the following questions. [1] Choose one word which has the same pronunciation as the underlined part of the following word from the passage. (4点) thesis a. beneath b. breathe c. worthy d. smooth [2] Complete the answer to the following question. "What is a placement test?" "It is a test to [3] Hiroshi wants to see the lecturer of the Level 2 course to ask some questions. Tell him what to do to see the lecturer. (6点) [4] Choose the suitable word for each blank. (1) Level 1 students focus on how to write logical and well paragraphs. a. devised b. organized c. known (2) Level 3 students have to make their opinion essay. a. correct b. decent c. clear [5] Choose the suitable phrase for the blank. "Level 2 students are required to fully understand a. what argumentative writing is b. how important it is to write an effective thesis statement c. what the basic structure of English academic writing is d. how argumentative writing is evaluated 3 Listening Quiz (1) a. Visit the lecturer at the specified time. b. Go to Room 1 in Building 10 by September 9. d. spoken d. different (5点) c. Buy the textbook during the specified period. d. Register at the student office by the closing day. (2) a. To learn how to organize supporting sentences logically. b. To improve their writing style and vocabulary. c. To create an effective thesis statement. d. To develop ideas logically throughout the essay. (各4点) Listen to the recording and choose the best option. in an argumentative (5点) 45 回 (各3点) 33

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

文章を読んで上の1〜4の問題を解くものです。 分からないのでお願いします

3. Answer the following questions. 1 What is the difference between UNIX and Linux? 2 3 4 Choose one of the words in italics in the text. What is the definition of the word you have chosen? What are the three levels of a Linux system? What are the two main functions of the kernel? [Reading Text] UNIX was initially developed by researchers at Bell Labs in the 1970s. Today, UNIX and its variants are widely used mainly on servers. By far, the most well- known UNIX-like operating system is Linux. Linux is available in different distributions which include the Linux kernel and different collections of software. These distributions have various user interfaces, many experienced users preferring the command-line interface, or shell. Linux distributions include a range of software including text editors. memory. While the mechanics of Linux and other Unix operating systems are complicated, the components of a Linux system can be grouped into three levels. The lowest level is the hardware, such as Central Processing Unit (CPU) and The next level is the kernel. It enables communication between hardware and software, by providing instructions to the CPU and other hardware. The programs that are running on the system, or processes, make up the top level known as the user space. Processes in user space generally only have access to a restricted amount of memory and operations, this is called user mode. The kernel runs in kernel mode which allows it unrestricted access to hardware resources. The kernel provides functions such as process management and memory management. A computer only has limited Random Access Memory (RAM) and processor cores. Process management allows the system to run multiple programs (processes) at the same time even if the CPU can only execute only a few processes at a time. Memory management allows applications to share the system's memory while avoiding potential issues such as memory leak. Included with the kernel are device drivers that provide an interface for applications to communicate with hardware, such as hard drives. System calls allow user processes to access features that are executed at kernel mode, for example creating new processes.

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

この1〜4の問題お願いします🙏🏼🙏🏼

3. Answer the following questions. 1 What is the difference between UNIX and Linux? 2 3 4 Choose one of the words in italics in the text. What is the definition of the word you have chosen? What are the three levels of a Linux system? What are the two main functions of the kernel? [Reading Text] UNIX was initially developed by researchers at Bell Labs in the 1970s. Today, UNIX and its variants are widely used mainly on servers. By far, the most well- known UNIX-like operating system is Linux. Linux is available in different distributions which include the Linux kernel and different collections of software. These distributions have various user interfaces, many experienced users preferring the command-line interface, or shell. Linux distributions include a range of software including text editors. memory. While the mechanics of Linux and other Unix operating systems are complicated, the components of a Linux system can be grouped into three levels. The lowest level is the hardware, such as Central Processing Unit (CPU) and The next level is the kernel. It enables communication between hardware and software, by providing instructions to the CPU and other hardware. The programs that are running on the system, or processes, make up the top level known as the user space. Processes in user space generally only have access to a restricted amount of memory and operations, this is called user mode. The kernel runs in kernel mode which allows it unrestricted access to hardware resources. The kernel provides functions such as process management and memory management. A computer only has limited Random Access Memory (RAM) and processor cores. Process management allows the system to run multiple programs (processes) at the same time even if the CPU can only execute only a few processes at a time. Memory management allows applications to share the system's memory while avoiding potential issues such as memory leak. Included with the kernel are device drivers that provide an interface for applications to communicate with hardware, such as hard drives. System calls allow user processes to access features that are executed at kernel mode, for example creating new processes.

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

固体電解質のイオン伝導度に関する質問です。 Na-β"アルミナを実験で使用しています。β"-アルミナ内のNa+移動がどのくらいの速度で行われているのかが知りたいという状況で、イオン伝導度のデータはあるのですが、単位が(Ω・cm)^(-1)のようなもので、どう扱えば単位時間... 続きを読む

PROPERTIES OF ionotec BETA"-ALUMINAS Property Phase content, % beta" Porosity,% Maximum pore size (um) Maximum grain size (um) Bending strength (MPa) Strength Weibull factor Fracture toughness (MPa m³) Ionic conductivity (ohm cm)-¹ 25°C 200°C 300°C 400°C Thermal expansion coefficient 0-500°C (x 10-6) 500-1000°C Part Number A1 A2 H1 B1 B2 C2 14 Berkeley Court Manor Park Runc orn For further details please contact: lonotec Ltd Cheshire WA7 1TQ England Na-beta" 90-95 1-2 5 20 70 105 140 100 220 220 250-300 8-13 2-3 0.002 0.092 0.24 0.38 7.2 8.6 ionotec manufactures a range of tubular shapes of standard dimensions given below. Flat discs and rectangular plates can be manufactured in any size in the range 10-70 mm across and 0.5-3.0 mm thickness. Ag-, Pb-, Sr- and Ba-conductive versions are also available. K-beta" 85-90 2-3 8 20 250-300 8-13 0.0005 0.021 0.053 0.10 7.45 8.5 Length Internal Minimum Maximum (mm) diameter thickness thickness (mm) (mm) (mm) 6.5 0.5 1.5 13 0.5 1.5 20 1 28 1 29 1 52 2 2 2 2 2 Telephone: +44(0)-1928-579668 Fax: +44(0)-1928-579627 e-mail: info@ionotec.com Web: www.ionotec.com

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

固体電解質のイオン伝導度に関する質問です。 Na-β"アルミナを実験で使用しています。β"-アルミナ内のNa+移動がどのくらいの速度で行われているのかが知りたいという状況で、イオン伝導度のデータはあるのですが、単位が(Ω・cm)^(-1)のようなもので、どう扱えば単位時間... 続きを読む

PROPERTIES OF ionotec BETA"-ALUMINAS Property Phase content, % beta" Porosity,% Maximum pore size (um) Maximum grain size (um) Bending strength (MPa) Strength Weibull factor Fracture toughness (MPa m³) Ionic conductivity (ohm cm)-¹ 25°C 200°C 300°C 400°C Thermal expansion coefficient 0-500°C (x 10-6) 500-1000°C Part Number A1 A2 H1 B1 B2 C2 14 Berkeley Court Manor Park Runc orn For further details please contact: lonotec Ltd Cheshire WA7 1TQ England Na-beta" 90-95 1-2 5 20 70 105 140 100 220 220 250-300 8-13 2-3 0.002 0.092 0.24 0.38 7.2 8.6 ionotec manufactures a range of tubular shapes of standard dimensions given below. Flat discs and rectangular plates can be manufactured in any size in the range 10-70 mm across and 0.5-3.0 mm thickness. Ag-, Pb-, Sr- and Ba-conductive versions are also available. K-beta" 85-90 2-3 8 20 250-300 8-13 0.0005 0.021 0.053 0.10 7.45 8.5 Length Internal Minimum Maximum (mm) diameter thickness thickness (mm) (mm) (mm) 6.5 0.5 1.5 13 0.5 1.5 20 1 28 1 29 1 52 2 2 2 2 2 Telephone: +44(0)-1928-579668 Fax: +44(0)-1928-579627 e-mail: info@ionotec.com Web: www.ionotec.com

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