Sobes.tech

QA / QA Automation

What types of testing are considered non-functional and how do they differ from functional testing?

245

Why is it principled to adhere to SOLID principles when developing software?

Junior — Middle
245

Can you explain what is meant by annotation in programming?

Junior — Middle
244

Explain what is meant by a non-relational database.

Junior — Middle
243

# 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))

243

Can you explain what is meant by integration testing and how it differs from unit testing?

Junior — Middle
241

What is the purpose of the Final modifier in Java, and in what cases is it used?

Junior — Middle
240

What tools do you use for automating software integration and delivery processes?

Junior — Middle
235

Can you explain the main principles underlying SOLID and how they influence system design?

Junior — Middle
234

Is it possible to use a body in a GET request, for example, to send JSON?

233

Can you talk about the key principles that guide software testing?

Junior — Middle
232

How to find a <div> element with a specific class using XPath?

Junior — Middle
228

Implement a function to determine if two words are anagrams. Example: кабан — банка

226

If a test is marked yellow in the report, is it a product defect?

225

What is the difference between HTTP and HTTPS?

223
/6