Please name the structure of a REST request. What does it include?
QA / QA Automation
Is it possible to access non-relational databases using SQL?
How to get the book with the highest price — using MAX(price) or sorting with LIMIT 1?
You are constantly in the system testing phase. What could be the problem?
You mentioned that you wrote a test plan. Do you think it should be written at all?
How does garbage collector work in Python? If a memory cell references another memory cell — will GC delete both references or do nothing?
You partially touched on client-server architecture. How does a two-tier architecture differ from a three-tier one?
# 1. What is the difference between == and is? # 2. What will we get? #print(['123', 'yes'][False][1]) # 3. What will we get? #a = ([1, 2, 3], 'qweqwe') #print(hash(a)) # 4. What's wrong? #elementText = "Hello"; #type = str #for elem in range(len(elementText)): # print(elementText[elem])
What types of databases are there?
You said there is an HTTP method. Is HTTP really a method?
In a test plan, there are fields like test start criteria and test end criteria — tell us about them.
How do you see the testing process within a sprint? What should precede testing and what is the criterion for its completion?
Looking from line 26 — what stands out in the code?
# 3. What will we get? # 4. What's wrong? #5. There is a dictionary with integer values, return the same #6. There is a dictionary with string keys, return a new dictionary, # 7. In which case will the method run without errors?
What testing techniques have you used?
Why are headers needed? It seems that this information can be transmitted in the body.
-- create CREATE TABLE books ( bookid INTEGER PRIMARY KEY, name TEXT NOT NULL, typeid INTEGER NOT NULL, price INTEGER NOT NULL, pagecount INTEGER NOT NULL ); -- insert INSERT INTO books VALUES (0001, 'Дюна', 1, 1200, 1000); INSERT INTO books VALUES (0002, 'Черновик', 3, 500, 800); INSERT INTO books VALUES (0003, 'Чистовик', 2, 800, 586); INSERT INTO books VALUES (0004, 'Отцы и Дети', 9, 456, 400); INSERT INTO books VALUES (0005, 'Мастер и Маргарита', 1, 505, 1200); INSERT INTO books VALUES (0006, 'Белая гвардия', 7, 900, 250); INSERT INTO books VALUES (0007, 'Мертвые души', 1, 1600, 1000); INSERT INTO books VALUES (0008, 'Война и Мир', 1, 950, 310); INSERT INTO books VALUES (0009, 'Метро 2033', 2, 2000, 600); INSERT INTO books VALUES (0010, 'Дюна', 1, 1200, 1000); -- fetch SELECT * FROM books;