How to check the availability of multiple users by their IDs with one test, if each performs the same GET and expects HTTP 200?
QA / QA Automation
Can you explain what a red-black tree is and what its advantages are?
What architectural styles of APIs do you know?
#Task 1 #Given a list: list_numbers = [2, 6, 3, 19, 10, 4, 11, 16, 12, 5, 4, 16, 1, 0, 8, 16, 10, 10, 8, 5, 1, 11, 10, 10, 12, 0, 0, 0] #Print YES if the list contains numbers 5 and 19, or NO if it does not; # Task 2 # Write a function remove_vowels(text: str): that: # Takes a string text as input. # Removes all vowels (Latin a, e, i, o, u – in any case) from the string. first_string = "Hello World!" second_string = "Python" third_string = "aeiou" # Task 3 # There are two dictionaries. Merge them so that when keys match, their values are summed. d_one = {'apple': 10, 'banana': 20, 'super_kiwi': 30} d_two = {'orange': 15, 'super_kiwi': 25, 'lemon': 5} # Result should be {'apple': 10, 'banana': 20, 'super_kiwi': 55, 'orange': 15, 'lemon': 5} # Task 4 """ Create a class BankAccount with methods deposit(amount) - Deposit withdraw(amount) - Withdrawal with balance check balance() - Print current balance """
How to get unique records from a database table?
How to run only UI or only API tests in pytest?
What are positional and named arguments, and does their order matter when declaring a function?
How to get 10 non-unique records from a database table?
Tell about OOP in Python and its principles.
Did you set up the environment and run the tests yourself?
Tell us what you did to build test automation from scratch.
Explain the syntax of pytest.mark.parametrize.
Explain LEFT JOIN.
How does yield differ from return?
What questions do you have about the project, stack, and work format?