A)What is the objective of the testing phase in a software development life cycle?(1 point)

to design a software
to develop a software efficiently
to check whether a software is working as intended
to write the program for software
A)What is a functional test?(1 point)
a test that checks individual units of code
a test that checks the logically integrated modules
a set of instructions executed to verify a particular artifact
a test that checks a specific feature within a program
A)What is the difference between unit tests and integration tests?(1 point)
In unit tests, all modules are combined and checked, whereas, in integration tests each module is checked independently.
Unit tests are done manually, whereas integration tests are automated.
In unit tests, each module is checked independently, whereas, in integration tests, all modules are combined and checked.
Unit tests are automated, whereas integration tests are done manually.
A)Under what condition would a unit test be applied?(1 point)
when we want to check logically integrated modules
when we want to decide if the system works as intended
when we want to verify each unit independently
when we want to verify the type of data accepted by our system
A)When is an integration test needed?(1 point)
when we want to verify each unit independently
when we intend to check logically integrated modules
when we want to determine if we are getting the right output
when we want to check a specific feature within a program

1 answer

Here are the answers to your questions:

A) What is the objective of the testing phase in a software development life cycle?
Answer: to check whether a software is working as intended

A) What is a functional test?
Answer: a test that checks a specific feature within a program

A) What is the difference between unit tests and integration tests?
Answer: In unit tests, each module is checked independently, whereas, in integration tests, all modules are combined and checked.

A) Under what condition would a unit test be applied?
Answer: when we want to verify each unit independently

A) When is an integration test needed?
Answer: when we intend to check logically integrated modules