Database Administration WDDBA Level 4 Coc With Answer
Database Administration WDDBA Level 4 Coc With Answer
1. Type of database system test that carried as part of system testing to check and detect if there
is a problem in the system as a result of a change made to another component of the system?
regression testing
2. How can training and development programs support the successful implementation of
maintenance procedures?
Supporting and maintenance procedures
7. Which one is a description of a software system to be developed and lays out functional and
non-functional requirements?
A software requirements specification (SRS)
11. You have table in your database having a foreign Key. What type of command does you to
add new column to the table
ALTER TABLE table_name ADD column_name data_type;
12. Which type of entity cannot exist in the database unless another type of entity also exists in
the database, But does not require that the identifier of that other entity be included as part of its
own identifier?
a weak entity.
13. How can defining the database structure benefit the website development process?
Ensures data consistency and integrity.
Enhances performance by optimizing queries.
Facilitate s scalability and easier maintenance.
14. What is the significance of data backup and recovery options in web hosting services?
Protects against data loss due to hardware failures or cyberattacks.
Ensures business continuity by allowing quick restoration of services.
15. In a one-to-many relationship, the entity that is on the one side of the relationship is
parent entity or primary table
16. Human Readable Descriptions inside of computer programs detailing what the Code is doing
Comments
18. Unnecessary conveyance of products, from one location to another, or handoff from one
employee to another is.
transportation waste
22. Suppose you are recruited as Database Administrator in Fulbright PLC Company where
records of Exchange commodities are expected to be managed centrally for the sake of
administration using SQL. Thus, which of the following syntax is the correct implementation of
SQL commands used to build a Table PRODUCTS and add fields such as ProdId, Prod Name,
Item Quantity, ProdUnitPrice and Description for the table?
CREATE TABLE PRODUCTS (
ProdId INT,
ProdName VARCHAR(50),
ItemQuantity INT,
ProdUnitPrice DECIMAL(10, 2),
Description TEXT
);
23. It is clear that nowadays most organizations are developing database systems over their file
management system that they are using before. So, why do you think that organizations prefer
database management systems over file management methods?
----------
24. What is the purpose of implementing antivirus software to protect applications and systems?
----------
26.Which of the following is the correct order of keywords for SQL SELECT statements?
----------
29. Which key ensures that the relationship between a primary and related tables is maintained?
Foreign Key
30. Which is the correct syntax to call an external JavaScript file in the current HTML
document?
<script src="script.js"></script>
32. Identify the correct order of html tags that is used to construct a single page?
<!DOCTYPE>
<html>
<head>
<title></title>
</head>
<body>
</body>
</html>
33. Which component is responsible for handling user requests and database interactions in a
website-database integration setup?
----------
35. A software system that enables users to define, create, maintain, and control Access to the
database
Database Management System (DBMS)
37. When class B is inherited from class A, what is the order in which the constructors of those
classes are
----------
38. Which OOP feature allows the same method to be used for different classes in a hierarchy?
Polymorphism
39. Which formatting in MS Word is used to display the text in the word documents larger or
smaller according to our needs?
Font Size
40. One of the following tasks is highly important while you are setting organization’s objectives
when you plan and organize works?
----------
41. If the logical data model does not contain attributes that have repeating values it is in___
Second Normal Form (2NF)
42. What is a software update and why is it important after installing an application?
Fixes bugs, patches security vulnerabilities, and improves performance.
43. The SQL statement that queries or reads data from a table is
SELECT
44. What is the primary role of server-side scripting in dynamic web page development?
allow developers to create dynamic, interactive websites that are responsive and secure
45. What is the significance of complying with accessibility standards in website maintenance?
----------
47. How can visuals such as diagrams and screenshots enhance technical documentation?
Clarify concepts and improve understanding.
49. Which of the following is a critical aspect of database monitoring and administration?
----------
50. Which one of the following is an integrated part of database that can restore the database to
the consistent state of before failure?
----------
53. In which one of the following, the multiple lower entities are grouped (or combined) together
to form a single higher-level entity?
----------
55. How can you include an external CSS file in an HTML document?
<link rel="stylesheet" href="styles.css">
56. What is the name of the location address of the hypertext documents?
Uniform Resource Locator URL
57. Why is considering future growth important when assessing the scalability of a database
system?
----------
60. How do you add a background color for all <h1> elements?
h1 { background-color: color; }
64. In SQL, what does the HAVING clause function similarly to?
Aggregated data filter like WHERE
65. What is the correct CSS syntax for making all the <h1> elements bold?
h1 { font-weight: bold; }
66. Steps of 5S which focuses on eliminating unnecessary items from the workplace
Sort (seiri)
67. Given the basic ER and relational models, which of the following is INCORRECT?
----------
68. The designer can review the schema to ensure it meets all the functional requirements, at the
stage
Logical design phase
69. A logical data model that does not lead to repeating fields and that the data models leads to
tables containing fields that are dependent on the whole identifier is in _____ normal form
Third Normal Form (3NF)
71. Below the following, one is a process of analyzing the data objects and their relationship to
the other objects
Data modeling
72. What is the purpose of database performance tuning in administration?
----------
77. What is the primary purpose of Model Data Objects (MDOs) in software development?
Represent and manipulate data
78. A website that changes in a real time as users interact with it is
Dynamic website
79. In OOP, what term describes the process of combining data and methods into a single unit?
Encapsulation
80. ____________is used for allowing multiple users and programs to share and reuse SQL
statement that is created and stored in DBMS
Stored procedures