Premium Employer

i

This company page is being actively managed by Kiya.ai Team. If you also belong to the team, you can get access from here

Kiya.ai Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Kiya.ai Software Testing Engineer Interview Questions and Answers

Updated 24 Sep 2021

Kiya.ai Software Testing Engineer Interview Experiences

1 interview found

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

Interview Questionnaire 

3 Questions

  • Q1. What is bug life cycle?
  • Ans. 

    Bug life cycle is the process of identifying, reporting, fixing, and verifying software defects.

    • Bug is identified by testers or users

    • Bug is reported to developers

    • Developers fix the bug

    • Testers verify the fix

    • Bug is closed if verified or reopened if not

    • Bug can be reopened at any stage of the cycle

  • Answered by AI
  • Q2. What is integration testing?
  • Ans. 

    Integration testing is a type of testing where individual units are combined and tested as a group.

    • It involves testing the interactions between different modules or components of a system.

    • It ensures that the integrated system functions correctly as a whole.

    • It can be performed at different levels of the software development process, such as module, system, or acceptance testing.

    • Examples include testing the integration b...

  • Answered by AI
  • Q3. If timelines are less but lot of testing has pending then how could you handle??
  • Ans. 

    I would prioritize testing based on risk and impact analysis.

    • Conduct a risk and impact analysis to identify critical areas that need immediate testing.

    • Focus on testing the most critical functionalities first.

    • Automate repetitive and time-consuming tests to save time.

    • Collaborate with the development team to identify and fix issues quickly.

    • Communicate with stakeholders about the impact of delayed testing and work towards

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't get tense, try to answer for every question

Skills evaluated in this interview

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Jul 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. What is difference between flip-flop and Latches?
  • Ans. 

    Flip-flops and latches are sequential logic circuits used to store and manipulate binary data.

    • Flip-flops are edge-triggered devices, while latches are level-sensitive devices.

    • Flip-flops have separate clock and data inputs, while latches have a single input for both clock and data.

    • Flip-flops are used in synchronous circuits, while latches are used in asynchronous circuits.

    • Flip-flops are more complex and require more cir...

  • Answered by AI
  • Q2. Where is the money needed to recruited you for embedur system?.The Hr will ask.

Interview Preparation Tips

Interview preparation tips for other job seekers - Do not apply or just putting resume to this company.As the hr will make money with this job. They don't deseve Talented candidates.They want referrals and salary cuts for hr to hire you.Instead of hiring candidates for software position, They should hire best Hr first (definitely in chennai)

Interview Questionnaire 

1 Question

  • Q1. All regarding networking and c

I applied via Job Portal and was interviewed in Apr 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Basic concept of JS

Interview Preparation Tips

Interview preparation tips for other job seekers - Good
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Dec 2023. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Famous Java Questions like why string is immuatable and basics of OOPs.
  • Q2. Easy to medium level DSA based on array and string.
Round 2 - Technical 

(2 Questions)

  • Q1. Project Related Questions
  • Q2. Questions related to java 8 stream API
Round 3 - Technical 

(2 Questions)

  • Q1. Question related to basic recursion
  • Q2. Top kafka interview questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Your basics should be strong.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Jun 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Start of The Loop in LinkedList.
Length of Loop in LinkedList

Round 2 - Case Study 

API Contract for Notification sending via SMS and Email

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
Not Selected

I applied via Recruitment Consulltant

Round 1 - One-on-one 

(2 Questions)

  • Q1. Minimum element in an array
  • Ans. 

    Find the minimum element in an array of strings

    • Iterate through the array and compare each element to find the minimum

    • Use built-in functions like Math.min() or sort() to find the minimum

    • Handle edge cases like empty array or array with only one element

  • Answered by AI
  • Q2. Reverse a linked list
  • Ans. 

    Reverse a linked list by changing the next pointers of each node

    • Iterate through the linked list and change the next pointers to reverse the list

    • Use three pointers - prev, current, and next to keep track of nodes

    • Example: 1 -> 2 -> 3 -> 4 -> null, after reversing: 4 -> 3 -> 2 -> 1 -> null

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep your basics good then you can crack the interview

Skills evaluated in this interview

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

I appeared for an interview before Aug 2023.

Round 1 - Technical 

(2 Questions)

  • Q1. Java8 and multhithreading based questions
  • Q2. 1 Leetcode easy question
Round 2 - Technical 

(2 Questions)

  • Q1. TDD based live coding and spring based question
  • Q2. 1 leetcode medium question
Round 3 - HR 

(1 Question)

  • Q1. Salary negotiations and company fit based questions
Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. To do list design
Round 2 - Technical 

(1 Question)

  • Q1. Project related

Interview Preparation Tips

Topics to prepare for Deutsche Telekom Digital Labs Software Engineer interview:
  • DSA
Interview preparation tips for other job seekers - goodluck

I applied via Recruitment Consulltant and was interviewed in Sep 2022. There were 5 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 - One-on-one 

(1 Question)

  • Q1. Asked Kadane's algorithm, and some android related questions.
Round 3 - One-on-one 

(1 Question)

  • Q1. Design a hashmap, and optimise it
  • Ans. 

    Design and optimize a hashmap

    • Choose a good hash function to minimize collisions

    • Implement dynamic resizing to handle increasing load factor

    • Consider using open addressing or separate chaining for collision resolution

    • Use an efficient data structure for storing key-value pairs, such as an array or linked list

  • Answered by AI
Round 4 - Technical 

(1 Question)

  • Q1. Design a custom recyclerview with appropriate data structures
  • Ans. 

    Custom recyclerview with appropriate data structures

    • Create a custom adapter extending RecyclerView.Adapter

    • Implement onCreateViewHolder() and onBindViewHolder() methods

    • Use appropriate data structures like ArrayList or HashMap for efficient data handling

    • Implement onClickListener for item clicks

    • Use ViewHolder pattern for efficient view recycling

  • Answered by AI
Round 5 - HR 

(1 Question)

  • Q1. What are your expectations related to work and salary
  • Ans. 

    I expect fair compensation for my skills and experience, and a challenging work environment that allows for growth and learning.

    • I am looking for a salary that is commensurate with my experience and skills.

    • I am open to negotiation and willing to discuss salary and benefits.

    • I am looking for a challenging work environment that allows me to learn and grow as a software engineer.

    • I am interested in opportunities for professi...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself and don't be nervous. Interviewers are helpful and will guide you to a solution if you listen to them carefully.

Skills evaluated in this interview

Kiya.ai Interview FAQs

What are the top questions asked in Kiya.ai Software Testing Engineer interview?

Some of the top questions asked at the Kiya.ai Software Testing Engineer interview -

  1. If timelines are less but lot of testing has pending then how could you handl...read more
  2. What is integration testi...read more
  3. What is bug life cyc...read more

Tell us how to improve this page.

Join Kiya.ai Leading #FinTech Digital Solutions provider in the Financial sector

Interview Questions from Similar Companies

Fractal Analytics Interview Questions
4.0
 • 207 Interviews
MathCo Interview Questions
2.9
 • 113 Interviews
Zeta Interview Questions
3.4
 • 70 Interviews
embedUR Systems Interview Questions
3.2
 • 48 Interviews
Mitsogo Inc Interview Questions
3.0
 • 38 Interviews
Subex Interview Questions
3.5
 • 35 Interviews
CoinDCX Interview Questions
3.7
 • 29 Interviews
View all
Associate Consultant
759 salaries
unlock blur

₹4 L/yr - ₹14 L/yr

Senior Associate Consultant
360 salaries
unlock blur

₹5.2 L/yr - ₹19.3 L/yr

Consultant
140 salaries
unlock blur

₹7.2 L/yr - ₹23 L/yr

Senior Consultant
140 salaries
unlock blur

₹8 L/yr - ₹26 L/yr

Software Developer
116 salaries
unlock blur

₹3.4 L/yr - ₹15.1 L/yr

Explore more salaries
Compare Kiya.ai with

Fractal Analytics

4.0
Compare

Subex

3.5
Compare

MathCo

2.9
Compare

Innovatiview India Ltd

3.9
Compare
Did you find this page helpful?
Yes No
write
Share an Interview