Introduction to Linux II Chapter 3

Last Updated on April 3, 2018 by Admin

Introduction to Linux II Chapter 3 Exam Answer

CCNA7.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.

  1. Question ID 1374

    The acronym SQL stands for:

    • System Query Language
    • Structured Query Language
    • Systematic Query Level
    • Structured Qualitative Language
  2. 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
  3.  

  4. Question ID 1377

    SQL statements must be capitalized for error-free execution.

    True or False?

    • True
    • False
  5. Question ID 1378

    SQL statements must be terminated with a:

    • Semicolon ;
    • Colon :
    • Exclamation point !
    • Comma ,
  6. Question ID 1379

    Which of the following is not an open source database program?

    • SQL Server
    • MySQL
    • SQLIte
    • Postgres
  7.  

  8. 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
  9. 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
  10. Question ID 1382

    Records represent a group of information about an object. Records are represented as __________ in a database table.

    • Rows
    • Columns
  11.  

  12. 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
  13. Question ID 1385

    Identify the correct Data Definition statement from the list below:

    • UPDATE statement
    • CREATE TABLE
    • INSERT statement
    • DELETE statement
  14. Question ID 1386

    The INSERT statement can add only one record at a time.

    True or False?

    • True
    • False
  15.  

  16. 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
  17. 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
  18. 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
  19. 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
  20.  

  21. 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
  22. Question ID 1396

    Which SQL statement is used to fetch data from a table in the database?

    • INSERT
    • SET
    • FETCH
    • SELECT
  23. Question ID 1397

    Which of the following is NOT a group value function in SQL?

    • SUM
    • AVG
    • REPEAT
    • COUNT
  24. 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
  25. 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
  26. 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’);
  27. Question ID 1402

    Which of the following is not a valid SQL keyword or SQL clause?

    • INSERT
    • SELECT
    • INVERT
    • UPDATE
  28. Question ID 1403

    Which of the following SQL clauses is used to delete data from a database table?

    • DROP
    • CLEAR
    • REMOVE
    • DELETE
  29. Question ID 1404

    RDBMS stands for:

    • Relational Database Monitoring System
    • Relational Database Management System
    • Read Database Master System
    • Real Data Management System