Добавил:
Опубликованный материал нарушает ваши авторские права? Сообщите нам.
Вуз: Предмет: Файл:
Скачиваний:
20
Добавлен:
26.05.2023
Размер:
274.46 Кб
Скачать

CS403: Certificate Final Exam: Attempt review | Saylor Academy

https://learn.saylor.org/mod/quiz/review.php?attempt=1608448&cmid=23178&showall=1

Question 37

 

Which of the following terms describes one attribute (or field) that determines the value of another attribute?

 

 

Incorrect

 

 

 

0.00 points out

 

Select one:

of 1.00

 

a.

Foreign key

 

 

 

 

b.

Primary key

 

 

c.

Independent key

 

 

d.

Functional dependency

 

 

 

 

Question 38

Correct

1.00 points out of 1.00

Question 39

Incorrect

0.00 points out of 1.00

What is the difference between data definition language and data manipulation language?

Select one:

a. It is used to create tables, views, etc., and data manipulation language is only used for inserts

b. It is used for queries and data manipulation language is used for updating and deleting tables only

c. It is used to create the files that store tables whereas data manipulation language is used to update data

d. It is used to create tables, indexes, etc., whereas data manipulation language is used to query the database

Your answer is correct.

Which of the following is a data definition command?

Select one:

a. Insert b. Select

c. Update

d. Create table

Question 40

Correct

1.00 points out of 1.00

Assume that we have a table called student with the following columns: (sid,fname,lname,major)

What is wrong with this insert command?

insert into student ('s2234','John','Smith','Chemistry')

Select one:

a. It is missing a left parenthesis

b. It is missing a right parenthesis

c. It is missing a value before the parenthesis

d. There are not enough fields in the statement

11 of 16

4/27/22, 18:03

CS403: Certificate Final Exam: Attempt review | Saylor Academy

https://learn.saylor.org/mod/quiz/review.php?attempt=1608448&cmid=23178&showall=1

Question 41

 

Which of the following are constraints that can be used with the create table command?

 

 

Correct

 

 

 

1.00 points out

 

Select one:

of 1.00

 

a.

references, alias, check

 

 

 

 

b.

null, primary key, view of

 

 

c.

primary key, not null, unique

 

 

d.

primary key, default, between

 

 

 

 

Question 42

Correct

1.00 points out of 1.00

Which of the following is true about a select statement?

Select one:

a. It can only be used by itself.

b. It can be included as part of an insert only.

c. It can be included as part of an update but not as part of a delete.

d. It can be included as part of an update, delete, or insert statement.

Question 43

 

What is the delete statement used to do?

 

 

Incorrect

 

 

 

0.00 points out

 

Select one:

of 1.00

 

a.

Delete table rows that match a condition

 

 

 

 

b.

Truncate parts of a table that are too long

 

 

c.

Remove table columns that match a condition

 

 

d.

Insert a mark to indicate that a table is deleted

 

 

 

 

Question 44

Correct

1.00 points out of 1.00

Question 45

Correct

1.00 points out of 1.00

What would this statement produce for output?

select lname, fname from customer where state like '%M'

Select one:

a. Customers' last and first names who live in a state that ends with an M

b. Customers' last and first names who live in a state that begins with an M

c. a list of all customers in the table who live in a state that ends with an M

d. A list of all customers in the table who live in a state that begins with an M

Which of the following describes the order by clause?

Select one:

a. It is always the first part of an SQL select statement

b. It sorts the entire table by ordering the values of a column(s)

c. It sorts the result set from a query by ordering column values

d. It uses descending when the order for sorting is not specified

12 of 16

4/27/22, 18:03

CS403: Certificate Final Exam: Attempt review | Saylor Academy

https://learn.saylor.org/mod/quiz/review.php?attempt=1608448&cmid=23178&showall=1

Question 46

 

Which of the following is a SQL aggregate function?

 

 

Correct

 

 

 

1.00 points out

 

Select one:

of 1.00

 

a.

average

 

 

 

 

b.

avg

 

 

c.

mean

 

 

d.

sqrt

 

 

 

 

 

 

 

 

Question 47

 

What is the SQL 'group by' statement used to do?

 

 

Correct

 

 

 

1.00 points out

 

Select one:

of 1.00

 

a.

Sort the results in group order

 

 

 

 

b.

List the rows ordered by group

 

 

c.

List a single row for each group

 

 

d.

Insert new records into the table

 

 

 

 

 

 

 

 

Question 48

 

Which type of join returns all rows in the left table regardless of whether there are matches in the right table?

 

 

Correct

 

 

 

1.00 points out

 

Select one:

of 1.00

 

a.

Hash join

 

 

 

 

b.

Full outer join

 

 

c.

Left outer join

 

 

d.

Right outer join

 

 

 

 

13 of 16

4/27/22, 18:03

CS403: Certificate Final Exam: Attempt review | Saylor Academy

https://learn.saylor.org/mod/quiz/review.php?attempt=1608448&cmid=23178&showall=1

Question 49

Correct

1.00 points out of 1.00

You are given the following tables:

Course

CourseID

Description

Credits

 

 

 

CS101

Computer Science I

3

 

 

 

CS201

Elementary Data Structures

3

 

 

 

ENGL210

Technical Writing

3

 

 

 

Registration

SID

CourseID

SemID

Instructor

Grade

 

 

 

 

 

282712

ENGL210

201701

H. Zacny

B+

 

 

 

 

 

362112

CS101

201701

K. Ross

C

 

 

 

 

 

What would the following SQL Select statement produce for output? select course.description, registration.SID,registration.grade

from registration

right join course

on registration.courseID = course.courseID

Select one:

a. Computer Science I 362112 C

b. Computer Science I 362112 C

Technical Writing 28212 B+

c. Computer Science I 362112 C

 

 

Elementary Data Structures null null

Technical Writing 28212 B+

d. No results due to syntax error

Your answer is correct.

14 of 16

4/27/22, 18:03

CS403: Certificate Final Exam: Attempt review | Saylor Academy

https://learn.saylor.org/mod/quiz/review.php?attempt=1608448&cmid=23178&showall=1

Question 50

Correct

1.00 points out of 1.00

You are given the following tables:

Course

CourseID

Description

Credits

 

 

 

CS101

Computer Science I

3

 

 

 

CS201

Elementary Data Structures

3

 

 

 

ENGL210

Technical Writing

3

 

 

 

Registration

SID

CourseID

SemID

Instructor

Grade

 

 

 

 

 

282712

ENGL210

201701

H. Zacny

B+

 

 

 

 

 

362112

CS101

201701

K. Ross

C

 

 

 

 

 

652123

CS403

201603

K. Ross

A

 

 

 

 

 

Student

SID

Lname

Fname

Major

 

 

 

 

986223

Smith

Janet

Chemistry

 

 

 

 

362112

Williams

Henry

Computer Science

 

 

 

 

282712

Jones

John

English Literature

 

 

 

 

What would the following SQL Select statement produce for output?

select course.Description,registration.SID,registration.grade, student.lname

from registration

inner join course

on registration.courseID = course.courseID

inner join student on registration.sid = student.sid

Select one:

a. No output, since this query cannot be performed

b. Technical Writing 282712 B+ Jones

c. Technical Writing 282712 B+ Jones

Computer Science I 362112 Williams C

d. Technical Writing 282712 B+ Jones

 

 

Computer Science I 362112 Williams C

Null 652123 Null A

Your answer is correct.

15 of 16

4/27/22, 18:03

CS403: Certificate Final Exam: Attempt review | Saylor Academy

https://learn.saylor.org/mod/quiz/review.php?attempt=1608448&cmid=23178&showall=1

Previous

 

...Jump to

 

 

 

16 of 16

4/27/22, 18:03

Соседние файлы в папке тест selory