What types of testing are considered non-functional and how do they differ from functional testing?
QA / QA Automation
Why is it principled to adhere to SOLID principles when developing software?
Can you explain what is meant by annotation in programming?
Explain what is meant by a non-relational database.
# 1 a = [1, 2, 3] b = a b.append(4) # print(a) # print(a is b) # 2 a = 10 b = a # print(a is b) b += 5 # print(a) # print(b) #3 # data = { # ([1, 2, 3]): "a", # (1, 2, 3): "b" # } # print(data) #4 a = (1, [2, 3]) # a[1].append(4) # print(a) #5 a = [1, 2, 2, 3] b = set(a) # print(len(a), len(b))
Can you explain what is meant by integration testing and how it differs from unit testing?
Did you use any reporting?
What is the purpose of the Final modifier in Java, and in what cases is it used?
What annotations have you used in pytest?
What tools do you use for automating software integration and delivery processes?
Tell me, what is parameterization in pytest.
Can you explain the main principles underlying SOLID and how they influence system design?
Is it possible to use a body in a GET request, for example, to send JSON?
Can you talk about the key principles that guide software testing?
How to find a <div> element with a specific class using XPath?
Implement a function to determine if two words are anagrams. Example: кабан — банка
If a test is marked yellow in the report, is it a product defect?
What is the difference between HTTP and HTTPS?
What types of databases do you know?