Upload Button Icon Add office photos
Engaged Employer

i

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

ConsultAdd Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

ConsultAdd Interview Questions and Answers

Updated 4 May 2025
Popular Designations

10 Interview questions

A Sdet Lead was asked 5mo ago
Q. What is the time complexity of bubble sort on a sorted list?
Ans. 

Bubble sorting has a time complexity of O(n^2) for a sorted list.

  • Bubble sorting has a worst-case time complexity of O(n^2) for a sorted list.

  • The time complexity does not change even if the list is already sorted.

  • Example: If we have a sorted list of size n, bubble sorting will still take O(n^2) time.

View all Sdet Lead interview questions
A Sdet Lead was asked 5mo ago
Q. What is an abstract class?
Ans. 

An abstract class is a class that cannot be instantiated and may contain abstract methods that must be implemented by its subclasses.

  • Cannot be instantiated directly

  • May contain abstract methods

  • Used as a blueprint for other classes

View all Sdet Lead interview questions
A Sdet Lead was asked 5mo ago
Q. What is abstraction?
Ans. 

Abstraction is the process of hiding complex details and showing only the essential features of an object or system.

  • Abstraction allows us to focus on what an object does, rather than how it does it

  • It helps in simplifying complex systems by breaking them down into smaller, more manageable parts

  • Examples of abstraction include using a car without needing to understand its internal combustion engine, or using a smartp...

View all Sdet Lead interview questions
A Software Developer Trainee was asked 7mo ago
Q. What is the longest subsequence in a string?
Ans. 

Find the longest subsequence in a string

  • Iterate through the string and keep track of the longest subsequence found so far

  • Use a hashmap to store the last index of each character seen

  • Update the longest subsequence length when a character is repeated

View all Software Developer Trainee interview questions
An Associate Software Engineer was asked 8mo ago
Q. How can you detect if a Singly Linked List is cyclic in an optimal way?
Ans. 

Use Floyd's cycle detection algorithm to find if a Singly Linked List is cyclic or not.

  • Use two pointers, slow and fast, where slow moves one step at a time and fast moves two steps at a time.

  • If there is a cycle, the two pointers will eventually meet at some point.

  • If the fast pointer reaches the end of the list (null), then there is no cycle.

View all Associate Software Engineer interview questions
A Software Developer was asked 8mo ago
Q. How do you implement a queue using a stack?
Ans. 

To implement a queue using a stack, use two stacks and simulate the queue operations.

  • Use two stacks, one for enqueue operation and one for dequeue operation.

  • For enqueue operation, simply push elements onto the stack used for enqueueing.

  • For dequeue operation, if the dequeue stack is empty, pop all elements from enqueue stack and push onto dequeue stack.

  • Then pop from the dequeue stack to simulate dequeue operation.

View all Software Developer interview questions
A Senior Software Engineer was asked
Q. What is the requirement?
Ans. 

A requirement is a specific need or expectation that must be met in order to achieve a desired outcome.

  • A requirement is a statement of what a product or service must do or how it must perform.

  • Requirements can be functional (what the product must do) or non-functional (how well it must do it).

  • Requirements should be clear, concise, and measurable.

  • Examples of requirements include: the ability to save and retrieve dat...

View all Senior Software Engineer interview questions
Are these interview questions helpful?
A Java Developer was asked
Q. Find the second largest element in an array with the least time complexity.
Ans. 

Find the 2nd largest element in an array with the least time complexity.

  • Sort the array in descending order and return the element at index 1.

  • Initialize two variables to keep track of the largest and second largest elements.

  • Iterate through the array and update the variables accordingly.

  • Return the second largest element.

View all Java Developer interview questions
A Marketing Intern was asked
Q. Describe a product that aligns with your personality and explain why.
Ans. 

I resonate with a Swiss Army Knife, embodying versatility, adaptability, and practicality in my approach to challenges.

  • Versatility: Like a Swiss Army Knife, I can handle various tasks, from creative brainstorming to data analysis.

  • Adaptability: I thrive in dynamic environments, adjusting my strategies based on changing market trends.

  • Practicality: I focus on solutions that are effective and efficient, ensuring that ...

View all Marketing Intern interview questions
A Sdet Lead was asked 5mo ago
Q. Best sorting algo?time complexity of it?
Ans. 

QuickSort is one of the best sorting algorithms with an average time complexity of O(n log n).

  • QuickSort is a divide and conquer algorithm that works by selecting a 'pivot' element and partitioning the array around the pivot.

  • It has an average time complexity of O(n log n) and a worst-case time complexity of O(n^2).

  • Example: ['apple', 'banana', 'cherry', 'date', 'fig'] can be sorted using QuickSort.

  • Example: ['3', '1'...

View all Sdet Lead interview questions

ConsultAdd Interview Experiences

37 interviews found

Interview experience
3
Average
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

I applied via Google and was interviewed in Aug 2023. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Coding Test 

Coding questions about array and string.

Round 3 - Coding Test 

Cosing questions about sql and ds.

Round 4 - HR 

(1 Question)

  • Q1. Personal and behavioral questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well with the fundamentals.

Sdet Lead Interview Questions & Answers

user image Anonymous

posted on 17 Jan 2025

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

(4 Questions)

  • Q1. What is an abstract class?
  • Ans. 

    An abstract class is a class that cannot be instantiated and may contain abstract methods that must be implemented by its subclasses.

    • Cannot be instantiated directly

    • May contain abstract methods

    • Used as a blueprint for other classes

  • Answered by AI
  • Q2. What is abstraction?
  • Ans. 

    Abstraction is the process of hiding complex details and showing only the essential features of an object or system.

    • Abstraction allows us to focus on what an object does, rather than how it does it

    • It helps in simplifying complex systems by breaking them down into smaller, more manageable parts

    • Examples of abstraction include using a car without needing to understand its internal combustion engine, or using a smartphone ...

  • Answered by AI
  • Q3. Best sorting algo?time complexity of it?
  • Ans. 

    QuickSort is one of the best sorting algorithms with an average time complexity of O(n log n).

    • QuickSort is a divide and conquer algorithm that works by selecting a 'pivot' element and partitioning the array around the pivot.

    • It has an average time complexity of O(n log n) and a worst-case time complexity of O(n^2).

    • Example: ['apple', 'banana', 'cherry', 'date', 'fig'] can be sorted using QuickSort.

    • Example: ['3', '1', '4'...

  • Answered by AI
  • Q4. You have been provided a sorted list time complexity achieved after we apply bubble sorting
  • Ans. 

    Bubble sorting has a time complexity of O(n^2) for a sorted list.

    • Bubble sorting has a worst-case time complexity of O(n^2) for a sorted list.

    • The time complexity does not change even if the list is already sorted.

    • Example: If we have a sorted list of size n, bubble sorting will still take O(n^2) time.

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. Have you ever been to a state other than jharkhand?
  • Ans. 

    Yes, I have been to multiple states other than Jharkhand.

    • I have traveled to states like Maharashtra, Karnataka, and Tamil Nadu for work and leisure.

    • I have visited tourist destinations in states like Rajasthan, Kerala, and Himachal Pradesh.

    • I have family in states like Uttar Pradesh, Bihar, and West Bengal, which I have visited multiple times.

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I appeared for an interview in Nov 2024.

Round 1 - Aptitude Test 

Questions related to rfp and procurement law

Round 2 - One-on-one 

(2 Questions)

  • Q1. Regarding indian contract act
  • Q2. Regarding indian competition law

Interview Preparation Tips

Interview preparation tips for other job seekers - Study about RFP and gov tendering

Associate Interview Questions & Answers

user image Anonymous

posted on 13 Sep 2024

Interview experience
3
Average
Difficulty level
Moderate
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 

(3 Questions)

  • Q1. Question related to oops
  • Q2. Question related to coding
  • Q3. I was rejected after 2nd round
Round 2 - Technical 

(2 Questions)

  • Q1. Question related to advanced topic in oops
  • Q2. Question related to coding
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.
  • Ans. 

    Sort a stack of numbers in ascending order using only the stack itself.

    • Use a temporary stack to hold elements while sorting.

    • Pop elements from the original stack and compare with the temporary stack.

    • Push elements to the temporary stack in sorted order.

    • Once sorted, transfer elements back to the original stack.

  • Answered by AI
  • 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 and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Coding Test 

2 coding questions medium to hard level

Round 2 - Technical 

(3 Questions)

  • Q1. Doubly Linkeded List
  • Q2. How to find if the Singly Linked List is cyclic or not in optimal way
  • Ans. 

    Use Floyd's cycle detection algorithm to find if a Singly Linked List is cyclic or not.

    • Use two pointers, slow and fast, where slow moves one step at a time and fast moves two steps at a time.

    • If there is a cycle, the two pointers will eventually meet at some point.

    • If the fast pointer reaches the end of the list (null), then there is no cycle.

  • Answered by AI
  • Q3. DBMS Normalisation

Interview Preparation Tips

Interview preparation tips for other job seekers - Theoretical as well as practical knowledge can help to crack interview

Skills evaluated in this interview

Software Developer Interview Questions & Answers

user image Siddharth Choudhary

posted on 17 Oct 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Walk-in

Round 1 - Technical 

(2 Questions)

  • Q1. How make a queue using a stack
  • Ans. 

    To implement a queue using a stack, use two stacks and simulate the queue operations.

    • Use two stacks, one for enqueue operation and one for dequeue operation.

    • For enqueue operation, simply push elements onto the stack used for enqueueing.

    • For dequeue operation, if the dequeue stack is empty, pop all elements from enqueue stack and push onto dequeue stack.

    • Then pop from the dequeue stack to simulate dequeue operation.

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

    A linked list is a data structure consisting of nodes where each node points to the next node in the sequence.

    • Create a Node class with data and next pointer

    • Initialize a head pointer to null

    • Add nodes by updating next pointers

    • Traverse the list by following next pointers

  • Answered by AI

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Coding Test 

2 questions of DSA medium to hard

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

(3 Questions)

  • Q1. Given an array Reverse array
  • Q2. Giaven a string Reverse string
  • Q3. Given array find sum of all elements

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare DSA well

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Group Discussion 

Communication skills

Round 2 - One-on-one 

(2 Questions)

  • Q1. About US market and visa.
  • Q2. Cold calling and comfortable in working in night shift?
  • Ans. 

    Yes, I have experience with cold calling and working night shifts.

    • I have extensive experience in cold calling and have successfully built relationships with clients through this method.

    • I am comfortable working night shifts and have done so in previous roles, ensuring that all tasks are completed efficiently and effectively.

    • I understand the importance of flexibility in working hours in the recruitment industry and am wi...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Dsa oops cn os
Round 2 - Technical 

(1 Question)

  • Q1. Dsa oops cn os
Round 3 - HR 

(1 Question)

  • Q1. Yourself, education, family, future

Top trending discussions

View All
Interview Tips & Stories
1w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about ConsultAdd?
Ask anonymously on communities.

ConsultAdd Interview FAQs

How many rounds are there in ConsultAdd interview?
ConsultAdd interview process usually has 2-3 rounds. The most common rounds in the ConsultAdd interview process are Technical, Coding Test and HR.
How to prepare for ConsultAdd 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 ConsultAdd. The most common topics and skills that interviewers at ConsultAdd expect are Contract Management, Regulatory Compliance, Corporate Law, CS and Llb.
What are the top questions asked in ConsultAdd interview?

Some of the top questions asked at the ConsultAdd interview -

  1. 3. This question was related to the personality. So basically they asked me to ...read more
  2. Coding Question - Find 2nd largest element in array with least time complex...read more
  3. How to optimize nested queries to minimise number of comparisio...read more
How long is the ConsultAdd interview process?

The duration of ConsultAdd interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

4.2/5

based on 30 interview experiences

Difficulty level

Easy 23%
Moderate 73%
Hard 5%

Duration

Less than 2 weeks 73%
2-4 weeks 23%
More than 8 weeks 5%
View more

Interview Questions from Similar Companies

Affine Interview Questions
3.3
 • 51 Interviews
IT By Design Interview Questions
3.6
 • 41 Interviews
JMR Infotech Interview Questions
4.2
 • 33 Interviews
Systems Plus Interview Questions
4.3
 • 30 Interviews
VDart Interview Questions
4.0
 • 29 Interviews
Techouts Interview Questions
3.7
 • 29 Interviews
View all

ConsultAdd Reviews and Ratings

based on 60 reviews

3.6/5

Rating in categories

3.1

Skill development

3.6

Work-life balance

4.3

Salary

3.1

Job security

3.6

Company culture

3.7

Promotions

3.1

Work satisfaction

Explore 60 Reviews and Ratings
Software Engineer
45 salaries
unlock blur

₹5.8 L/yr - ₹18 L/yr

Business Analyst
36 salaries
unlock blur

₹5 L/yr - ₹11 L/yr

Management Engineer Trainee
17 salaries
unlock blur

₹4.6 L/yr - ₹5.8 L/yr

Management Trainee
16 salaries
unlock blur

₹4.6 L/yr - ₹6.5 L/yr

Associate Software Engineer
12 salaries
unlock blur

₹4.2 L/yr - ₹15 L/yr

Explore more salaries
Compare ConsultAdd with

JoulestoWatts Business Solutions

3.0
Compare

Value Point Systems

3.6
Compare

Saama Technologies

3.7
Compare

Systems Plus

4.3
Compare
write
Share an Interview