Last Updated on February 21, 2016 by InfraExam
Introduction to Linux II Chapter 3 Exam Answer
PRESSEXAM.COM had tried to collect all chapter exam from candidate who has already taken exam. There are 24 questions in Introduction to Linux II Chapter 3. Our team has modified and corrected all answers with 100% score before we published on this page. In Introduction to Linux II Chapter 3 exam, you should review all questions again and again before go to take online exam with NDG system.
-
Question ID 1374
The acronym SQL stands for:
- System Query Language
- Structured Query Language
- Systematic Query Level
- Structured Qualitative Language
-
Question ID 1376
Data manipulation statements cannot be used for:
- Defining tables and views
- Viewing data from tables
- Updating data in tables
- Deleting one or more records
-
Question ID 1377
SQL statements must be capitalized for error-free execution.
True or False?
- True
- False
-
Question ID 1378
SQL statements must be terminated with a:
- Semicolon ;
- Colon :
- Exclamation point !
- Comma ,
-
Question ID 1379
Which of the following is not an open source database program?
- SQL Server
- MySQL
- SQLIte
- Postgres
-
Question ID 1380
One employee can work on multiple projects. Similarly, a project can have more than one employee assigned to it. This is an example of a:
- One-to-many relationship
- Many-to-one relationship
- One-to-one relationship
- Many-to-many relationship
-
Question ID 1381
The database administrator decides to break one large employee table into two parts. The first table, employee_master, contains selected key information that does not change over time. The second table, employee_details, contains data that is considered optional. The relationship between employee_master and employee_details would most likely be a:
- One-to-many relationship
- One-to-one relationship
- Many-to-many relationship
- Many-to-one relationship
-
Question ID 1382
Records represent a group of information about an object. Records are represented as __________ in a database table.
- Rows
- Columns
-
Question ID 1384
In the case of a many-to-many relationship between two tables, a third table is not required to simplify the situation into two separate one-to-many relationships.
True or False?
- True
- False
-
Question ID 1385
Identify the correct Data Definition statement from the list below:
- UPDATE statement
- CREATE TABLE
- INSERT statement
- DELETE statement
-
Question ID 1386
The INSERT statement can add only one record at a time.
True or False?
- True
- False
-
Question ID 1387
The following SQL command is run:
UPDATE people SET LastName=”Albert”;
What is the problem with this statement?
- Since there is no WHERE clause, it sets the last name of all the people in table
- Syntax is incorrect, resulting in an error message
- Data type has to be specified for LastName
- Table name people should be capitalized
-
Question ID 1389
Which of the following statements INCORRECTLY describes the WHERE clause?
- Used to reduce the result set
- Can be used with the UPDATE, SELECT and DELETE statements
- Wildcards cannot be used
- NOT operator can negate the value of a comparison
-
Question ID 1390
It is risky to use a DELETE statement without a WHERE clause because:
- It will remove the primary key from the table
- It will remove all the tables in the database
- It will remove all the records in the table
- The performance of execution is slow
-
Question ID 1393
Refer to the following SQL statement and identify the type of query:
SELECT * FROM Projects WHERE ProjectID IN (SELECT ProjectID FROM PeopleProjects);
- Simple query
- Sub query
- Outer join
- Structured query
-
Question ID 1394
Which of the following should be used in order to display SQL results in ascending order of age?
- ORDER BY clause
- SORT BY clause
- JOIN statement
- WHERE clause
-
Question ID 1396
Which SQL statement is used to fetch data from a table in the database?
- INSERT
- SET
- FETCH
- SELECT
-
Question ID 1397
Which of the following is NOT a group value function in SQL?
- SUM
- AVG
- REPEAT
- COUNT
-
Question ID 1398
What does the following SQL command output?
SELECT * FROM Projects WHERE ProjectID LIKE “P*”;
- This displays all projects where ProjectID ends with P
- This displays all projects where ProjectID has two characters and the first one is P
- This displays all projects where ProjectID starts with P
- This displays all projects where ProjectID has two characters and the second one is P
-
Question ID 1399
Which of the following is TRUE about a primary key?
- Primary key column must be unique and cannot be NULL
- Primary key column can have same values more than once
- Primary key is similar to foreign key
- Primary key column cannot be of string type
-
Question ID 1400
Which of the following will insert a record into a table named employee with empid and empname as columns?
- INSERT INTO EMPLOYEE VALUES ( 101,’Joe’);
- INSERT EMPLOYEE VALUES ( 101,’Joe’);
- INSERT FROM EMPLOYEE VALUES ( 101,’Joe’);
- INSERT EMPLOYEE ( 101,’Joe’);
-
Question ID 1402
Which of the following is not a valid SQL keyword or SQL clause?
- INSERT
- SELECT
- INVERT
- UPDATE
-
Question ID 1403
Which of the following SQL clauses is used to delete data from a database table?
- DROP
- CLEAR
- REMOVE
- DELETE
-
Question ID 1404
RDBMS stands for:
- Relational Database Monitoring System
- Relational Database Management System
- Read Database Master System
- Real Data Management System