Вы находитесь на странице: 1из 35

Question 1

Answer saved
Marked out of 1.00

Flag question

Question text

Which of the following joins are mutually exclusive.

Select one:
a. Left and Right Outer join
b. Inner join and Outer Join
c. Natural Join and Using clause
d. IN and Using clause
Clear my choice

Question 2
Answer saved
Marked out of 1.00

Flag question

Question text

SELECT employees.employee_id,
employees.lastname,employees.department_id,
departments.department_id,departments.location_id
FROM employees, departments
WHERE employees.department_id IN (50, 60, 90);

Select one:
a. The given statement is Outer Join
b. The given statement would cause Cartesian or Cross Join
c. The given statement is an Equijoin
d. The given statement is not a valid join condition or is incorrect
Clear my choice

Question 3
Answer saved
Marked out of 1.00

Flag question

Question text

Which of the following is not part of comparison condition used in multiple row
subquery.

Select one:
a. IN
b. ANY
c. =
d. ALL
Clear my choice

Question 4
Answer saved
Marked out of 1.00

Flag question

Question text

Supposed that table: Workers and Employees is consists of the following values.
What will be the output if the user uses this PL/SQL.
SELECT ID, LASTNAME, DEPARTMENT
FROM WORKERS
WHERE ID > (SELECT ID FROM EMPLOYEES WHERE STATUS = ‘Probi’);

Select one:
a. This will retrieve the record of Mortos and Santiago
b. This will retrieve the record of Subion, Mortos and Santiago
c. 0 rows are deleted in Workers table
d. No rows or 0 rows are Selected
Clear my choice

Question 5
Answer saved
Marked out of 1.00

Flag question

Question text
Refer to the table AUTHORS and COPY_AUTHORS (Note during the creation of
view the condition added is YR_PUBLISHED=2010). Supposed that the user
update the YR_PUBLISHED of book OS to from 2010 to 2010 as shown below
what is/are the possible output on both table and view?
UPDATE COPY_AUTHORS
SET YR_PUBLISHED = 2016
WHERE BOOK='OS';

Select one:
a. The record of book OS YR_PUBLISHED will be updated from 2010 to 2016 on
COPY_AUTHORS view only.
b. The record of book OS YR_PUBLISHED will be updated from 2010 to 2016 on
AUTHORS table only.
c. The record of book OS YR_PUBLISHED will be updated from 2010 to NULL
both on COPY_AUTHORS view and AUTHORS table.
d. The record of book OS will be removed in the COPY_AUTHORS view since its
YR_PUBLIHED is updated to 2016
Clear my choice

Question 6
Answer saved
Marked out of 1.00

Flag question

Question text
Based on the table EMPLOYEES, DEPARTMENTS and LOCATIONS.
From the given select statement below: What is/are the full name of employee
whose LOCATION_ID is equal to 1700?
SELECT (LASTNAME||','||FIRSTNAME) AS "FULL NAME", DEPARTMENT_ID,
DEPARTMENT_NAME, LOCATION_ID
FROM EMPLOYEES
NATURAL JOIN DEPARTMENTS;
 

Select one:
a. FAY, PAT and DAVIES, CURTIS
b. KOCHAR, NENA and LEX, DE HAAN
c. LORENTZ, DIANA
d. GIETZ, WILLIAM
Clear my choice

Question 7
Answer saved
Marked out of 1.00

Flag question

Question text

Supposed that table: Workers and Employees is consists of the following values.
What will be the output if the user uses this PL/SQL.
UPDATE WORKERS
SET DEPARTMENT = (SELECT DEPARTMENT FROM EMPLOYEES WHERE
DEPARTMENT =’HR’);
Select one:
a. There will be no changes on the department of employee ID number 105.
b. All Workers department will be set to NULL
c. All Workers department will be set to HRD
d. The department of employee with ID number 105 will be set to NULL
Clear my choice

Question 8
Answer saved
Marked out of 1.00

Flag question

Question text

Supposed that table: Workers and Employees is consists of the following values.
What will be the output if the user uses this PL/SQL.
UPDATE EMPLOYEES
SET LASTNAME = (SELECT LASTNAME FROM WORKERS WHERE
LASTNAME=’Soriano’)
WHERE ID=105;

Select one:
a. The values of Employee with ID number 105 will be deleted
b. The lastname of Cruz from Employees table will be set to NULL
c. The lastname of Cruz from Employees table will be set to Soriano
d. All Workers lastname will be set to NULL
Clear my choice

Question 9
Answer saved
Marked out of 1.00

Flag question

Question text

Supposed that table: Workers and Employees is consists of the following values.

What will be the output if the user uses this PL/SQL.


SELECT ID, LASTNAME, DEPARTMENT
FROM WORKERS
WHERE ID > (SELECT ID FROM EMPLOYEES WHERE STATUS = ‘Probi’);

Select one:
a. No rows or 0 rows are Selected
b. 0 rows are delete in Workers table
c. This will retrieve the record of Mortos and Santiago
d. This will retrieve the record of Subio, Mortos and Santiago
Clear my choice

Question 10
Answer saved
Marked out of 1.00

Flag question

Question text

This is used to quality ambiguous column when joining two or more tables.

Select one:
a. Column Prefixes
b. Table Alias
c. Column Alias
d. Table Prefixes
Clear my choice

Question 11
Answer saved
Marked out of 1.00

Flag question

Question text

A join condition used when a table has columns with match values.

Select one:
a. Cartesian Product
b. Self-Join
c. Cross Join
d. Natural Join
Clear my choice

Question 12
Answer saved
Marked out of 1.00

Flag question

Question text

Which of the following is the correct example of creating a subquery that will copy
all values from employees table to workers where job_id is equal to ST_CLERK;

Select one:
a. INSERT INTO WORKERS
(SELECT ALL FROM EMPLOYEES
WHERE JOB_ID = ‘ST_CLERK’;
b. INSERT INTO WORKERS
SELECT * FROM EMPLOYEES
WHERE JOB_ID = ‘ST_CLERK’;
c. INSERT INTO WORKERS
(SELECT * FROM EMPLOYEES
WHERE JOB_ID = ST_CLERK);
d. INSERT INTO WORKERS
(SELECT * FROM EMPLOYEES
WHERE JOB_ID = ‘ST_CLERK’);
Clear my choice

Question 13
Answer saved
Marked out of 1.00

Flag question

Question text
A join condition that is based on all the columns in two or more table that have
the same name.

Select one:
a. Natural Join
b. Cross Join
c. Cartesian Product
d. Self-Join
Clear my choice

Question 14
Answer saved
Marked out of 1.00

Flag question

Question text

It is a state of operational database with data at any given time.

Select one:
a. Data Instance
b. Logical Data Instance
c. Database Instance
d. Physical Data Instance
Clear my choice

Question 15
Answer saved
Marked out of 1.00

Flag question

Question text
Which of the following is the correct query that will create a report that will display
the following: STREET_ADDRESS, CITY, DEPARTMENT_NAME and
LOATION_ID? Use using clause to get the data from two tables.

Select one:
a. SELECT STREET_ADDRESS, CITY, DEPARTMENT_NAME, LOCATION_ID
FROM DEPARTMENTS
JOIN LOCATIONS
NATURAL JOIN (LOCATION_ID);
b. SELECT STREET_ADDRESS, CITY, DEPARTMENT_NAME, LOCATION_ID
FROM DEPARTMENTS
JOIN LOCATIONS
USING (LOCATION_ID);
c. SELECT STREET_ADDRESS, CITY, DEPARTMENT_NAME, LOCATION_ID
FROM DEPARTMENTS
JOIN LOCATIONS
USING (LOCATIONS);
d. SELECT STREET_ADDRESS, CITY, DEPARTMENT_NAME, LOCATION_ID
FROM DEPARTMENTS
JOIN LOCATIONS
WHERE USING (LOCATION_ID);
Clear my choice

Question 16
Answer saved
Marked out of 1.00

Flag question

Question text

SELECT e.employee_id, e.lastname,e.department_id,


d.department_id,d.location_id
FROM employees e, departments d
WHERE e.department_id between 20 AND 50;
Select one:
a. The given statement is Outer Join
b. The given statement would cause Cartesian or Cross Join
c. The given statement is an Equijoin
d. The given statement is not a valid join condition or is incorrect
Clear my choice

Question 17
Answer saved
Marked out of 1.00

Flag question

Question text

Refer to the table AUTHORS and COPY_AUTHORS (Note ID column is with


Primary Key constraint). Supposed that the user insert the following values to
COPY_AUTHORS view as shown below what is/are the possible output on both
table and view?
INSERT INTO COPY_AUTHORS VALUES (6,'SUSAN CARLOS','OS','2016');

Select one:
a. Unique constraint is violated on AUTHORS table
b. Automatically set the ID of Susan to NULL
c. 0 rows are added on COPY_AUTHORS view but 1 row is added on AUTHORS
table.
d. 1 row is added on COPY_AUTHORS view but 0 rows are added on AUTHORS
table.
Clear my choice

Question 18
Answer saved
Marked out of 1.00
Flag question

Question text

Which of the following joins are mutually exclusive.

Select one:
a. Inner join and Outer Join
b. Left and Right Outer join
c. IN and Using clause
d. Natural Join and Using clause
Clear my choice

Question 19
Answer saved
Marked out of 1.00

Flag question

Question text

Which of the following is not true about complex view when using INSERT
statement?

Select one:
a. You cannot add data through a view if the view includes the pseudocolumn
ROWNUM keyword
b. You cannot add data through a view if the view includes:Group functions
c. You cannot modify data in a view if it contains a GROUP BY clause
d. All of the choices
Clear my choice

Question 20
Answer saved
Marked out of 1.00

Flag question

Question text

It is formed when a join condition is omitted.

Select one:
a. Cartesian Product
b. Cross Join
c. Self-Join
d. Natural Join
Clear my choice

Question 21
Answer saved
Marked out of 1.00

Flag question

Question text

A single row of a table, which contains a single record for that relation.

Select one:
a. Tuple
b. Column
c. Values
d. Cell
Clear my choice

Question 22
Answer saved
Marked out of 1.00
Flag question

Question text

This is a schema that pertains to the actual storage of data and its form of
storage like files, indices.

Select one:
a. Physical Database Schema
b. Scientific Database Schema
c. Logical Database Schema
d. Historical Database Schema
Clear my choice

Question 23
Answer saved
Marked out of 1.00

Flag question

Question text

SELECT emp.employee_id, employees.lastname,emp.department_id,


dept.department_id,dept.location_id
FROM employees emp, departments dept
WHERE emp.department_id = dept.department_id;

Select one:
a. The given statement is an Equijoin
b. The given statement would cause Cartesian or Cross Join
c. The given statement is Outer Join
d. The given statement is not a valid join condition or is incorrect
Clear my choice
Question 24
Answer saved
Marked out of 1.00

Remove flag

Question text

SELECT employees.employee_id,
employees.lastname,employees.department_id,
departments.department_id,departments.location_id FROM employees JOIN
departments WHERE employees.department_id = departments.department_id;

Select one:
a. The given statement would cause Cartesian or Cross Join
b. The given statement is Outer Join
c. The given statement is not a valid join condition or is incorrect
d. The given statement is an Equijoin
Clear my choice

Question 25
Answer saved
Marked out of 1.00

Flag question

Question text

Which of the following is not true about complex view when using DELETE
statement?

Select one:
a. You cannot modify data in a view if it contains a distinct keyword.
b. You cannot modify data in a view if it contains a GROUP BY clause
c. You cannot modify data in a view if it contains group functions
d. All of the choices
Clear my choice

Question 26
Answer saved
Marked out of 1.00

Flag question

Question text

It is a join of two or more table that returns only matched rows.

Select one:
a. Inner Join
b. Outer Join
c. ON
d. Using
Clear my choice

Question 27
Answer saved
Marked out of 1.00

Flag question

Question text

Which of the following is not true about complex view when using UPDATE
statement?

Select one:
a. All of the choices
b. You cannot modify data in a view if it contains column defined expression
c. You cannot modify data in a view if it contains group functions
d. You cannot modify data in a view if it contains a GROUP BY clause
Clear my choice

Question 28
Answer saved
Marked out of 1.00

Flag question

Question text

Which of the following is the correct query that will create a report that will display
the following: FIRTSNAME, SALARY with additional 1000 in employees salary,
rename this column as BONUS, then get the DEPARTMENT_NAME and
DEPARTMENT_ID. Join the table using ON condition.

Select one:
a. SELECT FIRSTNAME, SALARY + 1000 AS BONUS, DEPARTMENT_NAME,
D.DEPARTMENT_ID
FROM EMPLOYEES E JOIN DEPARTMENTS D
ON DEPARTMENT_ID = DEPARTMENT_ID;
b. SELECT FIRSTNAME, SALARY + 1000 AS BONUS, DEPARTMENT_NAME,
DEPARTMENT_ID
FROM EMPLOYEES E JOIN DEPARTMENTS D
ON E.DEPARTMENT_ID = D.DEPARTMENT_ID;
c. SELECT FIRSTNAME, SALARY + 1000 AS BONUS, DEPARTMENT_NAME,
D.DEPARTMENT_ID
FROM EMPLOYEES E JOIN DEPARTMENTS D
ON E.DEPARTMENT_ID = D.DEPARTMENT_ID;
d. SELECT FIRSTNAME, SALARY + 1000 AS BONUS, DEPARTMENT_NAME,
D.DEPARTMENT_ID
FROM EMPLOYEES JOIN DEPARTMENTS 
ON E.DEPARTMENT_ID = D.DEPARTMENT_ID;
Clear my choice

Question 29
Answer saved
Marked out of 1.00

Flag question

Question text

Which of the following is the correct example of multiple row subquery?

Select one:
a. SELECT EMPLOYEE_ID, SALARY
FROM EMPLOYEES
HAVING MIN(SALARY);
b. SELECT EMPLOYEE_ID, MIN(SALARY)
FROM EMPLOYEES;
c. SELECT EMPLOYEE_ID, MIN(SALARY)
FROM EMPLOYEES
WHERE SALARY =(SELECT MIN(SALARY) FROM EMPLOYEES;
d. SELECT EMPLOYEE_ID, SALARY
FROM EMPLOYEES
WHERE SALARY =(SELECT MIN(SALARY) FROM EMPLOYEES;
Clear my choice

Question 30
Answer saved
Marked out of 1.00

Flag question

Question text

This is a type of schema defines all the logical constraints that need to be applied
on the data stored. It defines tables, views, and integrity constraints.

Select one:
a. Physical Data Independence
b. Logical Database Schema
c. Physical Database Schema
d. Logical Data Independence
Clear my choice

Question 31
Answer saved
Marked out of 1.00

Flag question

Question text

SELECT EMPLOYEES.EMPLOYEE_ID,
EMPLOYEES.LASTNAME,EMPLOYEES.DEPARTMENT_ID,DEPARTMENTS.D
EPARTMENT_ID,DEPARTMENTS.LOCATION_ID
FROM EMPLOYEES RIGHT OUTER JOIN DEPARTMENTS
ON( EMPLOYEES.DEPARTMENT_ID = DEPARTMENTS.DEPARTMENT_ID);

Select one:
a. The given statement would case Cartesian or Cross Join
b. The given statement is Outer Join
c. The given statement is an Equijoin
d. The given statement is not a valid join condition or is incorrect
Clear my choice

Question 32
Answer saved
Marked out of 1.00

Flag question

Question text
A type of that do not exist in the physical database, but their values are derived
from other attributes present in the database.

Select one:
a. Simple Attribute
b. Derived Attribute
c. Composite Attribute
d. Natural Attribute
Clear my choice

Question 33
Answer saved
Marked out of 1.00

Flag question

Question text
Based on the table EMPLOYEES, DEPARTMENTS and LOCATIONS.
From the given select statement below: What is the address of employee under
the department_name IT?
SELECT STREET_ADDRESS, CITY, DEPARTMENT_NAME, LOCATION_ID
FROM DEPARTMENTS
JOIN LOCATIONS
USING (LOCATION_ID);

Select one:
a. MAGDALENCENTER
b. 460 RDBLOOR SY
c. 2004 CHARADE RD
d. 2014 JABBERWACKY
Clear my choice

Question 34
Answer saved
Marked out of 1.00

Flag question

Question text

This is a join clause used to specify arbitrary conditions of specify columns to


join.

Select one:
a. ON
b. Using
c. Inner Join
d. Outer Join
Clear my choice

Question 35
Answer saved
Marked out of 1.00

Remove flag

Question text

SELECT EMPLOYEES.EMPLOYEE_ID,
EMPLOYEES.LASTNAME,EMPLOYEES.DEPARTMENT_ID,DEPARTMENTS.D
EPARTMENT_ID,DEPARTMENTS.LOCATION_ID
FROM EMPLOYEES JOIN DEPARTMENTS
USING (DEPARTMENT_ID);

Select one:
a. The given statement would case Cartesian or Cross Join
b. The given statement is not a valid join condition or is incorrect
c. The given statement is an Equijoin
d. The given statement is Outer Join
Clear my choice

Question 36
Answer saved
Marked out of 1.00

Flag question

Question text

Which of the following is not part of multiple row subqueries?

Select one:
a. ALL
b. MAX
c. IN
d. ANY
Clear my choice

Question 37
Answer saved
Marked out of 1.00

Flag question

Question text

SELECT EMPLOYEES.EMPLOYEE_ID,
EMPLOYEES.LASTNAME,EMPLOYEES.DEPARTMENT_ID,DEPARTMENTS.D
EPARTMENT_ID,DEPARTMENTS.LOCATION_ID
FROM EMPLOYEES JOIN DEPARTMENTS
ON( EMPLOYEES.DEPARTMENT_ID (+)=
DEPARTMENTS.DEPARTMENT_ID);

Select one:
a. The given statement is an Equijoin
b. The given statement would case Cartesian or Cross Join
c. The given statement is Outer Join
d. he given statement is not a valid join condition or is incorrect
Clear my choice

Question 38
Answer saved
Marked out of 1.00

Flag question

Question text

If WITH CHECK OPTION is added on the view (see sample code below) what
is/are the restriction?
CREATE OR REPLACE VIEW VIEW STUD_VIEW (USN_ID, LASTNAME,
FIRSTNAME, COURSE)
AS (SELECT USN_ID, LASTNAME, FIRSTNAME, COURSE
FROM STUDENTS
WHERE COURSE = ‘BSCS’
WITH CHECK OPTION CONSTRAINT STUD_VIEW_CK;

Select one:
a. NO DML operations allowed on this view.
b. It restricts the users to add a value where course is equal to BSCS only
c. SELECT statement is not allowed on this view
d. It restricts the users to add a value where course is not equal to BSCS
Clear my choice

Question 39
Answer saved
Marked out of 1.00

Flag question

Question text

Which of the following is the correct example of modifying a view where salary
manager_id is null?

Select one:
a. CREATE OR REPLACE VIEW WORKERS (EMPLOYEE_ID, SURNAME,
FIRSTNAME, MANAGER_ID)
AS (EMPLOYEE_ID, LASTNAME AS "SURNAME", FIRSTNAME, MANAGER_ID
FROM EMPLOYEES
WHERE MANAGER_ID IS NULL);
b. CREATE OR REPLACE VIEW WORKERS (EMPLOYEE_ID, SURNAME,
FIRSTNAME, MANAGER_ID)
AS (EMPLOYEE_ID, LASTNAME, FIRSTNAME, MANAGER_ID)
FROM EMPLOYEES
WHERE MANAGER_ID IS NULL);
c. CREATE VIEW WORKERS (EMPLOYEE_ID, SURNAME, FIRSTNAME,
MANAGER_ID)
AS (EMPLOYEE_ID, LASTNAME, FIRSTNAME, MANAGER_ID
FROM EMPLOYEES
WHERE MANAGER_ID IS NULL);
d. CREATE OR REPLACE VIEW WORKERS (EMPLOYEE_ID, SURNAME,
FIRSTNAME, MANAGER_ID)
AS (EMPLOYEE_ID, LASTNAME, FIRSTNAME, MANAGER_ID 
FROM EMPLOYEES
WHERE MANAGER_ID = NULL);
Clear my choice

Question 40
Answer saved
Marked out of 1.00

Flag question

Question text

This of the following is not part of comparison condition used in single row
subquery.

Select one:
a. >
b. <
c. <>
d. IN
Clear my choice

Question 41
Answer saved
Marked out of 1.00

Flag question

Question text

Supposed that table: Workers and Employees is consists of the following values.
What will be the output if the user uses this PL/SQL.
DELETE FROM WORKERS
WHERE LASTNAME = (SELECT LASTNAME FROM EMPLOYEES WHERE
LASTNAME=Cruz’)

Select one:
a. Employee in Employees table with lastname equal to Cruz will be deleted.
b. Employee in Workers table with lastname equal to Cruz will be deleted.
c. 0 rows are deleted in Workers table
d. 0 rows are deleted in Employees table
Clear my choice

Question 42
Answer saved
Marked out of 1.00

Flag question

Question text

This is a type of schema that has the power to change the physical data without
impacting the schema or logical data.

Select one:
a. Physical Database Schema
b. Physical Data Independence
c. Logical Database Schema
d. Logical Data Independence
Clear my choice

Question 43
Answer saved
Marked out of 1.00

Flag question

Question text

Supposed that table: Workers and Employees is consists of the following values.
Which of the following is the correct example of copying data from WORKERS
table to EMPLOYEES table where the status is equal to ‘Regular’?

Select one:
a. INSERT INTO EMPLOYEES VALUES (ID, LASTNAME, DEPARTMENT)
SELECT ID, LASTNAME, DEPARTMENT
FROM WORKERS
WHERE STATUS = ‘Regular’;
b. INSERT INTO EMPLOYEES (ID, LASTNAME, DEPARTMENT)
VALUES (SELECT ID, LASTNAME, DEPARTMENT
FROM WORKERS
WHERE STATUS = ‘Regular’);
c. INSERT INTO EMPLOYEES(ID, LASTNAME, DEPARTMENT)
SELECT ID, LASTNAME, DEPARTMENT
FROM WORKERS
WHERE STATUS = ‘Regular’;
d. INSERT INTO EMPLOYEES(ID, LASTNAME, DEPARTMENT)
SELECT *
FROM WORKERS
WHERE STATUS = ‘Regular’;
Clear my choice

Question 44
Answer saved
Marked out of 1.00

Remove flag

Question text

SELECT employees.employee_id,
employees.lastname,employees.department_id,
departments.department_id,departments.location_id
FROM employees RIGHT OUTER JOIN departments
ON( employees.department_id = departments.department_id);

Select one:
a. The given statement is not a valid join condition or is incorrect
b. The given statement would cause Cartesian or Cross Join
c. The given statement is Outer Join
d. The given statement is an Equijoin
Clear my choice

Question 45
Answer saved
Marked out of 1.00
Flag question

Question text

This is a join clause used when the columns in two or more tables have the same
but of different data type.

Select one:
a. Inner Join
b. Using
c. Outer Join
d. ON
Clear my choice

Question 46
Answer saved
Marked out of 1.00

Flag question

Question text

Which of the following is not true rule to follow in writing PL/SQL that contains
subquery?

Select one:
a. Enclose subqueries in double bracket symbol.
b. The subquery can appear on either side of the comparison operator.
c. Place subqueries on the right side of the comparison condition for readability.
d. Use single-row operators with single-row subqueries and multiple-row
operators with multiple-row subqueries.
Clear my choice

Question 47
Answer saved
Marked out of 1.00

Flag question

Question text

Which of the following is not true application of subquery in DML statements?

Select one:
a. Merge one table to another table.
b. Copy data from one table to another
c. Retrieve data from an inline view
d. Delete rows from one table based on rows in a another table
Clear my choice

Question 48
Answer saved
Marked out of 1.00

Flag question

Question text

Supposed that table: Workers and Employees is consists of the following values.
What will be the output if the user uses this PL/SQL.
UPDATE EMPLOYEES
SET LASTNAME = (SELECT LASTNAME FROM WORKERS WHERE
LASTNAME=’Soriano’)
WHERE ID=105;

Select one:
a. The lastname of Cruz from Employees table will be set to Soriano
b. The lastname of Cruz from Employees table will be set to NULL
c. The values of Employee with ID number 105 will be deleted
d. All Workers lastname will be set to NULL
Clear my choice

Question 49
Answer saved
Marked out of 1.00

Flag question

Question text

SELECT employees.employee_id,
employees.lastname,employees.department_id,
departments.department_id,departments.location_id
FROM employees JOIN departments
USING (department_id);

Select one:
a. The given statement is not a valid join condition or is incorrect
b. The given statement is an Equijoin
c. The given statement would cause Cartesian or Cross Join
d. The given statement is Outer Join
Clear my choice

Question 50
Answer saved
Marked out of 1.00

Flag question

Question text

It is join between two tables that return the result of an Inner Join as well as the
results of Left and Right joins.

Select one:
a. Outer Join
b. Using
c. Inner Join
d. ON
Clear my choice

Вам также может понравиться