Upload Button Icon Add office photos

Filter interviews by

Turvo Associate Quality Engineer Interview Questions and Answers

Updated 31 Jan 2024

Turvo Associate Quality Engineer Interview Experiences

2 interviews found

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

I applied via Job Fair and was interviewed in Dec 2023. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. 1. Program to sort an array 2. Program to find first two large numbers in array 3. Theory Questions on manual testing, Java oops concepts, Java collections, testng, selenium, frameworks 4. Explain framewo...
  • Ans. 

    Sorting an array and finding first two large numbers, along with theory questions on manual testing, Java concepts, and frameworks.

    • To sort an array, you can use built-in sorting functions like Arrays.sort() in Java.

    • To find the first two large numbers in an array, you can iterate through the array and keep track of the two largest numbers.

    • Theory questions on manual testing can include topics like test case design, test ...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. 1. Asked a program on hash map 2. Detailed concepts of Java oops 3. Framework that has been used in project 4. Types of exceptions 5. Examples of overloading, overriding, interfaces of your project, how ...
Round 3 - One-on-one 

(1 Question)

  • Q1. Behavioural round Asked more about work culture of current company How many test cases you have automated in a sprint Why you want to switch job Tell me about yourself and your organisation Tip: be hones...

Interview Preparation Tips

Interview preparation tips for other job seekers - Concentrate on OOPS concepts, have clear understanding on every concept

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Core Java, collection, list, programs

Associate Quality Engineer Interview Questions Asked at Other Companies

asked in Turvo
Q1. 1. Program to sort an array 2. Program to find first two large nu ... read more
asked in HARMAN
Q2. What is functional Testing and provide some test scenarios of any ... read more
Q3. Difference between interface and abstract class
asked in HARMAN
Q4. Do you know anything about patching?
asked in HARMAN
Q5. How to check the IP of windows machine?

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Find max sum of sub array
  • Ans. 

    Find the maximum sum of a subarray within an array of integers.

    • Iterate through the array and keep track of the current sum and maximum sum seen so far.

    • If the current sum becomes negative, reset it to 0 as it won't contribute to the maximum sum.

    • Return the maximum sum found after iterating through the entire array.

  • Answered by AI
  • Q2. What is throttling in js ?
  • Ans. 

    Throttling in JavaScript is a technique used to control the rate at which a function is executed.

    • Throttling limits the number of times a function can be called over a specified period.

    • It is commonly used in scenarios like scroll events, resize events, and API requests to prevent performance issues.

    • Example: Debouncing a search input to limit the number of API calls made while typing.

  • Answered by AI

Skills evaluated in this interview

I was interviewed in Jan 2021.

Round 1 - Coding Test 

(3 Questions)

Round duration - 120 minutes
Round difficulty - Medium

Due to pandemic placement process went virtual. Test was conducted at 10 A.M.

  • Q1. 

    Decode String Problem Statement

    Your task is to decode a given encoded string back to its original form.

    Explanation:

    An encoded string format is <count>[encoded_string], where the 'encoded_string...

  • Ans. 

    The task is to decode an encoded string back to its original form by repeating the encoded string 'count' times.

    • Parse the input string to extract the count and the encoded string within the brackets

    • Use recursion to decode the encoded string by repeating it 'count' times

    • Handle nested encoded strings by recursively decoding them

    • Output the decoded string for each test case

  • Answered by AI
  • Q2. 

    Detect and Remove Loop in Linked List

    For a given singly linked list, identify if a loop exists and remove it, adjusting the linked list in place. Return the modified linked list.

    Expected Complexity:

    A...

  • Ans. 

    Detect and remove loop in a singly linked list in place with O(n) time complexity and O(1) space complexity.

    • Use Floyd's Cycle Detection Algorithm to identify the loop in the linked list.

    • Once the loop is detected, use two pointers approach to find the start of the loop.

    • Adjust the pointers to remove the loop and return the modified linked list.

    • Example: For input 5 2 and 1 2 3 4 5, output should be 1 2 3 4 5.

  • Answered by AI
  • Q3. 

    Infix to Postfix Conversion

    You are provided with a string EXP which represents a valid infix expression. Your task is to convert this given infix expression into a postfix expression.

    Explanation:

    An i...

  • Ans. 

    Convert a given infix expression to postfix expression.

    • Use a stack to keep track of operators and operands.

    • Follow the rules of precedence for operators (*, / have higher precedence than +, -).

    • Handle parentheses by pushing them onto the stack and popping when closing parenthesis is encountered.

  • Answered by AI
Round 2 - Coding Test 

(1 Question)

Round duration - 30 minutes
Round difficulty - Medium

Due to pandemic placement process went virtual. Test was conducted at 2 P.M.

  • Q1. 

    Find First Repeated Character in a String

    Given a string 'STR' composed of lowercase English letters, identify the character that repeats first in terms of its initial occurrence.

    Example:

    Input:
    STR =...
  • Ans. 

    The task is to find the first repeated character in a given string of lowercase English letters.

    • Iterate through the string and keep track of characters seen so far in a set.

    • If a character is already in the set, return it as the first repeated character.

    • If no repeated character is found, return '%'.

  • Answered by AI
Round 3 - Video Call 

(1 Question)

Round duration - 45 minutes
Round difficulty - Medium

Video Call interview where the interview happened for around 45 minutes.

  • Q1. 

    Maximum Sum Path in a Binary Tree Problem Statement

    You are provided with a binary tree consisting of N nodes where each node has an integer value. The task is to determine the maximum sum achievable by a...

  • Ans. 

    Find the maximum sum achievable by a simple path between any two nodes in a binary tree.

    • Traverse the binary tree to find all possible paths and calculate their sums.

    • Keep track of the maximum sum encountered during traversal.

    • Consider paths that may include the same node twice.

    • Implement a recursive function to explore all paths in the tree.

    • Optimize the solution to avoid redundant calculations.

  • Answered by AI
Round 4 - HR 

Round duration - 30 minutes
Round difficulty - Easy

Video Call interview where the interview happened for around 30 minutes.

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from B V Raju Institute of Technology. I applied for the job as Associate Software Engineer in HyderabadEligibility criteriaAbove 8 CGPADelhivery interview preparation:Topics to prepare for the interview - Java, Operating Systems, Git, LInux, Networking, C++, Python, DataStructures and Algorithms, OOPS, Dynamic ProgrammingTime required to prepare for the interview - 3 MonthsInterview preparation tips for other job seekers

Tip 1 : Practise 5 problems daily from websites like hackerrank, codechef, codeforces
Tip 2 : Participate in codechef, codeforces contest.
Tip 3 : Attend mock interviews and should have good communication skills.

Application resume tips for other job seekers

Tip 1 : Maintain atleast 2 different projects, write powerful summary statement.
Tip 2 : Maintain skills relevant to job description, include relevant experience.

Final outcome of the interviewRejected

Skills evaluated in this interview

Interview Questionnaire 

2 Questions

  • Q1. What is DHCP,DNS,etc
  • Ans. 

    DHCP is a protocol that assigns IP addresses to devices on a network. DNS is a system that translates domain names to IP addresses.

    • DHCP assigns IP addresses to devices on a network

    • DNS translates domain names to IP addresses

    • DHCP reduces the need for manual IP address configuration

    • DNS allows users to access websites using domain names instead of IP addresses

  • Answered by AI
  • Q2. Dynamics host configuration Protocol Domain Name System

Skills evaluated in this interview

Interview Questionnaire 

2 Questions

  • Q1. There was so many questions asked to me in interview, i had gone through four different rounds of interview.
  • Q2. I was well prepared for the interview. I didn't know that there will be four rounds. I have faced them confidently with accurate answers within a time. They had impressed on my confidence and my verbal com...

I applied via Approached by Company and was interviewed in Aug 2021. 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 - Coding Test 

Assignment to develop a prototype

Round 3 - One-on-one 

(3 Questions)

  • Q1. Face to face questions
  • Q2. Java Question Technical & coding
  • Q3. Mongodb & Mysql Question

I applied via Campus Placement and was interviewed before May 2021. There were 2 interview rounds.

Round 1 - Coding Test 

Will be given Requirement to write code for Restraunt. Based on that have write code for delivering orders by delivery boys.

Round 2 - Technical 

(1 Question)

  • Q1. OOPS Concepts, Java Basics, Collections, MultiThreading

Interview Preparation Tips

Topics to prepare for LogiNext Solutions Software Engineer interview:
  • Java
  • OOPS
  • MySQL
  • Pattern Programming
Interview preparation tips for other job seekers - Focus on DSA and Logical Programming
Interview experience
2
Poor
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Shortest path sum with negative integers allowed in matrix. Path starts from top left to bottom right.
  • Ans. 

    Use dynamic programming to find the shortest path sum with negative integers allowed in a matrix.

    • Implement dynamic programming to store the minimum sum at each cell

    • Consider negative integers when calculating the sum of the path

    • Start from the top left cell and iterate through the matrix to find the shortest path sum

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Write spring code
  • Ans. 

    Spring code is used for building Java applications with ease and efficiency.

    • Use @ComponentScan annotation to automatically detect and register Spring beans

    • Use @Autowired annotation for dependency injection

    • Use @RequestMapping annotation to map HTTP requests to specific handler methods

  • Answered by AI
  • Q2. Design pattern questions asked

Skills evaluated in this interview

Turvo Interview FAQs

How many rounds are there in Turvo Associate Quality Engineer interview?
Turvo interview process usually has 2 rounds. The most common rounds in the Turvo interview process are One-on-one Round and Technical.
How to prepare for Turvo Associate Quality Engineer interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Turvo. The most common topics and skills that interviewers at Turvo expect are Selenium, Android, Automation, Functional Testing and Open Source.
What are the top questions asked in Turvo Associate Quality Engineer interview?

Some of the top questions asked at the Turvo Associate Quality Engineer interview -

  1. 1. Program to sort an array 2. Program to find first two large numbers in array...read more
  2. 1. Asked a program on hash map 2. Detailed concepts of Java oops 3. Framework ...read more
  3. Core Java, collection, list, progr...read more

Tell us how to improve this page.

Turvo Associate Quality Engineer Interview Process

based on 2 interviews

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Delhivery Interview Questions
3.9
 • 456 Interviews
Ecom Express Interview Questions
3.8
 • 197 Interviews
BlackBuck Interview Questions
3.8
 • 175 Interviews
XpressBees Interview Questions
3.6
 • 159 Interviews
FarEye Interview Questions
3.1
 • 27 Interviews
Honda Logistics Interview Questions
3.8
 • 25 Interviews
LetsTransport Interview Questions
3.5
 • 19 Interviews
View all
Turvo Associate Quality Engineer Salary
based on 7 salaries
₹11 L/yr - ₹14.7 L/yr
119% more than the average Associate Quality Engineer Salary in India
View more details
Software Engineer
55 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Software Engineer
32 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
26 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Quality Engineer
19 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Site Reliability Engineer
11 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Turvo with

BlackBuck

3.8
Compare

Delhivery

3.9
Compare

Shadowfax Technologies

3.6
Compare

Ecom Express

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