0% found this document useful (0 votes)
2K views7 pages

Database Administration WDDBA Level 4 Coc With Answer

The document contains a series of questions and answers related to database administration, web development, and programming concepts. It covers topics such as testing methods, HTML and CSS syntax, database management, and software development principles. Key concepts include regression testing, foreign keys, and the importance of data backup and recovery.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2K views7 pages

Database Administration WDDBA Level 4 Coc With Answer

The document contains a series of questions and answers related to database administration, web development, and programming concepts. It covers topics such as testing methods, HTML and CSS syntax, database management, and software development principles. Key concepts include regression testing, foreign keys, and the importance of data backup and recovery.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 7

Database Administration WDDBA L-IV Holistic

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

3. What is the purpose of a Meta description tag in HTML?


brief summary of the webpage's content

4. What we call websites main page


Homepage

5. Which of the following statements is false about hosting?


----------

6. What is the correct HTML for referring to an external style sheet?


<link rel="stylesheet" type="text/css" href="styles.css">

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)

8. What is the purpose of a scanner in a network?


----------

9. Why is it important to use consistent terminology and language in technical documentation?


----------

10. What is the purpose of conducting a content audit in Information Architecture?


----------

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

17. What is a full backup in database terms?


----------

18. Unnecessary conveyance of products, from one location to another, or handoff from one
employee to another is.
transportation waste

19. In which HTML element, we put the JavaScript code?


<script> // </script>

20. Which of the following is TCL command?


COMMIT, ROLLBACK, and SAVEPOINT

21.What is the primary cause of MUDA in a manufacturing process?


----------

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?
----------

25. All variables in PHP start with which symbol?


$

26.Which of the following is the correct order of keywords for SQL SELECT statements?
----------

27. Which of the following is a benefit of proactive database monitoring?


----------

28. What is the purpose of the &lt;a&gt; tag in HTML?


----------

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>

31. SOAP in C# stands for ___.


Simple Object Access Protocol.

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?
----------

34. Which is a key factor to consider for ensuring database functionality?


----------

35. A software system that enables users to define, create, maintain, and control Access to the
database
Database Management System (DBMS)

36. What is the purpose of testing database backups?


To ensure backups are valid and data can be restored in case of failure.

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?
----------

46. Which of the following is true concerning triggers?


----------

47. How can visuals such as diagrams and screenshots enhance technical documentation?
Clarify concepts and improve understanding.

48. The valid format of MS Word is ___


.doc, .docx, and .docm

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?
----------

51. ________________ is a networking device that manages network connections between


devices on the start networks
Switch or router

52. How to display hyperlinks without an underline?


a { text-decoration: none; }

53. In which one of the following, the multiple lower entities are grouped (or combined) together
to form a single higher-level entity?
----------

54. Which statement is true?


----------

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?
----------

58. Which step is essential before integrating a database with a website?


----------
59. In database administration, what is the purpose of a transaction log?
Tracks changes for recovery.

60. How do you add a background color for all &lt;h1&gt; elements?
h1 { background-color: color; }

61. Which one of the following statements is NOTcorrect about JavaScript?


----------

62. Which of the following is a common practice in database administration?


----------

63. What is a primary consideration for ensuring database scalability?


Optimizing schema design and indexing.

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 &lt;h1&gt; 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)

70. Which one of the following is correct identifier name?


----------

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?
----------

73. Cookies and session variables can be used to____________________


----------

74. What is the purpose of pseudo code in designing program logic?


to help programmers think through a problem and devise a plan for solving it And human readability

75. What is an abstraction in object-oriented programming?


the process of removing unnecessary details from an object to focus on its essential features

76. Which one is output device?


----------

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

You might also like