1000+ Automation Testing Interview Questions and Answers Pdf - 3

Question: 11

What is a code freeze?

Code freeze means the code has been locked from further modifications from developers. After the code freeze the code should not be changed by any developer. If at any changes are required it should be only for very critical bugs after taking permission from the top management of the project. Code freezes are often employed in the final stages of development.

Question: 12

What is SEPG?

The Software Engineering Process Group or the SEPG group is a group of Process. Specialists. These individuals facilitate the definition, maintenance, and improvement of software processes used by the Organization.

Question: 13

What is Configuration Testing in web testing?

This is a process of testing the application against different environments, different hardwares and different softwares.

Question: 14

What is the difference between web server and application server?

The Difference between AppServer and a Web server is as follows:

Web Server serves static HTML pages or gifs, jpegs, etc. An Application Server is used to run business logic or dynamically generated presentation code. It can either be. NET based or J2EE based.

A Web Server understands and supports only HTTP protocol whereas an Application Server supports HTTP, TCP/IP and many more protocols.

Web server Clients can include HTTP, HTML where as Application Server clients include GUI’s and Web Servers.

The Web server delegation model is fairly simple, when the request comes into the web server, it simply passes the request to the program best able to handle it (Server side program). It may not support transactions and database connection pooling.

The Application server is more capable of dynamic behavior than the web server. We can also configure the application server to work as a web server. Simply the application server is a superset of the web server.

Web servers are used for small to medium sized applications. These are less reliable and secure compared to application servers which are used for enterprise application.

Question: 15

What is the difference between a Bug and an Enhancement?

“Bug” is a problem or an error in the software code, which is found in the application during Testing.

“Enhancement” is the additional feature or functionality added to the application as desired by the end user.

Related Questions