Upload Button Icon Add office photos

Filter interviews by

SplashBI Quality Assurance and Testing Interview Questions and Answers

Updated 29 Jun 2021

SplashBI Quality Assurance and Testing Interview Experiences

1 interview found

I applied via Recruitment Consultant and was interviewed in May 2021. There was 1 interview round.

Interview Questionnaire 

5 Questions

  • Q1. What is regression testing?
  • Ans. 

    Regression testing is the process of testing changes made to an application to ensure that existing functionalities are not affected.

    • It is performed after making changes to the software.

    • It ensures that the existing functionalities are not broken due to the changes.

    • It helps in identifying defects that may have been introduced due to the changes.

    • It can be automated to save time and effort.

    • Examples include testing a new v...

  • Answered by AI
  • Q2. What is stlc?
  • Ans. 

    STLC stands for Software Testing Life Cycle, which is a process followed to ensure software quality.

    • STLC involves planning, designing, executing, and reporting of tests.

    • It includes various phases such as requirement analysis, test planning, test design, test execution, and test closure.

    • STLC helps in identifying defects early in the development cycle, reducing the cost of fixing them.

    • It ensures that the software meets t...

  • Answered by AI
  • Q3. What is sdlc and use of sdlc in software testing?
  • Ans. 

    SDLC stands for Software Development Life Cycle. It is a process followed by software development teams to design, develop and test high-quality software.

    • SDLC is a framework that outlines the various stages involved in software development.

    • It includes planning, designing, coding, testing, and maintenance.

    • SDLC helps in ensuring that the software is developed efficiently and meets the requirements of the stakeholders.

    • In ...

  • Answered by AI
  • Q4. What is agile methodology?
  • Ans. 

    Agile methodology is an iterative approach to software development that emphasizes flexibility and customer satisfaction.

    • Agile methodology values individuals and interactions over processes and tools

    • It emphasizes working software over comprehensive documentation

    • It involves frequent collaboration between developers and stakeholders

    • It allows for changes and adjustments to be made throughout the development process

    • Example...

  • Answered by AI
  • Q5. What is test case and test scenario and compare it?
  • Ans. 

    Test case is a set of inputs, execution conditions and expected results. Test scenario is a sequence of test cases.

    • Test case is a detailed description of a specific test.

    • Test scenario is a collection of related test cases.

    • Test case includes inputs, execution conditions and expected results.

    • Test scenario includes a sequence of test cases.

    • Test case is used to verify a specific functionality.

    • Test scenario is used to verif...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Speak clearly and vary your tone to show you're interested and enthusiastic.
End the interview with a good impression

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
4d (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about SplashBI ?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Campus Placement and was interviewed before Oct 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Everything in your resume questions from your domain and 1 quizzes

Interview Preparation Tips

Interview preparation tips for other job seekers - Completely prepare your resume

Quality Assurance and Testing Interview Questions Asked at Other Companies

asked in Deloitte
Q1. Suppose you are testing an application and you find a bug. You as ... read more
asked in Deloitte
Q2. Can we do functional testing at any stage of the development?
asked in Deloitte
Q3. What are some highly recommended test scenarios for an ATM machin ... read more
asked in Deloitte
Q4. What is the purpose of retesting while already doing integration ... read more
asked in Deloitte
Q5. What would be your approach to test execution if you were working ... read more

Interview Preparation Tips

Round: TECHNICAL ROUND TEST
Experience: A 45 mins round which consisted of 30 mins of core questions and 15 mins of data structures.  It was a mix of test on our knowledge .

Round: HR Interview
Experience: Most of the questions were based on general knowledge and many of them were from the resume provides by me

General Tips: It is always advisable to be prepared with certain set of general questions which make it easier to answer.
Skill Tips: Focus on your Study.. Revise the subject that you have studied at the time of Interview
Skills: Technical Skills
College Name: IIT MADRAS

Interview Preparation Tips

Round: Test
Experience: Questions were on Aptitude, English, Probability, Permutations andCombinations and Programming (C, C++). NO Group Discussion was held.Candidates were shortlisted on the basis of their test scores.

Round: Technical Interview
Experience: Total time of this round was 45 minutes.First 30 minutes, questions on core programming were asked and in the remaining 15 minutes questions were asked on data structures.

Round: HR Interview
Experience: This was a 5 minute round where questions were put up, some based on the resume and other were general questions.

Skills: Knowledge in MATLAB.
College Name: IIT MADRAS

I appeared for an interview in Mar 2018.

Interview Preparation Tips

General Tips: This interview was a technical one but was majorly a stress test. It lasted for about 1 hour 10 minutes. The interviewer wanted to test both my knowledge and communication skills. Most of the questions asked to me were related to my B.Tech curriculum i.e. computer science related topics. He stressed a lot on the basics related to my project topic. Luckily I was able to answer most of the questions correctly. I tried to answer each question with examples and also used props on the table (like pens, paperweights, pen stands etc.) to explain my theories. It was my first offcampus interview, and I think I did pretty well for a fresher.
You need to stay calm and should apply presence of mind. Please go through the job description thoroughly word-by-word and recheck your resume to ensure that you are a best-fit for the position.
Skills: Communication, Problem Solving, Leadership, Decision Making Skills

I applied via Recruitment Consultant and was interviewed before Apr 2019. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Multiple technical round questions around devops, python program development, kubernetes and linux. ( Question can be different based on job requirements)

Interview Preparation Tips

Interview preparation tips for other job seekers - Multiple technical (5 rounds) interview need some preparation.
Hr interview was formality if are really liked by technical panel you will pass hr round easily.

I applied via Campus Placement and was interviewed before Aug 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. It was mostly puzzles.
  • Q2. One algo question invoving recursive function .
  • Ans. 

    Recursive functions solve problems by breaking them down into smaller subproblems, often leading to elegant solutions.

    • A recursive function calls itself with modified parameters.

    • Base case is crucial to prevent infinite recursion.

    • Example: Factorial function - factorial(n) = n * factorial(n-1) with base case factorial(0) = 1.

    • Example: Fibonacci sequence - fib(n) = fib(n-1) + fib(n-2) with base cases fib(0) = 0, fib(1) = 1.

    • ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - For freshers - prepare puzzles and basic computer science fundamentals
Are these interview questions helpful?

I applied via Naukri.com and was interviewed in Mar 2021. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. What does BA will do
  • Ans. 

    A Business Analyst (BA) will analyze business processes, identify areas for improvement, and recommend solutions to enhance efficiency and productivity.

    • Analyze business processes

    • Identify areas for improvement

    • Recommend solutions to enhance efficiency and productivity

    • Collaborate with stakeholders to gather requirements

    • Create and maintain project documentation

    • Facilitate communication between technical and non-technical te...

  • Answered by AI
  • Q2. What is analytics
  • Ans. 

    Analytics is the process of analyzing data to gain insights and make informed decisions.

    • Analytics involves collecting, processing, and interpreting data

    • It can be used in various fields such as business, healthcare, and sports

    • Examples of analytics tools include Google Analytics, Tableau, and SAS

    • Analytics can help identify patterns, trends, and opportunities for improvement

    • It can also be used for predictive modeling and ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Its verygood

I applied via Campus Placement and was interviewed before Nov 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. In resume about our stream of study

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare the resume complete ly and your stream of study

Interview Questionnaire 

1 Question

  • Q1. Conceps

SplashBI Interview FAQs

What are the top questions asked in SplashBI Quality Assurance and Testing interview?

Some of the top questions asked at the SplashBI Quality Assurance and Testing interview -

  1. What is test case and test scenario and compare i...read more
  2. What is sdlc and use of sdlc in software testin...read more
  3. What is regression testin...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

GAO Tek Interview Questions
4.4
 • 277 Interviews
Bhanzu Interview Questions
3.9
 • 152 Interviews
Tutopia Interview Questions
4.2
 • 150 Interviews
BCD Travel Interview Questions
4.3
 • 113 Interviews
View all
Senior Software Engineer
15 salaries
unlock blur

₹11.9 L/yr - ₹31.2 L/yr

Associate Software Engineer
11 salaries
unlock blur

₹3.5 L/yr - ₹5 L/yr

Associate DevOps Engineer
10 salaries
unlock blur

₹7 L/yr - ₹7.2 L/yr

Software Engineer
8 salaries
unlock blur

₹3.5 L/yr - ₹10 L/yr

Senior QA Engineer
8 salaries
unlock blur

₹5.8 L/yr - ₹19.2 L/yr

Explore more salaries
Compare SplashBI with

Reliance Communications

4.0
Compare

Henry Harvin Education

3.8
Compare

GAO Tek

4.4
Compare

Tata Teleservices

3.9
Compare
write
Share an Interview