What types of databases do you know?
QA / QA Automation
Can you explain what a relational database is and its main features?
What is the main function of the JUnit testing framework in Java application development?
What elements does a test scenario consist of?.
How to access a class attribute from outside — for reading or modification? How to restrict direct access?
Can you list the types of collection structures you have encountered?
Tell me, what is the goal of testing?
Why are selectors used in CSS or component frameworks?
What is the difference between TCP and UDP?
URL — where does it belong in the structure of an HTTP request?
You said that white box is a test design technique. Is that correct?
What are the main components of the Selenium tool?
Tell me about the defect lifecycle.
Have you worked with SQL on your project?
Can you list the databases used in Moven?
What annotations from the Allure library do you know and have used in your tests?
What is WebDriver?
Add default values to function arguments.
Please tell me about the test design techniques you have worked with and know.
""" Copying """ a = [[1, 2], ["str", "str"]] b = a b[0].append(3) # print(a) # print(b) print(b[0] is a[0])