TesterToday
Welcome
Profile
Dictionary
About
Contacts
Email us
Report a Bug
Pairwise generator
Base64 decode/encode
1
Sign up
Log in
Test
[ interview ]
1. What type of testing is performed to check the basic functionality of the system?
Regression
Smoke
Load
Unit
Correct
Incorrect
Log in
2. Which response statuses indicate a client error?
200 OK
400 Bad Request
401 Unauthorized
403 Forbidden
404 Not Found
500 Internal Server Error
Correct
Incorrect
Log in
3. Which header defines the content type of the request/response?
Accept
Authorization
Content-Type
User-Agent
Correct
Incorrect
Log in
4. Describe the data in JSON format
name: Alice
age: 25
skills: Postman, SQL
Correct
Incorrect
Log in
5. What testing techniques are used in black-box testing?
Boundary Value Analysis
Code Coverage Testing
Equivalence Partitioning
Condition Testing
Correct
Incorrect
Log in
6. What is the minimum number of tests needed to check the range from 1 to 10 using boundary analysis?
2
3
4
5
Correct
Incorrect
Log in
7. Which of the following relates to the equivalence partitioning technique?
Checking boundaries of valid values
Dividing input data into groups
Checking component interactions
Path Testing
Correct
Incorrect
Log in
8. Which of these bugs are critical?
Authorization error: form does not submit
Typo in the footer: "Contacts" is misspelled
Shopping cart is cleared after page reload
Smooth scrolling works with delay
Correct
Incorrect
Log in
9. Where in DevTools can you see the body of the sent request?
Application → Cookies
Elements → Properties
Network → Payload
Console → Request
Correct
Incorrect
Log in
10. Write an SQL query that selects all users over 18 years old, sorted by age descending
Table
users
id
name
age
...
...
...
Correct
Incorrect
Log in
Next