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, Process, and Tips for Freshers

Updated 17 Jan 2025

Top ConsultAdd Interview Questions and Answers for Freshers

View all 8 questions

ConsultAdd Interview Experiences for Freshers

Popular Designations

10 interviews found

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).

Associate Software Engineer Interview Questions asked at other Companies

Q1. Triplets with Given Sum Problem Given an array or list ARR consisting of N integers, your task is to identify all distinct triplets within the array that sum up to a specified number K. Explanation: A triplet is a set {ARR[i], ARR[j], ARR[k... read more
View answer (2)

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

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (43)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Given an array Reverse array
  • Ans. 

    Reverse array of strings

    • Iterate through the array and swap elements from start to end

    • Use two pointers, one at the beginning and one at the end, and swap elements until they meet

  • Answered by AI
  • Q2. Giaven a string Reverse string
  • Ans. 

    Reverse a given string

    • Use built-in functions like reverse() or loop through the string in reverse order

    • Create a new string and append characters from the original string in reverse order

    • Convert the string to an array of characters, reverse the array, and then join it back into a string

  • Answered by AI
  • Q3. Given array find sum of all elements
  • Ans. 

    Calculate sum of all elements in a given array of strings

    • Iterate through the array and convert each element to integer before adding to sum

    • Handle edge cases like empty array or non-numeric elements

    • Return the final sum after iterating through all elements

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare DSA well

Skills evaluated in this interview

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (220)
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 Apr 2024. There were 2 interview rounds.

Round 1 - Coding Test 

2 Questions were asked on string and array

Round 2 - Technical 

(3 Questions)

  • Q1. Basic OOPS questions
  • Q2. DBMS AND SQL queries
  • Q3. Coding ques: 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

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare DBMS, CN basic questions

Skills evaluated in this interview

Software Developer Trainee Interview Questions asked at other Companies

Q1. 1. Tell me about your self 2. Difference Between c & c++. 3. what is class? 4. what is object? 5. what is polymorphism? types of polymorphism explain real example of polymorphism. 6. what is inheritence? Difference between multiple &amp... read more
View answer (2)

ConsultAdd interview questions for popular designations

 Management Trainee

 (4)

 Software Developer

 (4)

 Software Engineer

 (3)

 Associate Software Engineer

 (3)

 Sdet Lead

 (2)

 Management Engineer Trainee

 (2)

 Information System Engineer

 (2)

 Graduate Trainee

 (1)

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

I applied via Campus Placement and was interviewed in Oct 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Only aptitude test will be there

Round 2 - Technical 

(2 Questions)

  • Q1. Oops DBMS DSA can
  • Q2. Remove nose from back of LinkedIn list
  • Ans. 

    Use a sorting algorithm to move the nose to the front of the LinkedIn list.

    • Implement a sorting algorithm that moves the nose to the front of the list.

    • Identify the nose in the list and swap it with the first element.

    • Update the LinkedIn list with the nose at the front.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well dsa

Skills evaluated in this interview

Software Development Engineer Intern Interview Questions asked at other Companies

Q1. Say you're dealing with really long integers. They're too long to fit into a regular datatype, so linked lists are used to store them, with each node of the list containing one digit. Now the problem is, given two linked lists, i.e. two rea... read more
View answer (2)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Jul 2023. 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 - Group Discussion 

General Topics discussion like Ai, Tech and monetization.

Round 3 - HR 

(1 Question)

  • Q1. Education Background Skills Projects Extra Caricullar

Management Engineer Trainee Interview Questions asked at other Companies

Q1. 2) Explain the mud circulation system, a) the significance of mud density and related questions
View answer (1)
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Jan 2023. 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 - Group Discussion 

Group discussion is very important thing.

Round 3 - HR 

(5 Questions)

  • Q1. HR round is very easy.
  • Q2. Just hard and smart work for.
  • Q3. What is 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 data, a ...

  • Answered by AI
  • Q4. What is your strength.
  • Ans. 

    My strength is problem-solving and analytical thinking.

    • I have a strong ability to analyze complex problems and break them down into manageable components.

    • I excel at finding innovative solutions and thinking outside the box.

    • I am skilled in debugging and troubleshooting software issues.

    • I have a solid understanding of algorithms and data structures.

    • I am experienced in optimizing code for performance and efficiency.

  • Answered by AI
  • Q5. What is your weekness.
  • Ans. 

    My weakness is that I tend to be too detail-oriented, which can sometimes slow down my progress.

    • I have a tendency to get caught up in the small details and can spend too much time on them.

    • I often find myself double-checking my work to ensure accuracy.

    • I sometimes struggle with prioritizing tasks because I want to make sure everything is perfect.

    • I am actively working on improving my time management skills to balance atte

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Work hard keep patience. Everything is Possible so just you can do it.

Senior Software Engineer Interview Questions asked at other Companies

Q1. Tell me about yourself. What technology are you using? What is a Collection? What are the different types of collection there? What is the difference between ArrayList and LinkedList What are the basic building blocks of Stream operators, s... read more
View answer (2)

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

Round 1 - Coding Test 

It was a pen paper test l, where we were given two questions of coding one of stack implementation and the other was of linked list.

Round 2 - Technical 

(1 Question)

  • Q1. In this roud they asked problem on DSA and approach to solve the question in optimised way.

Interview Preparation Tips

Topics to prepare for ConsultAdd Software Engineer Intern interview:
  • DSA
Interview preparation tips for other job seekers - Question were easy but they check your logic and approach.

Software Engineer Intern Interview Questions asked at other Companies

Q1. Check if Two Trees are Mirror Given two arbitrary binary trees, your task is to determine whether these two trees are mirrors of each other. Explanation: Two trees are considered mirror of each other if: The roots of both the trees are the... read more
View answer (1)

I applied via LinkedIn and was interviewed before Sep 2021. There were 4 interview rounds.

Round 1 - Aptitude Test 

Easy to medium level

Round 2 - Coding Test 

Decent one somewhat medium level

Round 3 - Technical 

(1 Question)

  • Q1. Asked oops concepts and basics
Round 4 - HR 

(1 Question)

  • Q1. Normal hr questions and puzzles

Interview Preparation Tips

Interview preparation tips for other job seekers - Quiet a good company to apply for and be confident in interview rounds

Associate Software Engineer Interview Questions asked at other Companies

Q1. Triplets with Given Sum Problem Given an array or list ARR consisting of N integers, your task is to identify all distinct triplets within the array that sum up to a specified number K. Explanation: A triplet is a set {ARR[i], ARR[j], ARR[k... read more
View answer (2)

I applied via Campus Placement and was interviewed in Oct 2020. There were 5 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Different task were given during the time of interview: 1. An audio was sent during the time of interview. Audio was based on a marketing executive who was marketing his online course and his language was...
  • Q2. 2. As their was corona time so and we know New Zealand was the only country which was doing much better then other state during the time of pandemic so question was based on this Topic only that "how New Z...
  • Q3. 3. This question was related to the personality. So basically they asked me to take any one product which perfectly suits on my personality and explain it why is it so ?

Interview Preparation Tips

Interview preparation tips for other job seekers - So basically it was the first time I faced the interview in my life. I was successfully cleared this interview round but i failed to clear the last HR round, and the reason was very common that i was unable to communicate more clearly and more precisely with the HR of the company. But i will give a very simple advice companies are literally least interested in your skills and your project u have done in your college time rather than they are more interested in communicating with u personally they wanted to know u more apart from your qualifications of education. They need those students who can easily communicate themself to others and should have a interest in current scenario based on latest technologies, current knowledge, they don't want book worms they want smart students so try to grab current required skills, grab knowledge of latest technologies in different sectors and just keep improving your communication skills.

Marketing Intern Interview Questions asked at other Companies

Q1. Most of our website traffic comes from India while our target geography is the USA. How will you bring US traffic?
View answer (1)

ConsultAdd Interview FAQs

How many rounds are there in ConsultAdd interview for freshers?
ConsultAdd interview process for freshers usually has 2-3 rounds. The most common rounds in the ConsultAdd interview process for freshers are Technical, Coding Test and HR.
How to prepare for ConsultAdd interview for freshers?
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 for freshers?

Some of the top questions asked at the ConsultAdd interview for freshers -

  1. Coding ques: Longest subsequence in a str...read more
  2. How make a queue using a st...read more
  3. What is requireme...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.

ConsultAdd Interview Process for Freshers

based on 7 interviews

Interview experience

4.3
  
Good
View more

Interview Questions from Similar Companies

Affine Interview Questions
3.3
 • 49 Interviews
IT By Design Interview Questions
3.5
 • 40 Interviews
VDart Interview Questions
4.0
 • 29 Interviews
Systems Plus Interview Questions
4.3
 • 28 Interviews
DISYS Interview Questions
3.0
 • 27 Interviews
View all

ConsultAdd Reviews and Ratings

based on 60 reviews

3.5/5

Rating in categories

3.0

Skill development

3.5

Work-life balance

4.3

Salary

3.0

Job security

3.5

Company culture

3.6

Promotions

3.0

Work satisfaction

Explore 60 Reviews and Ratings
Business Analyst
39 salaries
unlock blur

₹5 L/yr - ₹11 L/yr

Software Engineer
37 salaries
unlock blur

₹5.3 L/yr - ₹21 L/yr

Management Engineer Trainee
18 salaries
unlock blur

₹4.6 L/yr - ₹6 L/yr

Management Trainee
14 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

Value Point Systems

3.6
Compare

JoulestoWatts Business Solutions

2.9
Compare

Saama Technologies

3.7
Compare

Systems Plus

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