1D0-441 Exam Questions
123 real 1D0-441 exam questions with expert-verified answers and explanations. Page 1 of 3.
- Question #1
A foreign key maps to a:
- Question #2
Consider the relation shown in the exhibit. Which of the following SQL statements would properly add information for a new employee?
- Question #3
Which pair of relational algebraic operations requires union compatibility?
- Question #4
Which static member of the ResultSet class should be used to create an updatable result set?
- Question #5
Which method of the Statement interface could be used to delete data from a database?
- Question #6
Which JDBC interface is used to extract information about the database schema?
- Question #8
Consider the Entity-Relation diagram shown in the exhibit. When the logical database design phase is completed, which of the following is a valid DBDL description of the base relat...
- Question #9
What is the highest normal form of the relation(s) shown in the exhibit?
- Question #10
Consider the following domain description: domain Student_ID: integer domain Grade: fixed length character string length 1 To meet business needs, you must add enterprise constrain...
- Question #12
Which term describes one or more database operations that are executed as a single unit?
- Question #13
What is the highest normal form of the relation(s) shown in the exhibit?
- Question #14
Consider the following SQL statement: SELECT * FROM Orders WHERE Order_Date LIKE %02 ORDER BY Sales_Rep_No, Amount DESC; Using the Orders Relation shown in the exhibit, which of th...
- Question #15
Consider the following stored procedure: CREATE PROCEDURE showFees AS SELECT Fee FROM ACTIVITY WHERE Fee > 0 Which Java code segment will correctly utilize this stored procedure?
- Question #16
Which Statement interface methods are used to execute a SQL select query?
- Question #17
What is the purpose of the batch update feature in JDBC 2.0?
- Question #18
With regard to databases, what is normalization?
- Question #19
Consider the Information Engineering diagram in the exhibit showing the relations BUILDING and RESIDENT. What is the relationship between BUILDING and RESIDENT?
- Question #20
Consider the relations shown in the exhibit. Due to restructuring, the Sales department has been eliminated and the employees working in that department have been dismissed. All ID...
- Question #21
Consider the Information Engineering diagram shown in the exhibit. Building_ID, R_ID, Room_Count and Room_Num are integer numbers, whereas Bldg_Name and Res_Name are represented by...
- Question #23
Which relational algebraic operation is used to select specific columns (attributes) from a relation?
- Question #26
Consider the following code fragment: 1. Statement s = conn.createStatement(); 2. 3. s.executeUpdate(CREATE TABLE MyTable ( + 4. ColumnA CHAR(5), + 5. ColumnB CHAR(5))); 6. 7. s.ex...
- Question #27
Which of the following best describes the information contained in the data dictionary (or system catalog)?
- Question #28
A government agency provides driving licenses for various types of motor vehicles. A requirement for a particular license may be possession of another type of motor vehicle license...
- Question #30
Consider the Project relation shown in the exhibit. Also consider the following SQL statement: DELETE FROM Project WHERE Cust_Name = Acme; Which of the following tables shows the P...
- Question #31
Consider the following relation definitions: domain s_id: integer domain grd: fixed length character string length 1 STUDENT_GRADE( Student_Number: s_id Grade: grd ) Primary Key St...
- Question #32
Which statement represents a valid batch update command?
- Question #33
Which of the transaction ACID properties are violated when lost updates occur?
- Question #35
Your company must choose which type of database to use for a new project. Which of the following lists three characteristics of file-based database systems?
- Question #36
Consider the following code fragment: 1. PreparedStatement ps = conn.prepareStatement( 2. SELECT * FROM Orders WHERE + 3. Customer_No = ?); 4. 5. ps.setShort(0, 1001) 6. 7. ResultS...
- Question #37
Which JDBC driver solution is most likely to complicate deployment and compatibility?
- Question #38
Which of the following best describes the ON UPDATE CASCADE referential integrity constraint?
- Question #39
Which of the following statements is true of JDBC URLs?
- Question #41
Which three pieces of information did E.F. Codd describe as necessary to retrieve a data value from a relational database?
- Question #42
Which method of the SQLException class returns a vendor-specific error code?
- Question #43
What is a virtual table?
- Question #44
Which of the following best describes a composite key?
- Question #45
Consider the following statement: CREATE DOMAIN COUNT AS INTEGER CHECK (COUNT <= 600 And COUNT > -1); The CHECK clause in this statement is an application of what?
- Question #46
Consider the following relation definition: STUDENT( Student_Number: integer NOT NULL Name: variable length character string length 20 NOT NULL) Primary Key Student_Number HOUSING(...
- Question #47
Consider the Recreation Relation shown in the exhibit. You need to apply a SQL statement to the Recreation Relation that will return the following data: Bowling Racquetball Handbal...
- Question #48
Consider the following code fragment: 1. Statement s = conn.createStatement(); 2. conn.setAutoCommit(false); 3. 4. s.executeUpdate(INSERT INTO Orders VALUES (+ 5. 2029, '05-25-03',...
- Question #49
Consider the relations shown in the exhibit. Which of the following SQL statements would input data from the Customers relation into the Atlanta_Customers relation?
- Question #50
Assuming that conn references a valid and open connection to the database, which code segment will insert values into the Employees relation?
- Question #51
What is the highest normal form of the relation(s) shown in the exhibit?
- Question #52
Consider the following code fragment: 1. PreparedStatement ps = conn.prepareStatement 2. (INSERT INTO Orders VALUES (?, ?, ?, ?, ?)); 3. 4. ps.setInt(1, 4000); 5. ps.setString(2, 0...
- Question #53
Consider the following code fragment: 1. PreparedStatement ps = conn.prepareStatement( 2. SELECT Order_Date, Customer_No + 3. FROM Orders WHERE + 4. Customer_No = ?); 5. 6. ps.setS...
- Question #54
Consider the Information Engineering diagram shown in the exhibit. Which DBDL definition best describes this diagram?
- Question #56
Consider the following information that describes a database: domain s_id: integer domain grd: fixed length character string length 1 STUDENT_GRADE( Student_Number: s_id NOT NULL G...
- Question #57
Consider the following code fragment: 1. PreparedStatement ps = conn.prepareStatement( 2. SELECT Order_Date, Customer_No + 3. FROM Orders WHERE + 4. Customer_No = ?); 5. 6. ps.setS...
- Question #58
Consider the following code fragment: 1. Statement s = conn.createStatement(); 2. conn.setAutoCommit(false); 3. 4. s.executeUpdate(INSERT INTO Orders VALUES (+ 5. 2029, '05-25-03',...
- Question #59
Which type of relational integrity is violated if a primary key in a database has a null value?