Upload Button Icon Add office photos

Filter interviews by

SpotDraft QA Engineer Interview Questions and Answers for Experienced

Updated 30 Jul 2023

SpotDraft QA Engineer Interview Experiences for Experienced

1 interview found

QA Engineer Interview Questions & Answers

user image Anonymous

posted on 30 Jul 2023

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Job Portal and was interviewed in Jun 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Assignment 

Gave a scenario to automation assignment

Round 3 - One-on-one 

(2 Questions)

  • Q1. They will ask about the code which is written in the assignment and working.
  • Q2. Some basic automation Questions

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Technical 

(7 Questions)

  • Q1. Write an SQL query to find the 2nd largest salary
  • Ans. 

    SQL query to find the 2nd largest salary

    • Use the ORDER BY clause to sort salaries in descending order

    • Use the LIMIT clause to get the second row

  • Answered by AI
  • Q2. Write test cases of Login API
  • Ans. 

    Test cases for Login API

    • Verify valid credentials login successfully

    • Verify invalid credentials show error message

    • Verify login with empty username or password

    • Verify login with special characters in username or password

    • Verify login with long username or password

  • Answered by AI
  • Q3. In Jmeter, what is Rampup period
  • Ans. 

    Rampup period in JMeter is the time taken for all virtual users to start executing the test plan.

    • Rampup period is specified in seconds in JMeter test plan settings.

    • During the rampup period, JMeter gradually starts all virtual users to avoid overwhelming the server.

    • For example, if rampup period is set to 60 seconds and number of threads is 100, JMeter will start 1 thread every 0.6 seconds.

  • Answered by AI
  • Q4. Difference between cookie and cache
  • Ans. 

    Cookies are small pieces of data stored on the client side, while cache is temporary storage of web documents on the server or client side.

    • Cookies are used to store user-specific information like login credentials, preferences, etc.

    • Cache is used to store frequently accessed web documents to reduce loading times.

    • Cookies are sent with every HTTP request, while cache is used to store resources locally to reduce server loa...

  • Answered by AI
  • Q5. API vs Webservice
  • Ans. 

    API is a general term for any set of rules that allow different software applications to communicate with each other. A web service is a type of API that is accessed over a network.

    • API is a set of rules and protocols that allow different software applications to communicate with each other.

    • Web service is a type of API that is accessed over a network, typically using HTTP.

    • API can be used for various purposes like access...

  • Answered by AI
  • Q6. Write a program to find a prime number
  • Ans. 

    Program to find a prime number

    • Iterate through numbers starting from 2 up to the given number

    • Check if the number is divisible by any number other than 1 and itself

    • If not divisible, then it is a prime number

  • Answered by AI
  • Q7. Write a program to find the factorial
  • Ans. 

    Program to find the factorial of a number

    • Use a loop to multiply numbers from 1 to the given number

    • Handle edge cases like 0 and negative numbers

    • Example: For input 5, factorial is 5*4*3*2*1 = 120

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Indeed and was interviewed before Aug 2023. There were 3 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What is Smog Testing
  • Ans. 

    Smog testing is a process to measure the amount of pollutants emitted by vehicles to ensure they meet environmental standards.

    • Smog testing is also known as emissions testing or vehicle inspection.

    • It is typically required by law to ensure vehicles are not emitting excessive pollutants into the air.

    • The testing process usually involves measuring the levels of pollutants such as carbon monoxide, hydrocarbons, and nitrogen ...

  • Answered by AI
  • Q2. What is SDLC lifecycle
  • Ans. 

    SDLC lifecycle is the process of planning, creating, testing, and deploying software.

    • SDLC stands for Software Development Life Cycle

    • It includes phases like planning, analysis, design, implementation, testing, and maintenance

    • Each phase has specific goals and deliverables

    • Examples of SDLC models include Waterfall, Agile, and DevOps

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Given was a case study of lift, need to make test cases regarding that.
Round 3 - HR 

(1 Question)

  • Q1. What is your marital status, family and current job.
  • Ans. 

    Married with two children, currently working as a QA Engineer.

    • Married with two children

    • Currently working as a QA Engineer

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Technical 

(7 Questions)

  • Q1. Write an SQL query to find the 2nd largest salary
  • Ans. 

    SQL query to find the 2nd largest salary

    • Use the ORDER BY clause to sort salaries in descending order

    • Use the LIMIT clause to get the second row

  • Answered by AI
  • Q2. Write test cases of Login API
  • Ans. 

    Test cases for Login API

    • Verify valid credentials login successfully

    • Verify invalid credentials show error message

    • Verify login with empty username or password

    • Verify login with special characters in username or password

    • Verify login with long username or password

  • Answered by AI
  • Q3. In Jmeter, what is Rampup period
  • Ans. 

    Rampup period in JMeter is the time taken for all virtual users to start executing the test plan.

    • Rampup period is specified in seconds in JMeter test plan settings.

    • During the rampup period, JMeter gradually starts all virtual users to avoid overwhelming the server.

    • For example, if rampup period is set to 60 seconds and number of threads is 100, JMeter will start 1 thread every 0.6 seconds.

  • Answered by AI
  • Q4. Difference between cookie and cache
  • Ans. 

    Cookies are small pieces of data stored on the client side, while cache is temporary storage of web documents on the server or client side.

    • Cookies are used to store user-specific information like login credentials, preferences, etc.

    • Cache is used to store frequently accessed web documents to reduce loading times.

    • Cookies are sent with every HTTP request, while cache is used to store resources locally to reduce server loa...

  • Answered by AI
  • Q5. API vs Webservice
  • Ans. 

    API is a general term for any set of rules that allow different software applications to communicate with each other. A web service is a type of API that is accessed over a network.

    • API is a set of rules and protocols that allow different software applications to communicate with each other.

    • Web service is a type of API that is accessed over a network, typically using HTTP.

    • API can be used for various purposes like access...

  • Answered by AI
  • Q6. Write a program to find a prime number
  • Ans. 

    Program to find a prime number

    • Iterate through numbers starting from 2 up to the given number

    • Check if the number is divisible by any number other than 1 and itself

    • If not divisible, then it is a prime number

  • Answered by AI
  • Q7. Write a program to find the factorial
  • Ans. 

    Program to find the factorial of a number

    • Use a loop to multiply numbers from 1 to the given number

    • Handle edge cases like 0 and negative numbers

    • Example: For input 5, factorial is 5*4*3*2*1 = 120

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. When build is given what testing should you perform
  • Ans. 

    When a build is given, various types of testing should be performed to ensure the quality of the software.

    • Perform smoke testing to quickly check if the build is stable enough for further testing.

    • Conduct functional testing to verify that the software functions as expected.

    • Execute regression testing to ensure that new changes have not affected existing functionalities.

    • Carry out performance testing to assess the speed, re...

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Indeed and was interviewed before Aug 2023. There were 3 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What is Smog Testing
  • Ans. 

    Smog testing is a process to measure the amount of pollutants emitted by vehicles to ensure they meet environmental standards.

    • Smog testing is also known as emissions testing or vehicle inspection.

    • It is typically required by law to ensure vehicles are not emitting excessive pollutants into the air.

    • The testing process usually involves measuring the levels of pollutants such as carbon monoxide, hydrocarbons, and nitrogen ...

  • Answered by AI
  • Q2. What is SDLC lifecycle
  • Ans. 

    SDLC lifecycle is the process of planning, creating, testing, and deploying software.

    • SDLC stands for Software Development Life Cycle

    • It includes phases like planning, analysis, design, implementation, testing, and maintenance

    • Each phase has specific goals and deliverables

    • Examples of SDLC models include Waterfall, Agile, and DevOps

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Given was a case study of lift, need to make test cases regarding that.
Round 3 - HR 

(1 Question)

  • Q1. What is your marital status, family and current job.
  • Ans. 

    Married with two children, currently working as a QA Engineer.

    • Married with two children

    • Currently working as a QA Engineer

  • Answered by AI

Skills evaluated in this interview

SpotDraft Interview FAQs

How many rounds are there in SpotDraft QA Engineer interview for experienced candidates?
SpotDraft interview process for experienced candidates usually has 3 rounds. The most common rounds in the SpotDraft interview process for experienced candidates are Assignment, One-on-one Round and Resume Shortlist.
What are the top questions asked in SpotDraft QA Engineer interview for experienced candidates?

Some of the top questions asked at the SpotDraft QA Engineer interview for experienced candidates -

  1. They will ask about the code which is written in the assignment and worki...read more
  2. Some basic automation Questi...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 SpotDraft interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

QA Engineer Interview Questions from Similar Companies

View all
SpotDraft QA Engineer Salary
based on 4 salaries
₹5.5 L/yr - ₹11.5 L/yr
59% more than the average QA Engineer Salary in India
View more details

SpotDraft QA Engineer Reviews and Ratings

based on 1 review

3.0/5

Rating in categories

1.0

Skill development

4.0

Work-Life balance

3.0

Salary & Benefits

3.0

Job Security

4.0

Company culture

2.0

Promotions/Appraisal

3.0

Work Satisfaction

Explore 1 Review and Rating
Software Engineer
12 salaries
unlock blur

₹9 L/yr - ₹20 L/yr

Senior Software Engineer
10 salaries
unlock blur

₹26 L/yr - ₹30 L/yr

Legal Associate
7 salaries
unlock blur

₹4.8 L/yr - ₹6 L/yr

Artificial Intelligence Developer
4 salaries
unlock blur

₹5.4 L/yr - ₹5.4 L/yr

Apac Customer Success Manager
4 salaries
unlock blur

₹18 L/yr - ₹18.5 L/yr

Explore more salaries
Compare SpotDraft with

LegalDesk.com

3.9
Compare

Vakilsearch

3.4
Compare

QuickCompany

5.0
Compare

Myadvo

4.0
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview