answersLogoWhite

0


Best Answer

regression testing is normally a set of automated scripts written by the test/automation team to test all previously existing functionality to make sure nothing has been broken.

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you do regression testing and can we give one example on that in the same application?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

Give an example of an application in which data in file should accessed in the following order 1 sequentally 2 Randomly?

Universal Product Codes


How is the operational frequency of a microcontroller helpful?

The specifications for a microcontroller will tell you how many cycles each instruction takes. When programming a real-time application, you can use that information, along with the operating frequency to calculate exact timings that may be critical to the application, such as the input sampling rate or the maximum response time of the system. Particularly if the system is interrupt-driven, it can be difficult to determine, simply by testing, whether timing requirements will be met; cycle-counts can give you absolute maximums.


Operation principle of hysteresis motor?

Give a brief idea of principle of hysteresis motor,application.


Give a simple example of a username?

welcome


Give an example of a strong number?

145

Related questions

Who you write application for fee concession give you for example?

PARENTS


How do you implement ABC in service industry with example?

You give them your business application


How do you do a cosine regression on a graphic calculator?

I don't believe the graphic calculator has a cosine regression tool, but if you go to STAT, and CALC, there is a sin regression tool. If you hit enter on that then insert your L values, it will come up with a sin regression. The sin regression should be the same as a cosine regression, except that the sin regression should have a different value of C, usually getting rid of the value of C altogether will give you the correct regression.


Give an example of parallel projection related to real world application?

hfgh


How do you answer application questions?

Give an example of a situation where you had to work with others to achieve a common goal and how you achieved this


Give an example of a sentence with the word enclosure?

Please find enclosed my application for the position available.


What are Software testing objectives?

The objective of software testing is to check: 1. whether the application is working as expected without any errors or bugs(Functionality) 2. whether the performance of the application is as expected & meets the need.


When and where is the next police academy recertification class, and how do I sign up?

The police department in your community can give you information about the academy, requirements, application, testing and start dates.


What can you conclude if the global test of regression does not reject the null hypothesis?

You can conclude that there is not enough evidence to reject the null hypothesis. Or that your model was incorrectly specified. Consider the exact equation y = x2. A regression of y against x (for -a < x < a) will give a regression coefficient of 0. Not because there is no relationship between y and x but because the relationship is not linear: the model is wrong! Do a regression of y against x2 and you will get a perfect regression!


Can you give an example of a sentence using the word 'derisive'?

The general response of the committee was to reject the application with derisive laughter.


What is network application and give 3 examples?

A network application has two components, one that runs on the local computer and one that runs on a remote computer. E-mail and surfing the internet are a common example of a network application.


Give example for white box testing?

min = A[0]; I = 1; while (I < N) { if (A[I] < min) min = A[I]; I = I + 1; } print min