Database Management Systems Overview
Database Management Systems Overview
1. A file or set of files that contain multiple pieces of information that, in some way,
the relationship is:
a) A Database Management System (DBMS)
b) A software application for database management
c) A database
2. The computer tool that allows creating, manipulating, managing, and deleting data and the
the structures of a database are:
a hierarchical database
b) A Database Management System (DBMS)
c) A relational database
4. Microsoft Access, Apache OpenOffice Base, and LibreOffice Base are examples of:
a) Databases
b) Computer applications for Databases
c) Database Management Systems (DBMS)
5. The databases that we create and manage through applications like Microsoft Access,
Apache OpenOffice Base and LibreOffice Base are of type:
relational
hierarchical
c) transactional
6. From the following acronyms, indicate which one is a Database Management System (DBMS)
a) EXCEL
b) MySQL
c) BASE
13. From the following fields of a database table, indicate which could be a key (or
primary (or main) key:
Full name of a user
b) Profession
c) ID card
14. In a relational database, to establish a relationship between two tables, they ...
They must have the same number of fields
b) They must have the same number of records
They must have a common field between both.
d) Options a and c are correct.
15. What type of relationship is there between these two tables in the database of a library?
Literary Language Work ID Title of the Work Author
Verse 1007 Crime and Punishment Fyodor Dostoevsky
Prose 1008 Twenty Love Poems and a Desperate Song Pablo Neruda
1009 Gypsy Ballad Federico García Lorca
1010 One Hundred Years of Solitude Gabriel García Márquez
1011 The Lord of the Rings J.R.R. Tolkien
one to many
many to many
One by one
16. What type of relationship is there between these two tables in the database of a video rental store?
one to many
many to many
One by one
17. In the previous example of the students table, the Tutoría field is used for the tutor to store
a lot of information from the various meetings you have with the student, with the parents, throughout
of the course. To do this, when defining the field Tutoring, it will be a field of type:
a) Text
b) Date/Time
c) Memo
d) Number
18. The fastest and simplest way to work with database applications is:
a) Using a tabulator
b) Through the windows
c) Using an assistant
19. In an employee table, we want to store the smoking status. The smoker field
it will be of type:
a) Text
Yes/No
c) Numeric
d) Memo
20. Which of the following is NOT a software development methodology?:
a) JAVA
b) XP
c) SRUM
d) MSF
Process
i<-3;
j<-4;
if(i=3 and j=4)
Condition 1 is met.
Who
Condition 1 is not met.
FinSi
if(i=3 or j=4)
The condition 2 is met.
Who
The condition 2 is not met
FinSi
FinProcess
27. Indicate the correct statement about the Common Language Runtime (CLR) of the Framework
.NET:
a) There is a single Common Language Runtime (CLR) or one Common Language Runtime (CLR) for each
high-level language supported by the .NET platform?
b) There is a Common Language Runtime (CLR) for each high-level language supported by the
.NET platform
There is a single Common Language Runtime (CLR) for all the languages supported by the
.NET platform
There is a Common Language Runtime (CLR) for each of the high-level languages.
developed by Microsoft for the platform
a) 5
b) 4
c) 3
d) 6
Medium Term
b) Long Term
c) Short Term
37. Which of the following is NOT a role within the SCRUM Methodology?
a) Team
b) Product Owner
c) ScrumController
d) ScrumMaster
41. The following definition corresponds to: 'It is a standardized set of concepts, practices and
criteria to focus on a particular type of problem that serves as a reference, to
confronting and solving new problems of a similar nature
a) Agile Methodology
b) Blocks
c) RUP
d) Framework
a) 4
b) 3
c) 6
d) 5
47. The MSF Methodology is the combination of the following two types of models:
a) Recursive and UML
b) Spiral and Recursive
c) Cascade and Recursive
d) Waterfall and Spiral
48. The attribute that allows knowing the type of a variable, constant, or field of the database:
%TYPE
%ROWTYPE
c) &
%COLUMN
49. A trigger is a PL/SQL block associated with a table that executes as a consequence of a
a certain SQL instruction. Which of the listed instructions does not correspond for use
the Trigger.
a) INSERT
b) UPDATE
c) DELETE
d) DROP
51. The code contained in a trigger, called the body of the trigger, is made up of
blocks
a) Function
b) Cursor
c) PL/SQL
d) Procedure
52. Which of the following is not true about the PL/SQL language?
a) Supports embedded SQL statements.
b) It has all the characteristics of a modern structured programming language.
c) It is not a block-structured language.
d) Applications developed using PL/SQL are not portable.
53. Which of the following is not true about the PL/SQL language?
a) The general syntax of PL/SQL is based on that of the ADA and Pascal programming languages.
In addition to Oracle, PL/SQL is available in the TimesTen in-memory database and IBM DB2.
c) PL / SQL is closely integrated with SQL.
d) Does not offer error checking.
54. Which of the following is not true about the declaration section of a PL/SQL block?
a) This section starts with the keyword DECLARE.
b) It is a mandatory section.
c) define all the variables, cursors, subprograms, and other elements that will be used in the program.
55. Which of the following is not true about the execution section of a PL/SQL block?
a) It must have more than one line of executable code.
b) It can have only a NULL command to indicate that nothing should be executed.
c) Statements must always end with a semicolon.
d) The section may contain SQL commands, control logic commands, assignment commands, as well
like other commands.
56. Which of the following is not true about the exception handling section of a block
PL/SQL?
a) This section begins with the keyword EXCEPTION.
b) It is a mandatory section.
c) It contains exceptions that handle errors in the program.
58. Which of the following statements is true about data types and subtypes?
characters in PL/SQL?
a) LONG is a variable-length character string with a maximum size of 32,760 bytes.
b) ROWID is a physical column identifier, the address of a column in a regular table.
c) CHAR is a variable-length character string with a maximum size of 32,767 bytes.
d) NCHAR is a variable-length national character string with a maximum size of 32,767.
bytes.
59. Which of the following is not true about large object data types and in PL/SQL?
a) BFILE is used to store large binary objects in operating system files outside the database.
of data.
b) BLOB is used to store character data in the database.
CLOB is used to store large blocks of character data in the database.
d) NCLOB is used to store large blocks of NCHAR data in the database.
60. What value will be assigned to the variable declared as follows? contador binary_integer;
a) 0
b) 1
c) NULL
d) Integerf
62. Which of the following is not true about PL/SQL constants and literals?
a) A constant holds a value that, once declared, does not change in the program.
b) The CONSTANT declaration cannot impose the NOT NULL constraint.
c) A constant is declared using the keyword CONSTANT.
d) A CONSTANT declaration requires an initial value.
63. To obtain the server output result and display it on the screen, you must write:
a) Establish the server output in
b) Establish the server output in
c) Set dbmsoutput to
d) Set the dbms output to
64. Which of the following is not true about PL/SQL decision-making structures?
a) The IF instruction associates a condition with a sequence of instructions enclosed by the words
key THEN and END IF.
b) The IF instruction also adds the ELSE keyword followed by an alternative sequence of
instruction.
c) The IF-THEN-ELSIF instruction allows you to choose between several alternatives.
67. If when creating a table we want a column not to accept nulls, we use the constraint:
Default
Default Not Null
Not Null
Values Not Null
68. A file or set of files that contain multiple pieces of information that, in some way,
What is the relationship?
71. What is the default port for MySQL and APACHE in the XAMPP connection?
a) MySQL :3347 APACHE: 7000
3310
3306
d) MySQL :3350 APACHE: 5000
73. What clause is used to apply filters in queries, that is, to select some rows from the table?
that meet a certain condition?
a) WHERE
b) MAX
c) SELECT
d) FROM
74. If when creating a table we want a column to not accept nulls, we use the constraint:
a) Default
b) Default Not Null
c) Not Null
d) Values Not Null
75. It is about providing a solution to the ABC company where there have been continuous issues.
frauds in the collection process. Several cases have been detected in which customers
they affirm that despite having honored their payments and even keeping the receipt
they receive calls from the ABC company requesting payment. When checking the database,
Indeed, the clients appear as delinquent, but the proof in each case is also
legitimate. What would you suggest as the best solution both preventively and detectively for
avoid these frauds?
a) Implement a firewall, DMZ, IDS, and IPS to prevent hacker attacks.
b) Determine an alert for the modification of the collections database and implement logs
audit
c) Implement an Information Security Management System.
77. Which of the following is NOT a deliverable in the Vision Phase of the MSF Methodology?
a) Project Structure Document
b) Vision and Scope Document
c) Risk Assessment Document
d) Detailed Project Schedule
78. How many risks should we consider in the Vision Phase of the MSF methodology?
a) Everyone
79. To solve the problems that arise when a risk materializes, we have the:
a) Contingency Plan
b) Development Plan
c) Schedule Analysis
d) Implementation Plan
80. If the project has 3 risks with probabilities of occurrence of: 0.5, 0.3, and 0.8 and the
impactos de cada riesgo en el proyecto sobre un máximo de 10 puntos son 6, 4 y 9
respectively, what would be the risk rating of the project out of a total of 30 points?
10.4
b) 9.4
c) 11.4
12.4
81. Which of the following is NOT a key task in the Planning Phase of the MSF Methodology?
a) Create the functional specification
b) Create the test and development environments
c) Create or define the business goals
d) Create the schedules
82. The major milestone of the Planning Phase of the MSF Methodology is:
83. The main objective of the Development Phase in the MSF Methodology is:
a) It is the phase in which we build the proposed solution
b) It is the phase where we make contingency plans.
c) It is the phase where we define the scope of the project
84. One of the following is NOT a key task of the Development Phase in the MSF Methodology:
a) Start the development cycle
b) Create a functional prototype of the application
85. Which of the following is not a deliverable in the Development Phase of the MSF Methodology?
a) Source code and executables
b) Installation and configuration scripts for implementation
c) Revised program plan
d) Completed functional specifications
86. What is the name of the MSF phase where the project begins and whose final objective is to create a
shared vision among all the participants of the project?
a) Planning
b) Development
c) Implementation
Vision
89. Which of the following is a model used within the MSF Methodology?
a) Static Model
b) Dynamic Model
c) Class Model
d) Model of Work Teams
90. When a phase needs to be fully completed before moving on to the next, we are
talking about a development type:
a) Multifunctional
b) Recursive
c) Spiral
waterfall
91. The following definition corresponds to a type of development: 'It does not define clear stages within the '
development of the project, however it is open to changes by the client at any time
a) Multifunctional
b) Recursive
c) Spiral
Waterfall
93. What is the name of the MSF phase where the project is tested in simulated environments, which must
to be the most similar to real environments, and any errors are corrected if present
application?
a) Planning
b) Stabilization
c) Development
Vision
94. Which of the following is NOT a type of test conducted in the Stabilization Phase of the
MSF methodology?
a) Homologation Test
b) Database Test
c) Security Test
d) Integration Test
95. Which of the following is a deliverable of the Stabilization Phase in the MSF Methodology?
a) Detailed Schedule
b) Contingency Plan
c) Functional Specifications
d) Source Code and Executables
99. What is the name of the phase where all the tasks that the team executes are considered, to
put into production the developed technological solution and the components that make it up?
a) Vision
b) Implementation
c) Planning
d) Stabilization
100. Which of the following is a deliverable of the Implementation Phase of the Methodology?
MSF?
Training Plan
Sampling Plan
Project Plan
Test Plan
101. What role is of greater importance in the final phase of the MSF Methodology?
Product Manager
Implementation Administrator
Tester
Project Manager
102. If software is put into production without proper testing, what problem can it cause:
Suspension of operations
Loss of information
Unnecessary costs
Integration, validation failures
106. Which of the following BEST describes the early stages of an IT audit?
a) Observe the key organizational facilities.
b) Evaluate the IT environment.
c) Understand the business process and the environment applicable to the review.
111. Reviewing the long-term strategic plans of management helps the IT auditor to:
a) Achieve an understanding of the goals and objectives of an organization.
They will conduct an independent evaluation of the application after its implementation.
They will actively participate in the design and implementation of the application system.
116. What would be the BEST location for an alternate processing site:
a) Place it in the building across from the main offices so that the response time is minimized.
b) To locate it 45 km away even though its cost may be high.
c) Place it in the allied building near the main offices so that the response time is minimized.
d) Place it 1km away to minimize costs and rotate staff between both locations.
120. An off-site backup facility that has rich cabling, air conditioning,
false floor, etc. but no computing or communication equipment, intended to operate a
information processing installation is better known as:
cold alternate site.
b) Hot alternate site.
c) Alternate mirror site.
d) Incomplete alternate site.
121. After conducting the business impact analysis (BIA), what is the next step?
next in the business continuity planning process?
a) Test and maintain the plan.
b) Develop a specific plan.
c) Develop recovery strategies.
d) Implement the plan.
122. An IT auditor has audited a business continuity plan (BCP). What is the
Is the following finding the MOST critical?
c) The location of an alternate site must be fully known by everyone in a company, including
the clients.
d) The alternate site and the main site must be located in the same place.
126. Generally, what are the most used software applications by auditors?
world level
a) ACL and Auto Audit.
b) Audimaster and IDEA.
c) IDEA and Auto Audit.
IDEA and ACL.
127. After conducting the business impact analysis (BIA), what is the next step?
next in the business continuity planning process?
a) Test and maintain the plan.
b) Develop a specific plan.
c) Develop recovery strategies.
d) Implement the plan.
130. An off-site backup facility that has electrical wiring and air conditioning.
false floor, etc. but no computing or communications equipment, intended to operate a
information processing installation is better known as:
a) Cold site.
b) Warm site.
c) Dial up site.
d) Duplicate processing installation.
135. For the purposes of an adequate audit report, controls can be found in:
The ISO 27002 Standard.
b) The ISO 27001 Standard.
138. Reviewing the long-term strategic plans of management helps the IT auditor to:
a) Achieve an understanding of the goals and objectives of an organization.
143. Which of the following BEST describes the initial stages of an IT audit?
a) Observe the key organizational facilities.
b) Evaluate the IS environment.
c) Understand the business process and the environment applicable to the review.
144. The overall business risk for a particular threat can be expressed as
a) A product of the probability and the magnitude of the impact if a threat were to explode
successfully a vulnerability.
b) The magnitude of the impact if a threat source successfully exploited the vulnerability.
c) The probability that a certain threat source would exploit a certain vulnerability.
The collective opinion of the risk assessment team.
c) They will conduct an independent evaluation of the application after its implementation.
They will actively participate in the design and implementation of the application system.
149. Why should a Systems Auditor review the organizational chart of the company being audited?
a) To optimize the responsibility and authority granted to the members of the company.
b) To control the responsibilities and authority of the members of the company.
c) To gain a better understanding of the responsibilities and level of authority in the
members of the company.
d) To identify those responsible for a project.
153. The National Public Procurement Service needs to formulate terms of reference for
to hire the development of a software application for administrative management and registration
assets of the institution, for which reason it must:
a) Consult the Portal of the Ministry of Telecommunications and the Information Society
b) Consult in the Portal of the Information Systems of Science, Technology, Innovation, and Knowledge
Ancestrales in the Ecuadorian Software portal.
c) Consult on the Institutional Portal of the Agency for Regulation and Control of Telecommunications.
d) Consult on the Institutional Portal of the National Public Procurement Service in a particular manner
in the Electronic Catalog tool.
154. The Public University plans in its annual hiring plan to contract software.
with blockchain technology for verifying the traceability of financial management;
As part of the preliminary study, it has been determined that said software program is distributed by a
Spanish company that has no representatives in the country and has a price of USD 130,000.00.
In accordance with the proposed scenario, the entity must initially:
a) Carry out the verification of the non-existence of national production or offer by attaching in a manner
prior to the authorization issued by the Ministry of Telecommunications and the Society of
Information.
b) Carry out an Electronic Reverse Auction procedure considering that it involves the acquisition of
a standardized good that is not available in the Electronic Catalog.
c) Request the foreign supplier to register in the Single Registry of Suppliers so that they can
participate in the consulting procedure that will be called through the Institutional portal of the Service
National Public Procurement.
d) To look for a national supplier that shows interest in being a representative of the company in the country
Spanish so that through this the hiring procedure can be carried out.
156. Which of the following services is not necessary to establish as part of the contractual object
for the acquisition of software:
a) Development services
b) Online support services
c) Parameterization and implementation
157. In a procurement process for the acquisition and maintenance for, with a period of 300
days, the invited bidder must present as an appendix to their offer:
a) The details of services related to the order of precedence corresponding to the international software by
through local suppliers.
b) The list of programmers, developers, or authors who are effectively included in the
software credits, as well as the list of technical personnel involved in the service provision
hired.
c) The list of unit prices breaks down the value of each of the components involved in the
software development and including the added value of each one from Ecuador.
d) A detail of the IT infrastructure and user manuals for the software operation.
158. Which of the following documents must the invited bidder or bidders present in the
processes for the development and/or acquisition of software during the phase
precontractual
a) Software registration submitted to the Mintel.
b) Intellectual property registration.
c) Certificate of registration in the Software portal.
159. Which of the following parameters should not be considered to determine the Added Value
Ecuadorian in public procurement processes related to software acquisition:
a) Parameterization
b) Development
c) List of developers
d) Implementation
160. What is the percentage for an offer to be considered to have an important component of
Ecuadorian Added Value in software contracting:
40%
b) 60%
c) 20%
75%
161. Which of the following documents should not be presented by the supplier as support for the
Ecuadorian Addendum Declaration for software contracting:
a) Official documentation that supports the nationality of the technical staff.
162. The GADMCLL requires contracting a standardized non-cataloged application that allows it to
to monitor the management of the entity's contracts for an amount of USD.
6,000.00, for which it must:
a) Carry out the hiring process through Minor Amount.
b) Request the Ministry of Telecommunications for technical feasibility and contract through the
Electronic Reverse Auction Procedure for being standardized.
c) Request the National Public Procurement Service to unblock CPC
d) Request the relevant authorization from the Ministry of Telecommunications.
163. For the procurement of software, it is considered as Ecuadorian Added Value without
majority component to percentage:
Less than 75% and greater than 40%
164. In a procurement process for the acquisition and maintenance of a software for
25,000,000, with a term of 300 days, the invited bidder must submit as an annex to their
offer:
a) A detail of the IT infrastructure and user manuals for the operation of the software
b) The list of programmers, developers, or authors who were effectively included in
the software credits, as well as the list of technical personnel involved in the provision of the
contracted service.
c) The list of unit prices breaking down the value of each of the components involved in the
software development including the added value of each of them from Ecuador.
d) The details of services related to the corresponding order of precedence for international software by
through local suppliers.
168. Which of the following statements is true? The data dictionary of a database.
a) Allows any database user to perform direct modification operations
(through UPDATE) about him.
b) Store the definition of all objects in the database.
It is stored in the USERS tablespace and any user of the database can access it.
d) It is optional. That is to say, there can be databases without a data dictionary.
169. Regarding transactions and their processing. Which of the following statements is
true?
a) A transaction is a sequence of operations that must be executed atomically.
In Oracle, a transaction is a sequence of SQL statements, but due to mechanisms specific to the DBMS.
It is not necessary to treat it as a single unit.
There are no errors at the transaction level.
d) When a transaction ends successfully, the updates that make up the transaction are recorded with
the ROLLBACK statement.
171. Given the PERSON relation (ID, name, address, phone, payroll), if we wanted that
only 3 users (for now) can consult and modify the data related to the phone
and the payroll in the relationship, we should:
a) Assign selection and modification permissions for these fields to each user we want to
meet those requirements. It would be the most efficient.
b) Create a role, grant selection and modification permissions for those fields and assign that role to each
user. It would be the most efficient.
c) Create a profile, grant selection and modification permissions for those fields, and apply that profile to each
one of the users. It would be the most efficient.
d) Create a profile, apply that profile to each of the users, and finally, grant that profile permissions
selection and modification of the appropriate fields. It would be the most efficient.
172. Which of the following statements is true regarding control files in the System
Oracle Database Manager?
They store information about the logical structure of the Database among other things.
It is the database file that stores the location and status of the backups.
c) They provide the mechanism to redo transactions in case of a failure in the database.
d) It is the database file that stores the definition of all the objects in the database (tables, views, indexes,
procedures, functions, triggers, etc.
173. Which of the following statements is true regarding Recovery in the Management System?
from the ORACLE Database?
a) To be able to perform a hot backup, it is necessary to be in 'NO ARCHIVELOG' mode.
b) In databases that always have to be running, it is only possible to do cold backups.
c) The Oracle 'IMPORT' tool allows for logical backups.
d) A hot backup of a tablespace consists of copying all the files of
storage associated with it while the database is in 'ARCHIVELOG' mode
178. Among the classic problems associated with concurrency, a non-repeatable read or
blurred reading
a) It does not occur, because this type of problem does not appear in the concurrency of the DBMS.
b) It occurs when two transactions that access the same items have their operations interleaved.
in such a way that they modify or incorrectly access the value of some item
c) It occurs when a transaction T1 reads a data item twice and another transaction T2 modifies it.
the item between the two readings and confirms it
It happens when a transaction T1 reads a data item twice and another transaction T2 modifies it.
item between the two readings, but without confirming this modification
a) The SYSTEM tablespace stores Oracle data, such as statistics, instance status, and data.
from an application like tables, etc.
b) In the REDO tablespace, the old data of a transaction is stored and the new data in the UNDO.
c) The TEMP tablespace is used as temporary for join, order-by, hash, etc. operations of the
different users who have TEMP as the default temporary tablespace
In the SYSTEM tablespace, in addition to having the dictionary data, it also stores certain data.
temporary operations of join, order, etc. of users and even data
181. What tool does Oracle provide to query the plan it has followed when
execute a query?
a) SQL-Plus
SQL*Expert
c) SQL-Analyze (Explain plan)
SQL Status
184. Regarding the task of controlling the Integrity of the Database, in a system
multi-user like the Oracle DBMS, which of the following statements is correct?
a) To ensure integrity, transactions must be able to be executed serially,
one after another.
b) If simultaneous transactions are executed, it is not necessary to establish control mechanisms.
concurrency to ensure data consistency.
c) When transactions are executed using Oracle's multiversioning model, the data that they see
the transactions are exactly the same.
d) Ensuring integrity when we have multiple concurrent transactions has a disadvantage, it affects
the scalability of the Database.
188. Which of these are tags for inserting PHP code into HTML pages?
a) < ? y ? >
< php >< /php >
<# y #>
189. In which attribute of a form do we specify the page to which the data will be sent?
of the same?
a) name
b) file
c) action
d) description
191. Which of these PHP instructions will correctly print the message 'Hello
“World” in bold letters?
a) print <strong>Hello World</strong>;
b) print (<strong>Hello World</strong>);
<strong>Hello World</strong>
196. We have the following code: $a="10"; $b=$a + 2; What will be the value of $b?
12
b) 12
102
d) None (a number cannot be added to a string)
198. When we want to set the value of a timestamp field in MySQL, we use
the constant
a) CURRENT_DATETIME
b) CURRENT_TIMESTAMP
CURRENT_DATE
d) TIME_STAMP
199. When we want to print the content of a variable or text in PHP, we can use the
instructions:
a) print_r
b) echo
c) printer
200. Which option is correct to access a session data?
$_SESSION->name
$_SESSION['name']
session('name')
201. What is the correct order of the parameters of the mail function?
asunto
destinatario
body
body
a) 23
b) 24
c)34
204. Which of the following options is used to assign a value to the variable nombreVariable?
$variableName = 33;
$nombreVariable = my Variable;
variableName = "my Variable";
206. What loop or loops allow us to iterate through each element of a vector?
a) foreach
b) if
c) switch
208. What is the correct way to indicate that the Image class inherits from Banner?
211. When the driver files for sessions are used by default through
About sessions, PHP stores session information on the web server's hard drive.
Are the session files to be cleaned?
a) PHP remove the session associated with session_destroy() is called within a script.
b) When the session_cleanup function() is called, PHP iterates over all session files, and
remove them if the session timeout limit is exceeded.
c) When the session_start() function is called, PHP iterates over all session files and deletes them.
if the session timeout limit is exceeded
d) When the function session_start() is called, PHP sometimes iterates over all session files, and
eliminate them if they exceeded the session timeout limit.
213. The following PHP script is designed to subtract two indexed arrays of numbers.
Which statement is correct?
I love Windows
I love Linux
c) I love WindowsLinux
219. Choose the selection that best fits the following statements:
PHP is a scripting language based on the ____ engine. It is primarily used for _____
develop dynamic content, although it can be used to generate documents ____ (among others) such as
so.
223. Under normal circumstances, and ignoring the browser errors - how can it be a
Can a cookie be accessed from a domain different from the one it was set for?
a) By querying the HTTP_REMOTE_COOKIE header
b) It cannot be done
c) The establishment of a domain different when calling setcookie()
d) By sending an additional request to the browser
224. Suppose you want to sort an array in ascending order by time that is preserved.
the fundamental value associations. Which of the following PHP sorting functions that
do you use?
a) ksort ()
b) asort B. ()
c) krsort ()
d) sort ()
225. Which of the following functions reads all the content of a file?
a) fgets ()
b) file_get_contents (), readfile (), file ()
c) fread ()
226. Which of the following function calls will cause a file pointer to be returned to
beginning of the file?
a) reset ()
fseek (-1)
c) fseek (0, SEEK_END)
d) fseek (0, SEEK_SET)
229. This type of maintenance involves cleaning the system and its components the frequency
the implementation of this type of maintenance depends on the environment of the
computer and the quality of the components.
a) Passive preventive maintenance
b) Active preventive maintenance
c) Cleaning the system
d) Installation and uninstallation
230. This is the one that keeps the information when we turn off the computer; also here it
It saves most of the programs and the operating system.
a) The RAM memory
b) The Hard Drive
c) The CD-ROM
d) ROM Memory
231. The main feature of this type of maintenance is to inspect the equipment and
detect failures in their initial phase and correct them at the right time.
a) Corrective maintenance
b) Adaptive maintenance
c) Preventive maintenance
d) Installation and uninstallation
A user submitted a problem report because they cannot access any device in the
red. What tool can the network technician use to quickly verify if the
Does the computer have a valid IP address?
a) Ipconfig
b) Netstat
c) Ping
d) tracert
233. How many IP addresses does each Class B network contain that can be assigned to hosts?
16,777,214
16,777,216
c) 65,536
65,534.
234. What is the range of values for the first octet in class A IP networks?
a) 0 A 127
b) 0 A 126
c) 1 A 127
d) 1 A 126
235. Users in the accounting department cannot access the applications on a server.
The technician believes that the problem lies in the server. What Windows tool is
Should you use it on the server to determine if it is functioning correctly?
Device Manager
b) Firewall
c) Startup management tool
d) System configuration editor
A computer can access devices on the same network, but it cannot access
devices from other networks. What could be the possible cause of the problem?
The cable is not connected properly to the NIC.
The computer has an invalid IP address.
The computer has an incorrect subnet mask.
The computer has an invalid default gateway address.
A technician needs to configure the hard drive of a computer to make it seem like it exists.
one disk for the operating system and four disks for data from different sources
Applications. How can the hard drive be configured to achieve this perception?
a) Create five primary partitions.
b) Create an extended partition with five logical units inside.
c) Create a primary partition and an extended partition with four logical units within it
last.
d) Create five extended partitions
241. During the troubleshooting process of a PC that won't boot, it is suspected that the
The problem lies in the RAM modules. The RAM modules are removed and placed in another.
PC, which turns on correctly. Then, the RAM modules are reinserted into the PC.
original, which now also turns on correctly. What was the most likely cause of
Problem?
A technician finished assembling a new PC and now has to configure the BIOS. What in
At what moment should a key be pressed to start the BIOS setup program?
a) Before turning on the PC.
b) During the Windows loading process.
c) During the POST.
d) After the POST but before Windows starts to load.
243. A small LAN uses a shared printer that is connected to a PC. None
Users can print, but everyone can access the shared resources of the
PC to which the printer is locally connected. What is a possible cause of this?
problem?
a) The cable that connects the printer to the PC is faulty.
The printer needs a new ribbon.
The printer's print queue is full.
The wrong paper was loaded in the printer.
244. Why is it an important organizational tool for the technician to keep a record of
all services and repairs?
a) It increases the cost of services and repairs.
It allows sharing information publicly on the Internet.
c) It reduces the technical skills required of the new technicians.
d) Provide reference material on similar problems that may occur in the future.
In Oracle DBMS, a schema is a collection of database objects that are owned by a database user and serves as a namespace to ensure object uniqueness. It allows for organized storage and management of database objects like tables, views, and procedures, facilitating effective database administration and security .
During the early stages of an audit, an IT auditor should focus on understanding the business process and the relevant environmental context. This includes evaluating the overall IT environment and reviewing previous audit reports to identify trends and areas of concern, which forms the basis for a more detailed examination .
Deploying software without proper testing can lead to suspension of operations, loss of information, unnecessary costs, and failures in integration and validation processes . These issues can result in significant financial losses due to downtime and corrective measures, and can harm the company's reputation and customer trust.
The stabilization phase is crucial because it includes finalizing development, ensuring all components of the software and configurations work correctly, and preparing the product for release, minimizing risks of bugs and integration issues in production environments . This phase reduces the likelihood of post-release problems that could impact users and operations significantly.
A business impact analysis (BIA) helps identify critical business functions and their dependencies, establishing Recovery Time Objectives (RTO) for these processes . This information is crucial in developing an effective disaster recovery plan, as it delineates priorities and guides the allocation of resources to restore operations efficiently after a disruption.
A risk-based audit approach prioritizes the most significant risks, enabling auditors to concentrate resources on areas that are most likely to affect business objectives. This method enhances an organization's ability to manage IT risks effectively by identifying high-risk areas that require more in-depth controls assessment and resource allocation .
Detective controls are vital in identifying and addressing problems that have occurred, thereby contributing to risk management by enabling timely corrective actions and reducing potential damages. When paired with automated processes, these controls enhance accuracy and efficiency, although they can also be effective with manual processes by providing detailed oversight and catch potentially overlooked issues .
Usability testing evaluates the ease with which end-users can interact with software, focusing on user-friendliness and interface design effectiveness . It differs from other types of testing, such as functional testing, which aims to verify that software functions as intended and meets specified requirements, and from performance testing, which assesses how software performs under various conditions.
Evidence from independent external parties is considered more reliable because it reduces the potential for bias and ensures objectivity in the audit process. External evidence provides an unbiased viewpoint, as opposed to evidence provided by the audited party, which could be manipulated intentionally or unintentionally .
In the final phase of the MSF Methodology, the product manager ensures that the software meets user needs and business goals. This role is critical in coordinating between the development team and stakeholders, managing changes, and ensuring the final product is ready for release . Their oversight helps mitigate risks related to project misalignment with business objectives.