Answer:
d. His own
Explanation:
John is the JAD project leader
Joint Application Development (JAD) is a process that accelerates the design of information technology solutions. JAD uses customer involvement and group dynamics to accurately depict the user's view of the business need and to jointly develop a solution.
The executive sponsor is the person from the customer's organization who has the ultimate authority to make decisions about the project. The sponsor may be the customer's project leader, the CIO, or, in some cases, the CEO. The facilitator works with the sponsor to get the project started; it is essential, however, that the sponsor make key decisions, not the facilitator.
The executive sponsor has the following responsibilities:
. Accept ultimate authority and responsibility for the functional area to be addressed by the system.
· Resolve business policy conflicts by being the ultimate decision? maker.
· Honor the results of the JAD process.
· Set the vision for the project.
· Ensure the project team has access to and commitment from the right business user experts.
· Communicate customer support and cooperation.
Answer:
Performance Testing
Explanation:
The Correct option is - Performance Testing
Reason -
INTEGRATION TESTING is a level of software testing where individual units / components are combined and tested as a group. The purpose of this level of testing is to expose faults in the interaction between integrated units.
PERFORMANCE TESTING is a testing measure that evaluates the speed, responsiveness and stability of a computer, network, software program or device under a workload.
UNIT TESTING is a type of software testing where individual units or components of a software are tested. The purpose is to validate that each unit of the software code performs as expected.
Acceptance testing, a testing technique performed to determine whether or not the software system has met the requirement specifications.
Honestly , brainly may seem like a place to get answers but it’s not , people come here to troll, like me
Answer and Explanation:
import Circle
#include<conio.h>
void main ()
int t , length , n
//for hexagon
def hexagon(t, length, n):
for _ in range(n):
t.fd(length)
t.lt(360 / n)
square = Circle.Circle()
square.penup()
square.sety(-270)
square.pendown()
hexagon(square, 30, 60)
The question has the multiple choices below
A) Input validation
B) output correction
C) compiler criticism
D) output validation
The answer is (A) Input validation
Also known as data validation, it is the correct and proper
testing of any input supplied by an application or a user. It prevents wrongly
formed data from entering the system. Applications should be able to check and
validate every input entered into the system since it is hard to detect a
malicious user trying to gain entry into software.