Is a string in programming a fixed-length data type or can it be changed after creation?
QA / QA Automation
Can you explain the principles and purpose of continuous integration and deployment processes in software development?
What types of collection data structures have you used in your experience?
Implement a class BankAccount Initialize with owner: str, balance: float Methods: -- deposit: Adds funds to the balance -- withdraw: Deducts funds class BankAccount: def __init__(self, owner: str, balance: float): self.owner = owner self.balance = balance def deposit(self, amount: float): self.balance += amount def withdraw(self, amount: float): ...
Have you worked with Moven?
Can you list the main HTTP methods you know?
Tell about the keys in relational databases.
Have you worked exclusively with Selenium or with other frameworks as well?
What triggers were used to start the automated tests?
What is an application programming interface and what does it stand for?
Can you list the main types of CSS selectors and explain their purpose?
Can you list the main types of software testing methods?
Can you list the main HTTP status codes and their purposes?
Tell the full path of the task: from receipt to merge in git.
Can you name key annotations used in JUnit for organizing tests?
How does a static variable in programming differ, and what are its features?
Can you explain what the Allure tool is and what it is used for in testing?
Have you used Selenoid for browser testing automation?
What methods and tools do you use when performing manual testing of a software product?
Could you explain what the expression 'void 0' means in JavaScript?