Upload Button Icon Add office photos
Engaged Employer

i

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

TAAZAA Verified Tick

Compare button icon Compare button icon Compare
4.3

based on 132 Reviews

Filter interviews by

TAAZAA Associate Software Engineer Interview Questions, Process, and Tips

Updated 1 Apr 2024

Top TAAZAA Associate Software Engineer Interview Questions and Answers

  • Q1. Colorful Knapsack You are given 'N' stones labeled from 1 to 'N'. The 'i-th' stone has the weight W[i]. There are 'M' colors labeled by integers from 1 to 'M'. The 'i-th' ...read more
  • Q2. Valid Parentheses You're given string ‘STR’ consisting solely of “{“, “}”, “(“, “)”, “[“ and “]” . Determine whether the parentheses are balanced. Input Format: The first ...read more
  • Q3. Concatenate the largest digit You are given three non-zero numbers ‘A’, ‘B’, and ‘C’. The task is to find the number formed by concatenating the largest digit from each o ...read more

TAAZAA Associate Software Engineer Interview Experiences

4 interviews found

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

Some basic reasoning questions

Round 2 - One-on-one 

(2 Questions)

  • Q1. Basic fundamentals
  • Q2. Opps,codes like palindrome, Factorial to check the basic understanding.
Round 3 - HR 

(1 Question)

  • Q1. Introduction, and few questions to check basic communication skills.

Interview Preparation Tips

Interview preparation tips for other job seekers - Go with the basics, clear your understanding on the concepts
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
-

I applied via campus placement at Birla Institute of Technology (BIT), Ranchi and was interviewed in Aug 2023. 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 - Aptitude Test 

General apti question.related to time work, profit loss etc.

Round 3 - Technical 

(1 Question)

  • Q1. Oops,SQL, database,dsa
Round 4 - Technical 

(1 Question)

  • Q1. Overall cs fundamentals, project 2 dsa question on strings
Round 5 - HR 

(1 Question)

  • Q1. Managerial questions

Associate Software Engineer Interview Questions Asked at Other Companies

asked in Accenture
Q1. Triplets with Given SumYou are given an array/list ARR consisting ... read more
asked in Clarivate
Q2. Best time to buy and sell stock IIYou have been given stock value ... read more
Q3. Intersection of Two Arrays IIYou have been given two integer arra ... read more
asked in CGI Group
Q4. Frog JumpThere is a frog on the 1st step of an N stairs long stai ... read more
asked in Gainsight
Q5. Connect N Ropes With Minimum CostYou have been given 'N' ropes of ... read more

I was interviewed in Jan 2021.

Round 1 - Video Call 

(2 Questions)

Round duration - 20 minutes
Round difficulty - Easy

technical round with technical team.
Here my projects and internships were evaluated

  • Q1. Technical Questions

    Difference between mysql and mongodb
    I was asked to explain my projects with used technology and approach

  • Ans. 

    MySQL is a relational database management system while MongoDB is a NoSQL document-oriented database.

    • MySQL is based on a traditional table-based structure while MongoDB uses a flexible JSON-like document model.

    • MySQL supports ACID transactions while MongoDB supports atomic operations on a single document.

    • MySQL is suitable for structured data with complex relationships while MongoDB is better for unstructured or semi-str...

  • Answered by AI
  • Q2. Valid Parentheses

    You're given string ‘STR’ consisting solely of “{“, “}”, “(“, “)”, “[“ and “]” . Determine whether the parentheses are balanced.

    Input Format:
    The first line contains an Integer &...
  • Ans. 

    The task is to determine whether the given string of parentheses is balanced or not.

    • Use a stack data structure to check for balanced parentheses.

    • Iterate through the string and push opening parentheses onto the stack.

    • If a closing parenthesis is encountered, check if it matches the top of the stack.

    • If it matches, pop the top element from the stack.

    • If the stack is empty at the end, the parentheses are balanced.

    • If the stac...

  • Answered by AI
Round 2 - HR 

(1 Question)

Round duration - 20 minutes
Round difficulty - Easy

HR questions were asked and remuneration details were given to me

  • Q1. Basic HR Questions

    Why Taazaa?

    Do you have any other offer?

    What is your biggest achievement?

  • Ans. 

    I chose Taazaa because of its strong reputation in the software industry and its commitment to innovation and growth.

    • Taazaa has a great track record of delivering high-quality software solutions to clients.

    • I was impressed by the company's focus on continuous learning and professional development.

    • Taazaa's collaborative and inclusive work culture aligns with my values and career goals.

    • I believe Taazaa offers excellent op...

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Associate Software Engineer in NoidaEligibility criteriaAbove 7 CGPA, No criteriaTaazaa Tech Pvt. Ltd. interview preparation:Topics to prepare for the interview - OOPs Concepts, MySQL Database, MongoDB database, Data structures, PHP, JQuery, Angular6, Python, basic HR questionsTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Start preparation as early as possible
Tip 2 : Prepare projects
Tip 3 : Focus on communication more

Application resume tips for other job seekers

Tip 1 : Explain yourself properly there, resume reflects your personality. Modify resume according to company/position requirements
Tip 2 : Do not write too much, it should be simple and decent
Tip 3 : Keep it honest and simple. Do not try to use heavy words to create impression. 
Tip 4 : Include academic certificates/internships before mentioning extra curricular. This will show your priority.

Final outcome of the interviewSelected

Skills evaluated in this interview

I was interviewed in Nov 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Hard

This round have both mcq and coding questions. This round contain basically 4 different sections such as:
Aptitude 
Reasoning
English
Coding

  • Q1. Concatenate the largest digit

    You are given three non-zero numbers ‘A’, ‘B’, and ‘C’. The task is to find the number formed by concatenating the largest digit from each of these numbers in the order of ‘A’...

  • Ans. Find All Digits

    A simple and efficient approach is to find all the digits of the given number and find the largest digit from them. For a number ‘x’, the digit at units place is equal to ‘x%10’ (‘%’ gives the division’s remainder). If we divide ‘x’ by ‘10’, each digit of ‘x’ will be shifted to the right, and the digit at the hundreds place will be shifted to units place. Now ‘x%10’ will give the digit at the hundreds pl...

  • Answered by CodingNinjas
  • Q2. Colorful Knapsack

    You are given 'N' stones labeled from 1 to 'N'. The 'i-th' stone has the weight W[i]. There are 'M' colors labeled by integers from 1 to 'M'. The &...

  • Ans. Recursive Approach
    1. Create an array/list of size m+1. Let’s call this as weights, and add each weight of i’th color at the index i.
    2. Call a recursive function with color 1 and having current weight as 0. The base case would be If we reach the (m+1)th color means we have exhausted the colors so return 0.
    3. Now for i’th color, we will have a list of stones. We will try using each stone. We will use the stone if the
    current weigh...
  • Answered by CodingNinjas
Round 2 - HR 

(1 Question)

Round duration - 20 minutes
Round difficulty - Easy

The interview was happened in friendly manner. In this round HR ask me about some questions regarding me to check my confidence and communication skills , as well as some questions related to my project which i mentioned on my resume

  • Q1. Basic HR Questions

    How quickly do you adapt to new technology? 

    What software packages are you familiar with?

  • Ans. 

    Tip 1 : Be loyal to hr always 
    Tip 2 : Please be sure while answering question the HR will noted in database 
    Tip 3 : Be calm and speak confidently

  • Answered by CodingNinjas

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Associate Software Engineer in NoidaEligibility criteriaAbove 7 cgpaTaazaa Tech Pvt. Ltd. interview preparation:Topics to prepare for the interview - OOPS CONCEPTS, TKINTER MODULE in python, data Structures, sorting algorithms, dynamic programming basics, SQL statements like DML,DCL,DQL,DDL, Procedures and functions in PLSQL, Some of the topics that i prepared are HTML, CSS, JS, Data Structure and Algorithms, OS, React.Time required to prepare for the interview - 5 monthsInterview preparation tips for other job seekers

Tip 1 : Practice one coding problem daily
Tip 2 : Revise your projects if any as the interviewer may ask questions based on your project. 
Tip 3 : Please communicate in English with others
Tip 4 : Practice atleast 300 questions and focus on that kind of questions that were asked by the company in the previous interviews.
Tip 5 : Revise Data Structures and Algorithms.

Application resume tips for other job seekers

Tip 1 : Set your font size to 10-12 points.
Tip 2 : Don't put false things in your resume.
Tip 3 : Add hyperlink to your resume, It gives good impact
Tip 4 : Mention all your skills and achievement in your resume .
Tip 5 : one major project and mini project in resume

Final outcome of the interviewSelected

Skills evaluated in this interview

TAAZAA interview questions for designations

 Software Engineer

 (3)

 Software Developer

 (2)

 QA Engineer

 (2)

 Node JS Developer

 (1)

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Jun 2024. There were 4 interview rounds.

Round 1 - Coding Test 

In the coding test, there were 2 problems based on arrays and hashing (easy to medium level leetcode)

Round 2 - One-on-one 

(2 Questions)

  • Q1. Several OOP questions were asked.... like, Can we have a class inside an interface? Can we have a static constructor? Can we have multiple main methods?
  • Q2. DBMS question: Normalization questions and keys concepts.
Round 3 - One-on-one 

(2 Questions)

  • Q1. DSA question (stack based) You have a stack full of numbers, you have to arrange them in ascending order in the same stack without using any other data structure.
  • Q2. OS and DBMS questions(sharding, semaphores, etc.)
Round 4 - HR 

(1 Question)

  • Q1. Questions based on Consultadd principles.

Interview Preparation Tips

Interview preparation tips for other job seekers - Review data structures and algorithms (DSA) once before the interview, as Consultadd interviews primarily focus on DSA. Additionally, revisit technical subjects such as Operating Systems (OS), Database Management Systems (DBMS), Computer Networks (CN), DSA, Algorithm Design and Analysis (ADA), and Object-Oriented Programming (OOP).
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Jagan Institute of Management Studies (JIMS) and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. A Lot of OOPS and Virtual concept
  • Q2. Basic SQL till joins
  • Q3. Java script medium
  • Q4. C# oops output based

Interview Preparation Tips

Topics to prepare for Indus Valley Partners Associate Software Engineer interview:
  • OOPS
  • C#
  • Javascript
  • SQL
Interview preparation tips for other job seekers - Learn OOPS, Learn DBMS and practice SQL queries a lot and DSA till Linked list
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Feb 2024. There were 4 interview rounds.

Round 1 - Coding Test 

Basic pattern question

Round 2 - Coding Test 

Moderate level related to array and string

Round 3 - Coding Test 

Difficult questions pattern string array tree

Round 4 - HR 

(1 Question)

  • Q1. Basic introduction salary expectation

Interview Preparation Tips

Topics to prepare for Cyntexa Associate Software Engineer interview:
  • Data Structures
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Aug 2022. There were 4 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 - Aptitude Test 

Aptitude test on logocal reasoning and maths question

Round 3 - Coding Test 

All sql queries and oops concept.

Round 4 - One-on-one 

(2 Questions)

  • Q1. About yourself and about your views on questions.
  • Q2. Oops concept and .net basics

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn more on sql queries and .net and be yourself
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via campus placement at Shri Ram Murti Smarak College of Engineering and Technology, Bareilly and was interviewed before Aug 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Oops, DS, Sql programming
  • Q2. Use of zip file
  • Ans. 

    A zip file is a compressed file format used to store multiple files and folders together.

    • Zip files are commonly used for reducing file size and organizing multiple files into a single archive.

    • They can be created, extracted, and manipulated using various software tools.

    • Examples of software that can work with zip files include WinZip, 7-Zip, and built-in tools like Windows Explorer.

    • Zip files can be password protected for...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
-

I applied via Campus Placement and was interviewed before Mar 2022. There were 2 interview rounds.

Round 1 - Coding Test 

All the questions are related to Java Concepts.

Round 2 - Technical 

(3 Questions)

  • Q1. They do the technical interview according to the person.
  • Q2. Not to worry too much. Just some OOPs concepts.
  • Q3. If you are knowledgable, it'll be a rapid fire but fun.

Interview Preparation Tips

Interview preparation tips for other job seekers - don't go for it. This is not a company, it's like a factory. They will over exploit you. And there is too much nepotism.

TAAZAA Interview FAQs

How many rounds are there in TAAZAA Associate Software Engineer interview?
TAAZAA interview process usually has 4 rounds. The most common rounds in the TAAZAA interview process are Aptitude Test, Technical and HR.
How to prepare for TAAZAA Associate Software 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 TAAZAA. The most common topics and skills that interviewers at TAAZAA expect are Agile, Computer science, Digital Electronics, Entity Framework and Javascript.
What are the top questions asked in TAAZAA Associate Software Engineer interview?

Some of the top questions asked at the TAAZAA Associate Software Engineer interview -

  1. Overall cs fundamentals, project 2 dsa question on stri...read more
  2. Opps,codes like palindrome, Factorial to check the basic understandi...read more
  3. Introduction, and few questions to check basic communication skil...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 TAAZAA interview
Campus Placement
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
TAAZAA Associate Software Engineer Salary
based on 31 salaries
₹3 L/yr - ₹7 L/yr
20% less than the average Associate Software Engineer Salary in India
View more details

TAAZAA Associate Software Engineer Reviews and Ratings

based on 6 reviews

3.9/5

Rating in categories

3.8

Skill development

4.1

Work-Life balance

3.5

Salary & Benefits

3.8

Job Security

4.0

Company culture

3.7

Promotions/Appraisal

3.8

Work Satisfaction

Explore 6 Reviews and Ratings
Software Engineer
132 salaries
unlock blur

₹3.6 L/yr - ₹14.4 L/yr

Senior Software Engineer
75 salaries
unlock blur

₹8.5 L/yr - ₹26 L/yr

Associate Software Engineer
31 salaries
unlock blur

₹3 L/yr - ₹7 L/yr

QA Engineer
31 salaries
unlock blur

₹4.8 L/yr - ₹17 L/yr

Module Lead
30 salaries
unlock blur

₹15.1 L/yr - ₹30 L/yr

Explore more salaries
Compare TAAZAA with

Infosys

3.7
Compare

TCS

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
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