RDBMS Quizzes
RDBMS Quizzes
RDBMS Quizzes
Dashboard / My courses / MySQL Database / Function-Scalar & Aggregate / Post-Quiz
Quiz review
Started on Sunday, 21 January 2024, 11:27 PM
State Finished
Completed on Sunday, 21 January 2024, 11:33 PM
Time taken 5 mins 56 secs
Marks 4.00/5.00
Grade 80.00 out of 100.00
Feedback Congratulations!!! You have passed by securing more than 80%
Question 1
Correct
45573
All columns in the SELECT list that are not in group functions must be in the GROUP-BY clause. State True or False.
Select one:
TRUE
FALSE
Question 2
45573
Correct
Select one:
None of the options
5.0
45573
6
https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=1004505&cmid=6358 1/3
1/21/24, 11:35 PM Post-Quiz: Attempt review
Question 3
Correct
Single row functions can be nested to any level. State true or False.
Select one:
TRUE
FALSE
Question 4
Correct
45573
Group functions can be used in the where clause. State True or False.
Select one:
TRUE
FALSE
45573
45573
https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=1004505&cmid=6358 2/3
1/21/24, 11:35 PM Post-Quiz: Attempt review
Question 5
Incorrect
We need to create a report to display the order id, ship date and order total of your ORDER table. If the
order has not been shipped, your report must display 'Not Shipped'. If the total is not available,
In the ORDER table, the SHIPDATE column has a datatype of DATE. The TOTAL column has a
datatype of INT.
Select one:
SELECT ordid, IFNULL(shipdate, 'Not Shipped') as SHIPDATE,Total FROM order;
SELECT ordid, IFNULL(shipdate, 'Not Shipped') SHIPDATE,
The correct answer is: SELECT ordid, IFNULL(shipdate, 'Not Shipped') SHIPDATE,
IFNULL(total,'Not Available')TOTAL FROM order;
FROM order;
45573
◄ Average Cost For Location
Jump to...
Pre-Quiz ►
45573
https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=1004505&cmid=6358 3/3
1/21/24, 11:22 PM Pre-Quiz: Attempt review
Dashboard / My courses / MySQL Database / Function-Scalar & Aggregate / Pre-Quiz
Quiz review
Started on Sunday, 21 January 2024, 11:20 PM
State Finished
Completed on Sunday, 21 January 2024, 11:22 PM
Time taken 2 mins 6 secs
Marks 3.00/5.00
Grade 60.00 out of 100.00
Feedback Oops!!! You have scored below 80%. So Kindly make necessary preparations and reattempt.
Question 1
Correct
45573
To display the names of employees that are not assigned to a department.
Evaluate this SQL statement:
The correct answer is: Change the operator in the WHERE condition.
Question 2
Correct
Select one:
In a character sort, the values are case-sensitive
Only those columns that are specified in the SELECT list can be used in the ORDER BY clause
NULL values are not considered at all by the sort operation
Numeric values are displayed from the maximum to the minimum value if they have decimal positions
The correct answer is: In a character sort, the values are case-sensitive
https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=1004391&cmid=6338 1/3
1/21/24, 11:22 PM Pre-Quiz: Attempt review
Question 3
Correct
Select the suitable option for fetching the output of the following query. select substr("Oracle World",1,6) from dual;
Select one:
racle Wo
racle W
Oracle
racle
Question 4
Incorrect
45573
ABC company wants to give each employee a $100 salary increment. You need to evaluate the
results from the EMP table prior to the actual modification. If you do not want to store the results in the database, which statement is
valid?
Select one:
You need to add a column to the EMP table.
You need to give the arithmetic expression that involves the salary increment in the SET clause
of the UPDATE statement.
You need to give the arithmetic expression that involves the salary increment in the UPDATE
45573
clause of the SELECT statement.
You need to give the arithmetic expression that involves the salary increment in the DISPLAY
The correct answer is: You need to give the arithmetic expression that involves the salary increment in the DISPLAY
clause of the SELECT statement.
45573
https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=1004391&cmid=6338 2/3
1/21/24, 11:22 PM Pre-Quiz: Attempt review
Question 5
Incorrect
To generate a report that shows an increase in the credit limit by 15% for all customers. Customers whose credit limit has not been
entered should have the message "Not Available" displayed.
Select one:
SELECT NULLIF(cust_credit_limit*.15,'Not Available')"NEW CREDIT"
FROM customers;
SELECT IFNULL(cust_credit_limit * 0.15,'Not Available') "NEW CREDIT"
FROM customers;
All the options
SELECT TO_CHAR(NVL(cust_credit_limit*.15,'Not Available')) "NEW CREDIT"
FROM customers;
45573
The correct answer is: SELECT IFNULL(cust_credit_limit * 0.15,'Not Available') "NEW CREDIT"
FROM customers;
◄ Post-Quiz
Jump to...
FUNCTIONS Introduction ►
45573
45573
https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=1004391&cmid=6338 3/3
1/21/24, 11:17 PM Post-Quiz: Attempt review
Dashboard / My courses / MySQL Database / SQL Select Statement / Post-Quiz
Quiz review
Started on Sunday, 21 January 2024, 11:14 PM
State Finished
Completed on Sunday, 21 January 2024, 11:16 PM
Time taken 2 mins 20 secs
Marks 3.50/5.00
Grade 70.00 out of 100.00
Feedback Oops!!! You have scored below 80%. So Kindly make necessary preparations and reattempt.
Question 1
Correct
45573
Select the suitable option for retrieving all the employees who have a manager?
Select one:
select empname, manager_id from employee where manager_id is NOT NULL;
select empname, manager_id from employee where manager_id is NULL VALUE;
select empname, manager_id from employee where manager_id is NULL;
select empname, manager_id from employee where manager_id NULL;
The correct answer is: select empname, manager_id from employee where manager_id is NOT NULL;
Question 2
Correct
45573
Mark 1.00 out of 1.00
Select the suitable option for retrieving all the employees whose last name is "kumar"?
Select one:
select * from employee where empname like '%kumar%';
select * from employee where empname like 'kumar%';
select * from employee where empname like 'kumar';
select * from employee where empname like '%kumar';
45573
The correct answer is: select * from employee where empname like '%kumar';
https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=1004314&cmid=6337 1/3
1/21/24, 11:17 PM Post-Quiz: Attempt review
Question 3
Incorrect
How to retrieve department_id column without any duplication from employee relation?
Select one:
select department_id distinct from employee;
select department_id from employee;
select all department_id from employee;
select distinct department_id from employee;
Question 4
Partially correct
45573
Select the suitable option for retrieving all the employees whose salary range is between 40000 and 100000?
select name,salary from employee where salary is between 40000 and 100000;
select name,salary from employee where salary lies between 40000 and 100000;
45573
The correct answers are: select name,salary from employee where salary between 40000 and 100000;, select name,salary from employee where
salary>=40000 and salary<=100000;
Question 5
Correct
Select one:
provided. 45573
The results are sorted by the first column in the SELECT list if the ORDER BY clause is not
You cannot sort query results by a column that is not included the SELECT list.
The correct answer is: Null values are displayed first in ascending sequences.
Jump to...
https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=1004314&cmid=6337 2/3
1/21/24, 11:17 PM Post-Quiz: Attempt review
Pre-Quiz ►
45573
45573
45573
https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=1004314&cmid=6337 3/3
1/21/24, 11:14 PM Pre-Quiz: Attempt review
Dashboard / My courses / MySQL Database / SQL Select Statement / Pre-Quiz
Quiz review
Started on Sunday, 21 January 2024, 11:11 PM
State Finished
Completed on Sunday, 21 January 2024, 11:13 PM
Time taken 2 mins 6 secs
Marks 5.00/5.00
Grade 100.00 out of 100.00
Feedback Congratulations!!! You have passed by securing more than 80%
Question 1
Correct
45573
Which statement is true when a DROP TABLE command is executed on a table?
Select one:
Any pending transactions on the table are rolled back.
The DROP TABLE command can be executed on a table on which there are pending
transactions.
The table structure and its deleted data cannot be rolled back and restored once the DROP TABLE command is executed.
Question 2
Correct
45573
A constraint is enforced only for the INSERT operation on a table.
https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=1004275&cmid=6320 1/3
1/21/24, 11:14 PM Pre-Quiz: Attempt review
Question 3
Correct
You need to remove all the data from the employee table while leaving the table definition intact.
You want to be able to undo this operation. How would you accomplish this task?
Select one:
This task cannot be accomplished.
Question 4
45573
Correct
Which statements describe the consequence of issuing the ROLLBACK TO SAVE POINT a command in the session?
Select one:
The rollback generates an error.
Both the DELETE statements and the UPDATE statement are rolled back.
45573
Only the DELETE statements are rolled back.
https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=1004275&cmid=6320 2/3
1/21/24, 11:14 PM Pre-Quiz: Attempt review
Question 5
Correct
45573
◄ Post-Quiz
Jump to...
45573
45573
https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=1004275&cmid=6320 3/3
1/21/24, 11:11 PM Post-Quiz: Attempt review
Dashboard / My courses / MySQL Database / Joins & SubQuery / Post-Quiz
Quiz review
Started on Sunday, 21 January 2024, 11:09 PM
State Finished
Completed on Sunday, 21 January 2024, 11:11 PM
Time taken 1 min 58 secs
Marks 4.67/5.00
Grade 93.33 out of 100.00
Feedback Congratulations!!! You have passed by securing more than 80%
Question 1
Partially correct
45573
The NOT operator can be used with ______ operators.
ANY
IN
ALL
Select one:
45573
The tables being joined have only unmatched data.
The tables being joined have both matched and unmatched data.
The correct answer is: The tables being joined have both matched and unmatched data.
https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=1004244&cmid=6382 1/3
1/21/24, 11:11 PM Post-Quiz: Attempt review
Question 3
Correct
Which operator is NOT appropriate in the join condition of a non-equi join SELECT statement?
Select one:
equal operator
IN operator
LIKE operator
45573
Question 4
Correct
To display the names of employees who earns more than the average salary of all
employees.
45573
WHEREsalary > AVG(salary);
Select one:
Move the function to the SELECT clause and add a GROUP BY clause and a HAVING clause.
Move the function to the SELECT clause and add a GROUP BY clause.
Use a subquery in the WHERE clause to compare the average salary value.
https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=1004244&cmid=6382 2/3
1/21/24, 11:11 PM Post-Quiz: Attempt review
Question 5
Correct
In which two cases would you use the USING clause? (Choose two)
The tables to be joined have columns with the same name and compatible data types.
The tables to be joined have columns of the same name and different data types.
The correct answers are: The tables to be joined have columns of the same name and different data types., The tables to be joined have columns with the
same name and compatible data types.
45573
◄ Highest Seating Capacity
Jump to...
Pre-Quiz ►
45573
45573
https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=1004244&cmid=6382 3/3
1/21/24, 11:08 PM Pre-Quiz: Attempt review
Dashboard / My courses / MySQL Database / Joins & SubQuery / Pre-Quiz
Quiz review
Started on Sunday, 21 January 2024, 11:03 PM
State Finished
Completed on Sunday, 21 January 2024, 11:08 PM
Time taken 4 mins 40 secs
Marks 5.00/5.00
Grade 100.00 out of 100.00
Feedback Congratulations!!! You have passed by securing more than 80%
Question 1
Correct
45573
To create a report displaying employee last names, department names, and locations. Which query should you use to create an equi-
join?
Select one:
SELECT e.last_name, d.department_name, d.location_id
FROM employees e, departments d
45573
SELECT employees.last_name, departments.department_name,
departments.location_id FROM employees e, departments d
45573
The correct answer is: SELECT e.last_name, d.department_name, d.location_id
FROM employees e, departments d
WHERE e.department_id =d.department_id;
https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=1004163&cmid=6359 1/4
1/21/24, 11:08 PM Pre-Quiz: Attempt review
Question 2
Correct
The COMMISSION column shows the monthly commission earned by the employee.
1 10 500
2 20 1000
3 10
4 10 600
5 30 800
6 30 200
7 10
8 20 300
45573
Which tasks would require sub queries or joins in order to be performed in a single
step?
Listing the employees who do not earn commission and who are working for department 20 in descending order of the employee
ID
45573
Listing the employees whose annual commission is more than 6000
Finding the number of employees who earn a commission that is higher than the average commission of the company
Listing the employees who earn the same amount of commission as employee 3
45573
The correct answers are: Listing the employees who earn the same amount of commission as employee 3, Finding the number of employees who earn a
commission that is higher than the average commission of the company
https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=1004163&cmid=6359 2/4
1/21/24, 11:08 PM Pre-Quiz: Attempt review
Question 3
Correct
Which statement would display the highest credit limit available in each income level in each city in
Select one:
SELECT cust_city, cust_income_level,MAX(cust_credit_limit)
FROM customers
GROUP BY cust_city, cust_income_level,cust_credit_limit;
SELECT cust_city, cust_income_level,MAX(cust_credit_limit)
FROM customers
GROUP BY cust_city , cust_income_level ,MAX(cust_credit_limit);
SELECT cust_city, cust_income_level,MAX(cust_credit_limit)
FROM customers
GROUP BY cust_city, cust_income_level;
SELECT cust_city, cust_income_level,MAX(cust_credit_limit)
FROM customers
45573
GROUP BY cust_credit_limit , cust_income_level, cust_city ;
Question 4
Correct
45573
What statement would display the age of Customers with the alias name as AGE?
Select one:
select round((curdate()-Birth_date)/365) AGE from customer;
select (start_date-curdate())/365) AGE from customer
45573
https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=1004163&cmid=6359 3/4
1/21/24, 11:08 PM Pre-Quiz: Attempt review
Question 5
Correct
Select one:
SELECT *
FROM emp_dept_vu;
SELECT job_id, SUM(salary)
FROM emp_dept_vu
WHERE department_id IN (10,20)
GROUP BY job_id
HAVING SUM(salary) > 20000;
None of the statements produce an error; all are valid.
45573
GROUP BY department_id;
SELECT department_id, job_id, AVG(salary)
FROM emp_dept_vu
GROUP BY department_id, job_id;
The correct answer is: None of the statements produce an error; all are valid.
◄ Post-Quiz
Jump to...
45573
https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=1004163&cmid=6359 4/4
1/21/24, 11:01 PM Post-Quiz: Attempt review
Dashboard / My courses / MySQL Database / DCL & Database Objects / Post-Quiz
Quiz review
Started on Sunday, 21 January 2024, 10:57 PM
State Finished
Completed on Sunday, 21 January 2024, 11:01 PM
Time taken 3 mins 27 secs
Marks 3.00/5.00
Grade 60.00 out of 100.00
Feedback Oops!!! You have scored below 80%. So Kindly make necessary preparations and reattempt.
Question 1
Incorrect
Select one:
May reduce the amount of disk I/O for INSERT statements.
Override the unique index created when the FK relationship was defined.
45573
Increase the chance of full table scans.
Question 2
Correct
45573
An owner can give specific privileges on the owner's objects to others. State True or False.
Select one:
True
False
https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=1004071&cmid=6391 1/3
1/21/24, 11:01 PM Post-Quiz: Attempt review
Question 3
Correct
Which SQL statement would you use to remove a view called EMP_DEPT_VU from your schema?
Select one:
DROP VIEW emp_dept_vu;
DROP emp_dept_vu;
DELETE emp_dept_vu;
REMOVE emp_dept_vu;
45573
Your answer is correct.
The correct answer is: DROP VIEW emp_dept_vu;
Question 4
Correct
Select one:
grant select on department to ALL;
45573
grant select on department to ALL USERS;
Question 5
Incorrect
Select one:
True
False
◄ Create Index
https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=1004071&cmid=6391 2/3
1/21/24, 11:01 PM Post-Quiz: Attempt review
Jump to...
45573
45573
45573
https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=1004071&cmid=6391 3/3
1/21/24, 10:57 PM Pre-Quiz: Attempt review
Dashboard / My courses / MySQL Database / DCL & Database Objects / Pre-Quiz
Quiz review
Started on Sunday, 21 January 2024, 10:53 PM
State Finished
Completed on Sunday, 21 January 2024, 10:57 PM
Time taken 3 mins 38 secs
Marks 5.00/5.00
Grade 100.00 out of 100.00
Feedback Congratulations!!! You have passed by securing more than 80%
Question 1
Correct
Outer Join
Self Join
Equal Join
Select one:
Cross
Self
Outer
45573
Equi
https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=1004013&cmid=6383 1/3
1/21/24, 10:57 PM Pre-Quiz: Attempt review
Question 3
Correct
_____ is used to retrieve records that do not meet the join condition
Select one:
Equi Join
Outer Join
Self Join
Question 4
Correct
45573
Mark 1.00 out of 1.00
The _______ join is based on all columns in the two tables that have the same data type.
Select one:
Left Outer
Cross
Full Outer
Natural 45573
Your answer is correct.
Question 5
Correct
Self Join
Equi Join
https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=1004013&cmid=6383 2/3
1/21/24, 10:57 PM Pre-Quiz: Attempt review
◄ Post-Quiz
Jump to...
45573
45573
45573
https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=1004013&cmid=6383 3/3
1/21/24, 10:52 PM Post-Quiz: Attempt review
Dashboard / My courses / MySQL Database / Data Manipulation Language / Post-Quiz
Quiz review
Started on Sunday, 21 January 2024, 10:48 PM
State Finished
Completed on Sunday, 21 January 2024, 10:52 PM
Time taken 4 mins 34 secs
Marks 4.00/5.00
Grade 80.00 out of 100.00
Feedback Congratulations!!! You have passed by securing more than 80%
Question 1
Correct
Select one:
TRUE
FALSE
Question 2
45573
Incorrect
Merge is not supported by MySQL. The other possible way of doing the work of merge statement, is by using ON DUPLICATE KEY UPDATE in the insert
statement. State TRUE or FALSE.
Select one:
FALSE
TRUE
https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=1003929&cmid=6319 1/3
1/21/24, 10:52 PM Post-Quiz: Attempt review
Question 3
Correct
Stud_id int(3) PK
Address Varchar(30)
DOB Date
Select one:
45573
INSERT INTO student VALUES (101,'Smith');
45573
The correct answer is: INSERT INTO student (stud_id, address, name, dob)
VALUES (101,'100 Main Street','Smith','1994-02-01');
45573
https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=1003929&cmid=6319 2/3
1/21/24, 10:52 PM Post-Quiz: Attempt review
Question 4
Correct
EmpId int(10) PK
When we issue the above insert command and if the statement fails,
45573
Select one:
The statement will get executed successfully
Question 5
Correct
45573
Mark 1.00 out of 1.00
DELETE
CREATE
45573
UPDATE
◄ Delete 2
Jump to...
Pre-Quiz ►
https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=1003929&cmid=6319 3/3
1/21/24, 10:47 PM Pre-Quiz: Attempt review
Dashboard / My courses / MySQL Database / Data Manipulation Language / Pre-Quiz
Quiz review
Started on Sunday, 21 January 2024, 10:39 PM
State Finished
Completed on Sunday, 21 January 2024, 10:47 PM
Time taken 7 mins 41 secs
Marks 4.00/5.00
Grade 80.00 out of 100.00
Feedback Congratulations!!! You have passed by securing more than 80%
Question 1
Incorrect
Truncate table table_name;
Question 2
Correct
45573
Which of the below is a reference option for deleting rows from a table?
Select one:
Cascade
Set Null
Restrict
https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=1003793&cmid=6304 1/3
1/21/24, 10:47 PM Pre-Quiz: Attempt review
Question 3
Correct
Select one:
MM-YYYY-DD
DD-MON-YYYY
NONE
45573
YYYY-MM-DD
Question 4
Correct
45573
To remove a relation from SQL database, we use ___________ command.
Select one:
Drop
Truncate
Delete
45573
The correct answer is: Drop
https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=1003793&cmid=6304 2/3
1/21/24, 10:47 PM Pre-Quiz: Attempt review
Question 5
Correct
Select one:
Both whole and natural numbers.
Whole number
Rational number
Natural number
◄ Post-Quiz
Jump to...
45573
45573
https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=1003793&cmid=6304 3/3
1/21/24, 10:39 PM Post-Quiz: Attempt review
Dashboard / My courses / MySQL Database / Data Definition Language / Post-Quiz
Quiz review
Started on Sunday, 21 January 2024, 10:34 PM
State Finished
Completed on Sunday, 21 January 2024, 10:38 PM
Time taken 4 mins 8 secs
Marks 5.00/5.00
Grade 100.00 out of 100.00
Feedback Congratulations!!! You have passed by securing more than 80%
Question 1
Correct
45573
We need to ensure that the amount withdrawn should be less then the credit card limit amount, to ensure this integrity what type
constraint will be used?
Select one:
table level check constraint
45573
Your answer is correct.
The correct answer is: table level check constraint
Question 2
Correct
An emp table contains fields employ name, desig and salary. How do you drop column salary?
Select one:
alter table emp delete salary;
45573
alter table emp drop column salary;
alter table emp delete column salary;
delete from emp where column = salary;
The correct answer is: alter table emp drop column salary;
https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=1003722&cmid=6303 1/3
1/21/24, 10:39 PM Post-Quiz: Attempt review
Question 3
Correct
Select one:
alter table emp drop column column_name;
alter table emp modify name varchar(30);
alter emp drop column_name;
alter table emp add column_name varchar(25);
Question 4
Correct
45573
A table consists of ______ primary keys.
Select one:
4
Any number
2
1
45573
The correct answer is: 1
Question 5
Correct
cardholderphoneno
check
◄ Drop 1
Jump to...
https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=1003722&cmid=6303 2/3
1/21/24, 10:39 PM Post-Quiz: Attempt review
Pre-Quiz ►
45573
45573
45573
https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=1003722&cmid=6303 3/3
1/21/24, 10:34 PM Pre-Quiz: Attempt review
Dashboard / My courses / MySQL Database / Data Definition Language / Pre-Quiz
Quiz review
Started on Sunday, 21 January 2024, 10:31 PM
State Finished
Completed on Sunday, 21 January 2024, 10:34 PM
Time taken 2 mins 23 secs
Marks 5.00/5.00
Grade 100.00 out of 100.00
Feedback Congratulations!!! You have passed by securing more than 80%
Question 1
Correct
45573
In a relational database a referential integrity constraint can be done using
Select one:
primary key
foreign key
secondary key
composite key
___________ removes data from the table, but structure remains the same.
Select one:
Trunc
Truncate
45573
Drop
https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=1003679&cmid=6286 1/3
1/21/24, 10:34 PM Pre-Quiz: Attempt review
Question 3
Correct
Select one:
Updating
Deletion
Sorting
Insertion
Question 4
Correct
45573
Mark 1.00 out of 1.00
Select one:
Attributes
Relation
Table
Domain 45573
Tuples
Question 5
Correct
45573
Mark 1.00 out of 1.00
Select one:
Tables
Records
Keys
Fields
https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=1003679&cmid=6286 2/3
1/21/24, 10:34 PM Pre-Quiz: Attempt review
Jump to...
45573
45573
45573
https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=1003679&cmid=6286 3/3
1/21/24, 10:25 PM Post-Quiz: Attempt review
Dashboard / My courses / MySQL Database / RDBMS Concepts / Post-Quiz
Quiz review
Started on Sunday, 21 January 2024, 10:15 PM
State Finished
Completed on Sunday, 21 January 2024, 10:25 PM
Time taken 10 mins 13 secs
Marks 3.33/5.00
Grade 66.67 out of 100.00
Feedback Oops!!! You have scored below 80%. So Kindly make necessary preparations and reattempt.
Question 1
Incorrect
45573
SQL is a case sensitive language and the data stored inside the table are case in-sensitive. Say true or false?
Select one:
True
False
Question 2
45573
Correct
Tom has designed a payroll software for XYZ technology.The sofware will store the salary details into the database and later he can
retreive the same for future references. Tom falls under which category of user.
Select one:
Application Programmer
DBA
Network Administrator
45573
End User
https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=1003415&cmid=6283 1/3
1/21/24, 10:25 PM Post-Quiz: Attempt review
Question 3
Partially correct
Question 4
Correct
45573
Mark 1.00 out of 1.00
Terms of Relational
45573
_______ refers to the range of values that can be stored for an attribute
Domain
The correct answer is: ______ refers to the columns of the table → Attribute, _______ refers to number of columns in the table → Degree, ________ refers to
number of rows in the table → cardinality, _______ refers to the range of values that can be stored for an attribute → Domain, ______ refers to the rows of the
table → Tuples
45573
https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=1003415&cmid=6283 2/3
1/21/24, 10:25 PM Post-Quiz: Attempt review
Question 5
Correct
Select one:
MySQL
Sybase
Oracle
Unify
45573
◄ RDBMS Concepts
Jump to...
45573
45573
https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=1003415&cmid=6283 3/3
1/21/24, 10:14 PM Pre-Quiz: Attempt review
Dashboard / My courses / MySQL Database / RDBMS Concepts / Pre-Quiz
Quiz review
Started on Sunday, 21 January 2024, 10:08 PM
State Finished
Completed on Sunday, 21 January 2024, 10:14 PM
Time taken 5 mins 22 secs
Marks 4.67/5.00
Grade 93.33 out of 100.00
Feedback Congratulations!!! You have passed by securing more than 80%
Question 1
Partially correct
45573
Which of the following are data models?
Question 2
Correct
45573
Mark 1.00 out of 1.00
45573
The correct answers are: SELECT, INSERT
https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=1003316&cmid=6280 1/2
1/21/24, 10:14 PM Pre-Quiz: Attempt review
Question 3
Correct
Select one:
No of rows
Domain
Cardinality
No of Attributes
Question 4
Correct
45573
Database is a shared collection of logically unrelated data, designed to meet the needs of an organization. State True or False.
Select one:
TRUE
FALSE
Question 5
Correct
45573
Mark 1.00 out of 1.00
Jump to...
RDBMS Introduction ►
https://accenturelearning.tekstac.com/mod/quiz/review.php?attempt=1003316&cmid=6280 2/2