i
TAAZAA
Filter interviews by
I follow a collaborative Agile process emphasizing iterative development, continuous feedback, and adaptive planning.
Daily Stand-ups: We hold brief meetings to discuss progress and roadblocks, ensuring team alignment.
Sprint Planning: We define the scope of work for each sprint, prioritizing tasks based on business value.
User Stories: We create user stories to capture requirements from the end-user perspective, ens...
Reverse a string while preserving the positions of whitespace characters.
Use two pointers: one for the start of the string and one for the end.
Iterate through the string and collect non-whitespace characters.
Replace characters in the original string with reversed characters, keeping whitespaces intact.
Example: Input: 'a b c', Output: 'c b a'.
Example: Input: ' a b ', Output: ' b a '.
To find the first non-repeating character in a string, use a frequency count and then identify the first character with a count of one.
1. Use a hash map (or dictionary) to count occurrences of each character.
2. Iterate through the string a second time to find the first character with a count of one.
3. Example: For the string 'swiss', the counts are {'s': 3, 'w': 1, 'i': 1}. The first non-repeating character is 'w'...
Identify the most common substring in a list of strings by counting occurrences.
Use a dictionary to count occurrences of each substring.
Iterate through each string and generate all possible substrings.
Example: For ['abc', 'ab', 'bc'], substrings are 'a', 'ab', 'b', 'bc', 'c'.
Find the substring with the highest count.
Example: In ['hello', 'hell', 'he'], 'he' occurs twice.
Yes, I am able to handle chats as part of my customer service responsibilities.
I have experience in handling customer inquiries and resolving issues through chat platforms.
I am proficient in typing and can effectively communicate with customers in a written format.
I am comfortable multitasking and can manage multiple chat conversations simultaneously.
I am familiar with using chat software and tools to provide effi...
REST is an architectural style using HTTP, while SOAP is a protocol with strict standards for web services.
REST uses standard HTTP methods (GET, POST, PUT, DELETE) for communication.
SOAP relies on XML-based messaging and has a strict contract defined by WSDL.
REST is stateless, meaning each request from a client contains all the information needed to process it.
SOAP supports WS-Security for secure messaging, while ...
Given a string 'STR' consisting solely of the characters “{”, “}”, “(”, “)”, “[” and “]”, determine if the parentheses are balanced.
The first line contains an ...
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...
You are given three non-zero numbers 'A', 'B', and 'C'. Your task is to determine the number created by concatenating the largest digit found in each number, in the se...
Concatenate the largest digit from three numbers in sequence to form a new number.
Find the largest digit in each number 'A', 'B', and 'C'.
Concatenate the largest digits in the sequence 'A', 'B', and 'C' to form a new number.
Return the concatenated number as the output.
You are given a set of 'N' stones, each with a specific weight and color. The goal is to fill a knapsack with exactly 'M' stones, choosing one stone of each color, so that the tot...
The goal is to fill a knapsack with exactly 'M' stones, one of each color, minimizing unused capacity.
Iterate through stones, keeping track of weights for each color
Sort stones by weight and color, then select one stone of each color
Calculate total weight for each combination and minimize unused capacity
If knapsack cannot be filled, return -1
I appeared for an interview in Mar 2025, where I was asked the following questions.
Reverse a string while preserving the positions of whitespace characters.
Use two pointers: one for the start of the string and one for the end.
Iterate through the string and collect non-whitespace characters.
Replace characters in the original string with reversed characters, keeping whitespaces intact.
Example: Input: 'a b c', Output: 'c b a'.
Example: Input: ' a b ', Output: ' b a '.
REST is an architectural style using HTTP, while SOAP is a protocol with strict standards for web services.
REST uses standard HTTP methods (GET, POST, PUT, DELETE) for communication.
SOAP relies on XML-based messaging and has a strict contract defined by WSDL.
REST is stateless, meaning each request from a client contains all the information needed to process it.
SOAP supports WS-Security for secure messaging, while REST ...
I appeared for an interview in Feb 2025, where I was asked the following questions.
To find the first non-repeating character in a string, use a frequency count and then identify the first character with a count of one.
1. Use a hash map (or dictionary) to count occurrences of each character.
2. Iterate through the string a second time to find the first character with a count of one.
3. Example: For the string 'swiss', the counts are {'s': 3, 'w': 1, 'i': 1}. The first non-repeating character is 'w'.
4. T...
Identify the most common substring in a list of strings by counting occurrences.
Use a dictionary to count occurrences of each substring.
Iterate through each string and generate all possible substrings.
Example: For ['abc', 'ab', 'bc'], substrings are 'a', 'ab', 'b', 'bc', 'c'.
Find the substring with the highest count.
Example: In ['hello', 'hell', 'he'], 'he' occurs twice.
They gave some basic code to get output and also told me to write the code
My strengths include problem-solving skills and attention to detail. My weakness is that I can be overly critical of my own work.
Strengths: problem-solving skills
Strengths: attention to detail
Weakness: overly critical of my own work
I am fit for this position due to my strong technical skills, experience in software development, and ability to work well in a team.
Strong technical skills in programming languages such as Java, C++, and Python
Experience in software development projects, including creating and maintaining applications
Ability to work well in a team environment, collaborating with colleagues to achieve project goals
Some basic reasoning questions
I applied via Naukri.com and was interviewed in Oct 2023. There were 3 interview rounds.
Yes, I am able to handle chats as part of my customer service responsibilities.
I have experience in handling customer inquiries and resolving issues through chat platforms.
I am proficient in typing and can effectively communicate with customers in a written format.
I am comfortable multitasking and can manage multiple chat conversations simultaneously.
I am familiar with using chat software and tools to provide efficient...
I appeared for an interview before Jun 2024, where I was asked the following questions.
I follow a collaborative Agile process emphasizing iterative development, continuous feedback, and adaptive planning.
Daily Stand-ups: We hold brief meetings to discuss progress and roadblocks, ensuring team alignment.
Sprint Planning: We define the scope of work for each sprint, prioritizing tasks based on business value.
User Stories: We create user stories to capture requirements from the end-user perspective, ensuring...
Managing frequent client changes requires agile methodologies, effective communication, and robust testing strategies to ensure quality releases.
Implement Agile methodologies to accommodate changes quickly, such as Scrum or Kanban.
Establish a clear communication channel with the client to understand their needs and priorities.
Utilize automated testing to ensure that new changes do not break existing functionality.
Condu...
Staying late at work can be challenging, but it can also lead to personal growth and team success.
Prioritize tasks: Focus on high-impact tasks that need immediate attention, like critical bug fixes.
Communicate with the team: Keep everyone informed about your progress and any challenges you face.
Maintain work-life balance: Ensure that staying late doesn't become a habit; take breaks to avoid burnout.
Use the time for lea...
I applied via Job Portal and was interviewed in Apr 2023. There were 3 interview rounds.
I applied via Campus Placement and was interviewed in Mar 2024. There were 2 interview rounds.
30 minutes Aptitude test
AI as a job replacer
Top trending discussions
Some of the top questions asked at the TAAZAA interview -
The duration of TAAZAA interview process can vary, but typically it takes about less than 2 weeks to complete.
based on 19 interview experiences
Difficulty level
Duration
based on 111 reviews
Rating in categories
Software Engineer
160
salaries
| ₹6.1 L/yr - ₹13 L/yr |
Senior Software Engineer
90
salaries
| ₹16 L/yr - ₹30.5 L/yr |
Module Lead
35
salaries
| ₹19.1 L/yr - ₹33 L/yr |
QA Engineer
33
salaries
| ₹6.8 L/yr - ₹14.2 L/yr |
Associate Software Engineer
32
salaries
| ₹3 L/yr - ₹7.5 L/yr |
Maxgen Technologies
JoulestoWatts Business Solutions
Value Point Systems
F1 Info Solutions and Services