Which HTTP methods are idempotent, and which are not?
QA / QA Automation
What HTTP response codes do you know? What are the groups 2xx, 3xx, 4xx, 5xx responsible for?
How would you choose among several offers? What is important, and what is not?
What HTTP methods do you know and what are they responsible for?
What HTTP headers do you know?
[Name], tell us about your work experience: workplaces, projects, technologies.
Explain in simple words for a junior: what are Docker Image, Docker Container, and Dockerfile?
FizzBuzz. Write a program that outputs numbers from 1 to 100 separated by spaces, but instead of numbers divisible by 3, it writes Fizz; instead of numbers divisible by 5, it writes Buzz; and instead of numbers divisible by both 3 and 5, it writes FizzBuzz.
There is an array of positive and negative numbers. Positive numbers need to be moved to the beginning of the array in the original order. The negative numbers' position doesn't matter. The array is expected to be very large. [10, -1, -2, 3, 4, 6] -> [10, 3, 4, 6, 0, 0], [10, 3, 4, 6, 4, 6], [10, 3, 4, 6, -1, -2]
Why did you choose testing rather than development, considering the extensive development experience?
Task: write test cases for a console application that takes 3 integers (triangle side lengths) and returns: equilateral, isosceles, scalene, or error.
Where can you pass a variable in an HTTP request?