Sobes.tech

QA / QA Automation

What HTTP response codes do you know? What are the groups 2xx, 3xx, 4xx, 5xx responsible for?

264

How would you choose among several offers? What is important, and what is not?

253

[Name], tell us about your work experience: workplaces, projects, technologies.

227

Explain in simple words for a junior: what are Docker Image, Docker Container, and Dockerfile?

224

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.

212

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]

194

Why did you choose testing rather than development, considering the extensive development experience?

192

Task: write test cases for a console application that takes 3 integers (triangle side lengths) and returns: equilateral, isosceles, scalene, or error.

190