Upload Button Icon Add office photos
Engaged Employer

i

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

CommerceIQ Verified Tick

Compare button icon Compare button icon Compare
2.8

based on 80 Reviews

Filter interviews by

CommerceIQ Software Development Engineer Interview Questions and Answers

Updated 6 Sep 2024

CommerceIQ Software Development Engineer Interview Experiences

2 interviews found

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

I applied via Job Portal and was interviewed before Sep 2023. There were 3 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Print odd even nodes in tree
  • Ans. 

    Print odd even nodes in tree

    • Traverse the tree using depth-first search (DFS)

    • Maintain a variable to track the level of each node

    • Print nodes based on whether their level is odd or even

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Kth largest element kf heap
  • Ans. 

    Finding the Kth largest element in a heap.

    • Use a max heap to store the elements in the array.

    • Remove the largest element K times to find the Kth largest element.

    • Time complexity is O(K log N) where N is the number of elements in the heap.

  • Answered by AI
Round 3 - One-on-one 

(1 Question)

  • Q1. Managerial round asked about projects

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 - Coding Test 

Make sure to have DSA on your fingertips.

Round 3 - Technical 

(1 Question)

  • Q1. Question was on DSA?

Software Development Engineer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Given an acyclic graph of a city where each edge represents a roa ... read more
asked in Hike
Q2. You have application which shows list of all contacts, the Name c ... read more
asked in Amazon
Q3. Given a m * n matrix filled with '0's and 'x's at random position ... read more
asked in Samsung
Q4. puzzle-There are 1000 wine bottles. One of the bottles contains p ... read more
asked in Accenture
Q5. Have you worked on cloud technology? Architecture of cloud

Interview questions from similar companies

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

I applied via Referral and was interviewed before Apr 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 - Technical 

(1 Question)

  • Q1. Basic tree questions & basics about programming.
Round 3 - Technical 

(1 Question)

  • Q1. Merge two tree, find height of the tree & one question related to max heap.
Round 4 - One-on-one 

(1 Question)

  • Q1. This round was taken by VP. This was just formal round
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 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude Had around 50 Questions which cover Logical,Quantitative, Code snippets

Round 2 - Technical 

(3 Questions)

  • Q1. Two Sum in Coding
  • Ans. 

    Find two numbers in an array that add up to a specific target value.

    • Use a hashmap to store the difference between the target value and each element in the array.

    • Iterate through the array and check if the current element's complement exists in the hashmap.

    • Return the indices of the two numbers that add up to the target value.

  • Answered by AI
  • Q2. Differences in final,Finally,Finalize
  • Ans. 

    final, finally, and finalize are related terms in programming but have different meanings and usage

    • final is a keyword in Java used to restrict inheritance, method overriding, and variable reassignment

    • finally is a block of code in exception handling that always executes, regardless of whether an exception is thrown

    • finalize is a method in Java used for cleanup operations before an object is garbage collected

  • Answered by AI
  • Q3. Basic Sql operations
Round 3 - Technical 

(3 Questions)

  • Q1. Array List Implementation in Stack for Push and pop
  • Ans. 

    Array List can be implemented in a stack by using an array and keeping track of the top element.

    • Create an array to store the elements of the stack.

    • Keep track of the top element using a variable.

    • For push operation, add the element to the top of the stack and increment the top index.

    • For pop operation, remove the top element and decrement the top index.

  • Answered by AI
  • Q2. Finding 3rd Largest Number in an Array without using Sort
  • Ans. 

    Find 3rd largest number in array without sorting

    • Iterate through array to find largest, 2nd largest, and 3rd largest numbers

    • Keep track of these numbers as you iterate

    • Return the 3rd largest number found

  • Answered by AI
  • Q3. Finding the min number of Swap in Sorting of Array
  • Ans. 

    To find the minimum number of swaps needed to sort an array

    • Use graph theory to find cycles in the array

    • Count the number of swaps needed to fix each cycle

    • Add up the swaps needed for all cycles to get the total minimum swaps

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn About a PL clearly and Do more of DSA.

Skills evaluated in this interview

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

I was interviewed in Nov 2024.

Round 1 - HR 

(2 Questions)

  • Q1. Experience in past proyects
  • Ans. 

    I have worked on various projects ranging from web development to mobile app development, gaining experience in different technologies and frameworks.

    • Developed a web application using React.js and Node.js for a client in the e-commerce industry

    • Created a mobile app using Flutter for a startup in the travel sector

    • Collaborated with a team to implement a machine learning algorithm for data analysis in a research project

  • Answered by AI
  • Q2. Experience leading a group of develeopers
  • Ans. 

    Led a team of developers on a project to develop a new software application.

    • Managed a team of 5 developers to ensure project deadlines were met

    • Assigned tasks to team members based on their strengths and expertise

    • Held regular team meetings to discuss progress and address any issues

    • Provided guidance and support to team members when needed

    • Collaborated with other departments to gather requirements and feedback

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. It was more like a talk about your experience
  • Q2. Code test to create a small search enginee
  • Ans. 

    Code test to create a small search engine

    • Create a function that takes a search query and an array of strings as input

    • Iterate through the array of strings to find matches with the search query

    • Return an array of strings that contain the search query

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

Machine coding round

Round 2 - Technical 

(2 Questions)

  • Q1. TCP/IP related questions, what happens when you search a webpage?
  • Q2. Past projects discussions
Round 3 - HR 

(1 Question)

  • Q1. Behavioural questions on how would you tackle a particular scenario
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(5 Questions)

  • Q1. Sql related questions were asked
  • Q2. Manual testing questions were asked
  • Q3. Joins questions
  • Q4. Where clause questions
  • Q5. Manual testing questions
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Sorting of an array
  • Q2. Bubble sorting algorithm
Round 2 - Technical 

(1 Question)

  • Q1. Java oops question
Round 3 - Technical 

(1 Question)

  • Q1. API questions related to put and patch api
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I was interviewed before Jan 2024.

Round 1 - HR 

(2 Questions)

  • Q1. Can you describe a situation in which you were unable to convince your senior?
  • Q2. What is your approach to managing a subordinate who is not performing?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be well prepared for both technical and behavioral questions, as this work culture is a no-nonsense culture.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Feb 2024. There were 3 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. How to identify if a queue is circular
  • Ans. 

    A circular queue can be identified by checking if the rear pointer is one position behind the front pointer.

    • Check if rear pointer is one position behind front pointer

    • Check if front pointer is at index 0 and rear pointer is at index n-1 in an array of size n

    • Check if front pointer is at index rear+1 modulo n in an array of size n

  • Answered by AI
Round 2 - System design 

(1 Question)

  • Q1. Design notification system
  • Ans. 

    Design a notification system for a software application.

    • Identify the types of notifications needed (e.g. email, SMS, in-app)

    • Consider the frequency and urgency of notifications

    • Implement a notification queue to handle multiple notifications

    • Include user preferences for notification settings

    • Utilize push notifications for real-time updates

  • Answered by AI
Round 3 - Coding Test 

Write multiple polyfills for array

Skills evaluated in this interview

CommerceIQ Interview FAQs

How many rounds are there in CommerceIQ Software Development Engineer interview?
CommerceIQ interview process usually has 3 rounds. The most common rounds in the CommerceIQ interview process are Technical, One-on-one Round and Resume Shortlist.
How to prepare for CommerceIQ Software Development 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 CommerceIQ. The most common topics and skills that interviewers at CommerceIQ expect are Machine Learning, HTML, Javascript, Analytics and Customer Service.
What are the top questions asked in CommerceIQ Software Development Engineer interview?

Some of the top questions asked at the CommerceIQ Software Development Engineer interview -

  1. Print odd even nodes in t...read more
  2. Kth largest element kf h...read more
  3. Question was on D...read more

Tell us how to improve this page.

CommerceIQ Software Development Engineer Interview Process

based on 2 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Zoho Interview Questions
4.3
 • 511 Interviews
Mu Sigma Interview Questions
2.6
 • 226 Interviews
Freshworks Interview Questions
3.5
 • 154 Interviews
BrowserStack Interview Questions
3.7
 • 47 Interviews
InMobi Interview Questions
3.5
 • 35 Interviews
Druva Interview Questions
3.6
 • 25 Interviews
Fingent Interview Questions
4.4
 • 22 Interviews
MindTickle Interview Questions
3.0
 • 21 Interviews
Backbase Interview Questions
4.1
 • 21 Interviews
Mentor Graphics Interview Questions
4.0
 • 19 Interviews
View all
CommerceIQ Software Development Engineer Salary
based on 13 salaries
₹16 L/yr - ₹26 L/yr
61% more than the average Software Development Engineer Salary in India
View more details

CommerceIQ Software Development Engineer Reviews and Ratings

based on 3 reviews

3.7/5

Rating in categories

2.9

Skill development

4.0

Work-life balance

4.4

Salary

4.4

Job security

5.0

Company culture

3.7

Promotions

3.5

Work satisfaction

Explore 3 Reviews and Ratings
Data Analyst
27 salaries
unlock blur

₹2 L/yr - ₹10 L/yr

Product Operations Analyst
14 salaries
unlock blur

₹5 L/yr - ₹7.5 L/yr

Software Engineer
13 salaries
unlock blur

₹10 L/yr - ₹38 L/yr

Software Development Engineer
13 salaries
unlock blur

₹16 L/yr - ₹26 L/yr

Customer Success Manager
12 salaries
unlock blur

₹17.1 L/yr - ₹28.2 L/yr

Explore more salaries
Compare CommerceIQ with

Capillary Technologies

3.5
Compare

Unbxd

3.9
Compare

CleverTap

3.7
Compare

Freshworks

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