Upload Button Icon Add office photos

Filter interviews by

Augtech Nextwealth Software QA Engineer Interview Questions and Answers

Updated 18 Nov 2021

Augtech Nextwealth Software QA Engineer Interview Experiences

1 interview found

I applied via Company Website and was interviewed in May 2021. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Related to job profile only
  • Q2. All answers form manual testing and java

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident while interview . Try to give all answers in brief with examples.

Interview questions from similar companies

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

I was interviewed in Oct 2024.

Round 1 - Coding Test 

First round was coding test on Coderbyte it was good.

Round 2 - Technical 

(2 Questions)

  • Q1. This round is video technical interview on flowcareer platform
  • Q2. Coding DSA question was asked on array.
Round 3 - Technical 

(2 Questions)

  • Q1. This round contains mix questions on theory as well as DSA.
  • Q2. Machine coding question asked on react.js.
Round 4 - Technical 

(2 Questions)

  • Q1. Some basic react.js and node.js questions.
  • Q2. Questions asked on MongoDB and one DSA question on array asked.
Round 5 - HR 

(1 Question)

  • Q1. This round is HR salary discussion round and i got offer.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Logical reasoning, grammar, and coding: two basic level questions.

Round 2 - Technical 

(3 Questions)

  • Q1. Question on core Java
  • Q2. Question on SQL and PLSQL
  • Q3. Resume based question and on project
Round 3 - HR 

(2 Questions)

  • Q1. Resume and project based question
  • Q2. What do you like about your current company, and why do you want to join our organization?
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Don't remember so I have no
  • Q2. I can't remember it
Round 2 - Technical 

(2 Questions)

  • Q1. I don't know the res
  • Q2. I can't remember it
Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Advanced Java coding

Round 2 - Technical 

(2 Questions)

  • Q1. Entire core Java arrays and strings
  • Ans. 

    Core Java arrays and strings are fundamental data structures used for storing and manipulating data in Java programming.

    • Arrays in Java are used to store multiple values of the same data type in a single variable.

    • Strings in Java are objects that represent sequences of characters.

    • Arrays and strings in Java are both indexed collections, with arrays being mutable and strings being immutable.

    • Example: String[] names = {"Alic

  • Answered by AI
  • Q2. Java collections and Framework
Round 3 - Technical 

(2 Questions)

  • Q1. Some coding and framework
  • Q2. REST assured and API

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare what ever you mention in the CV If you get shortlisted

Skills evaluated in this interview

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

I applied via Campus Placement

Round 1 - Technical 

(2 Questions)

  • Q1. Oops related questions
  • Q2. C language quizzes
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com

Round 1 - Technical 

(2 Questions)

  • Q1. Basics of kotlin, sealed class, viewmodel implementation,
  • Q2. Caching mechanism
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Technical aspects about linked list,trees, stacks

Round 2 - Group Discussion 

Topic related to humanities

Interview experience
3
Average
Difficulty level
Easy
Process Duration
2-4 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in Nov 2023. There were 3 interview rounds.

Round 1 - Coding Test 

There was mcq test with 1 sql code based question.

Round 2 - Technical 

(5 Questions)

  • Q1. It was technical interview of around 30 min, questions were direct and short on react lifecycle and basic concepts of js.
  • Q2. What is debounce and throttling?
  • Ans. 

    Debounce and throttling are techniques used in web development to limit the number of times a function is called.

    • Debounce delays the execution of a function until after a specified time period has elapsed without additional calls.

    • Throttling limits the rate at which a function is called, ensuring it is not called more than once within a specified time interval.

    • Debounce is useful for handling events like resizing a windo...

  • Answered by AI
  • Q3. What is diff between git merge and rebase?
  • Ans. 

    Git merge combines changes from different branches, while rebase moves the current branch to the tip of another branch.

    • Merge creates a new commit with combined changes, while rebase rewrites commit history.

    • Merge preserves the commit history of both branches, while rebase creates a linear history.

    • Merge is non-destructive and suitable for public branches, while rebase is destructive and should be used for private branche...

  • Answered by AI
  • Q4. What is diff between git fork and clone?
  • Ans. 

    Git fork creates a copy of a repository under your GitHub account, while git clone creates a local copy of a repository.

    • Fork creates a copy on GitHub, clone creates a local copy on your machine

    • Forking allows you to make changes without affecting the original repository

    • Cloning downloads the entire repository to your local machine

    • Forking is commonly used for contributing to open source projects

  • Answered by AI
  • Q5. What is DOM in react?
  • Ans. 

    DOM in React stands for Document Object Model, representing the structure of a web page as a tree of objects.

    • DOM in React is a virtual representation of the actual HTML elements on a web page.

    • React uses a virtual DOM to improve performance by updating only the necessary components.

    • Changes to the virtual DOM are compared with the real DOM, and only the differences are updated.

    • This helps in minimizing the number of DOM m...

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. It was based on round 2 but in detail.

Skills evaluated in this interview

I was interviewed in Nov 2020.

Round 1 - Coding Test 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Easy

  • Q1. Path Queries

    You are given a weighted, undirected graph with ‘V’ vertices numbered from 1 to ‘V’ and ‘E’ bidirectional edges.

    You have to answer ‘Q’ queries. Every query has two integers, ‘u’, ‘v’, repre...

  • Ans. Dijkstra Algorithm

    We will run Dijkstra Algorithm for all vertices in this approach and store the minimum distance in an array. Then we can answer the queries using this distance array.
     

    Dijkstra Algorithm is one of the most popular algorithms in graph theory. A single-source shortest path algorithm gives the shortest path length to all vertices from a given vertex known as the source vertex. It is a greedy algorith...

  • Answered by CodingNinjas
  • Q2.  Merge Sort

    Given a sequence of numbers ‘ARR’. Your task is to return a sorted sequence of ‘ARR’ in non-descending order with help of the merge sort algorithm.

    Example :

    Merge Sort Algorithm -
    
    Merge so...
  • Ans. Recursion

    The basic idea is that we divide the given ‘ARR’ into two-part call them ‘leftHalves’ and ‘rightHalves’ and call the same function again with both the parts. In the end, we will get sorted ‘leftHaves’ and sorted ‘righthalves’ which we merge both of them and return a merged sorted ‘ARR’.

    We implement this approach with a divide and conquer strategy.

     

    Here is the algorithm : 

     

    1. Divide ‘ARR’ into two-p...
  • Answered by CodingNinjas
  • Q3. Rat In a Maze: All Paths

    You are given a 'N' * 'N' maze with a rat placed at 'MAZE[0][0]'. Find and print all paths that rat can follow to reach its destination i.e. 'MAZE['...

  • Ans. Backtracking Approach

    Initialize, all the cells of the solution matrix used to print the path matrix to 0. First, you cannot make use of the existing maze to print the solution maze as you have to distinguish b/w 1 of maze or 1 of ‘SOLUTION matrix.

     

    Form a recursive function, which will follow a path and check if the path reaches the destination or not. If the path does not reach the destination then backtrack and t...

  • Answered by CodingNinjas

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Dronacharya College of Engineering. I applied for the job as SDE - 1 in NoidaEligibility criteriaNo criteriaLido Learning interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic Programming etcTime required to prepare for the interview - 1 monthInterview preparation tips for other job seekers

Tip 1 : Practice Atleast 250 Questions
Tip 2 : Do atleast 2 projects
 

Application resume tips for other job seekers

Tip 1 : Have some projects on resume.
Tip 2 : Do not put false things on resume.

Final outcome of the interviewRejected

Skills evaluated in this interview

Tell us how to improve this page.

People are getting interviews through

based on 1 Augtech Nextwealth interview
Company Website
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.1k Interviews
Infosys Interview Questions
3.7
 • 7.4k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.7k Interviews
HCLTech Interview Questions
3.6
 • 3.6k Interviews
LTIMindtree Interview Questions
3.9
 • 2.7k Interviews
Mphasis Interview Questions
3.4
 • 773 Interviews
View all

Augtech Nextwealth Software QA Engineer Reviews and Ratings

based on 2 reviews

4.4/5

Rating in categories

4.4

Skill development

4.4

Work-Life balance

3.4

Salary & Benefits

4.0

Job Security

4.4

Company culture

3.8

Promotions/Appraisal

4.4

Work Satisfaction

Explore 2 Reviews and Ratings
Processing Executive
105 salaries
unlock blur

₹1 L/yr - ₹2.5 L/yr

Quality Analyst
22 salaries
unlock blur

₹1.5 L/yr - ₹2.5 L/yr

Creative Executive
13 salaries
unlock blur

₹1.4 L/yr - ₹2 L/yr

Team Lead
9 salaries
unlock blur

₹1.9 L/yr - ₹4.2 L/yr

Data Processing Executive
8 salaries
unlock blur

₹1 L/yr - ₹1.6 L/yr

Explore more salaries
Compare Augtech Nextwealth with

Infosys

3.7
Compare

TCS

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.6
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