You have accumulated a large backlog of bugs (for example, 80 out of 100 tasks are bugs). What should you do about this? How can you prevent accumulation in the future?
QA / QA Automation
What and at what stages should an AQA do when working on a task?
The developer fixed a failure, but the auto-tests in the pipeline are red. How to see where the error is?
Why is the Browser interface needed if classes Chrome and Firefox implement this interface?
Suppose the algorithm for calculating the deposit rate depends on two parameters: - presence of a client subscription: A, B, C (preferably, the client should have it) - deposit term How do these parameters affect the rate: 1. Deposit term 1.1. up to 6 months -> rate 17% 1.2. more than 6 months -> rate 15% 2. Client subscription 2.1. Subscription A -> rate increases by 20% 2.2. Subscription B -> rate may increase by 1.5% Task: analyze the checks your colleague made and add to the list. You have no more than 5 minutes for this.
How would you make changes to the codebase from the perspective of working with Git?
What happens to a message in Kafka after it has been read by a Consumer?
Tell me about your experience working with databases. What queries did you make?
What do you see in the log record? What information can be found?
// Task: Write a method that returns true, // if the input array of int contains 3 or more // consecutive numbers anywhere. // For example: // someMethod([2, 4, 5, 6, 2]) -> true // someMethod([0, 22, 23, 24, 29]) -> true // someMethod([1, 2, 3, 4]) -> true // someMethod([1, 2, 4]) -> false
What are logs? What can be found there?
If an API works over HTTPS, uses GET, POST, PUT, PATCH, DELETE as intended, and exchanges JSON, will it always be RESTful?
What is REST and how do you understand it?
What other test design techniques, besides equivalence classes and boundary value analysis, have you used in practice?
How would you organize the acceptance process of a product implemented by an outsourcing team according to the existing requirements?
What is TLS protocol?
Name three main advantages of implementing a message broker in architecture.