Upload Button Icon Add office photos
Engaged Employer

i

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

NICE Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

NICE Associate Software Engineer Interview Questions and Answers

Updated 21 Sep 2024

NICE Associate Software Engineer Interview Experiences

2 interviews found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

There is aptitude+DBMS+OS+coding online test round

Round 2 - Technical 

(4 Questions)

  • Q1. OOP-Polymorphism
  • Q2. DSA-Mirror image of binary tree
  • Ans. 

    Mirror image of a binary tree involves swapping the left and right children of each node.

    • Start with the root node and recursively swap the left and right children of each node.

    • Repeat this process for all nodes in the binary tree.

    • The resulting tree will be the mirror image of the original binary tree.

  • Answered by AI
  • Q3. SQL query related to joins
  • Q4. Discussion on projects and internship experience

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Focus on operating systems, dbms and oops

Round 2 - Coding Test 

Focus on data structures and algorithms

Associate Software Engineer Interview Questions Asked at Other Companies

asked in Accenture
Q1. Triplets with Given Sum Problem Given an array or list ARR consis ... read more
asked in Gainsight
Q2. Connecting Ropes with Minimum Cost You are given 'N' ropes, each ... read more
Q3. Intersection of Two Arrays II Given two integer arrays ARR1 and A ... read more
asked in Clarivate
Q4. Best Time to Buy and Sell Stock II Problem Statement Given the st ... read more
Q5. Ninja and Alternating Largest Problem Statement Ninja is given a ... read more

Interview questions from similar companies

I appeared for an interview before May 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Timing - flexible 12 hours window to take the test. (9AM - 9PM)
Test was proctored

  • Q1. 

    Combination Sum Problem Statement

    Given three integers X, Y, and Z, calculate the sum of all numbers that can be formed using the digits 3, 4, and 5. Each digit can be used up to a maximum of X, Y, and Z ...

  • Ans. 

    Calculate the sum of all numbers that can be formed using the digits 3, 4, and 5 with given constraints.

    • Iterate through all possible combinations of 3, 4, and 5 based on the given constraints.

    • Calculate the sum of each combination and add them up.

    • Return the final sum modulo 10^9 + 7.

  • Answered by AI
  • Q2. 

    Longest Path In Directed Graph Problem Statement

    Given a Weighted Directed Acyclic Graph (DAG) comprising 'N' nodes and 'E' directed edges, where nodes are numbered from 0 to N-1, and a source node 'Src'....

  • Ans. 

    The task is to find the longest distances from a source node to all nodes in a weighted directed acyclic graph.

    • Implement a function that takes the number of nodes, edges, source node, and edge weights as input.

    • Use a topological sorting algorithm to traverse the graph and calculate the longest distances.

    • Return an array of integers where each element represents the longest distance from the source node to the correspondi

  • Answered by AI
Round 2 - Video Call 

(2 Questions)

Round duration - 40 minutes
Round difficulty - Easy

Timing - 9:00 AM - 9:40 AM

  • Q1. 

    Factorial Trailing Zeros Problem

    You are provided with a positive integer N. Your goal is to determine the smallest number whose factorial has at least N trailing zeros.

    Example:

    Input:
    N = 1
    Output:
    ...
  • Ans. 

    Find the smallest number whose factorial has at least N trailing zeros.

    • Calculate the number of 5's in the prime factorization of the factorial to determine the trailing zeros.

    • Use binary search to find the smallest number with at least N trailing zeros.

    • Consider edge cases like N = 0 or N = 1 for factorial trailing zeros problem.

  • Answered by AI
  • Q2. 

    Reverse Linked List Problem Statement

    Given a singly linked list of integers, your task is to return the head of the reversed linked list.

    Example:

    Input:
    The given linked list is 1 -> 2 -> 3 -&g...
  • Ans. 

    To reverse a singly linked list of integers, return the head of the reversed linked list.

    • Iterate through the linked list, reversing the pointers to point to the previous node instead of the next node.

    • Keep track of the previous, current, and next nodes while traversing the list.

    • Update the head of the reversed linked list to be the last element of the original list.

  • Answered by AI
Round 3 - Video Call 

(2 Questions)

Round duration - 40 minutes
Round difficulty - Easy

Timing - 12:00 Pm to 12:40 PM

  • Q1. 

    Implementing a Priority Queue Using Heap

    Ninja has been tasked with implementing a priority queue using a heap data structure. However, he is currently busy preparing for a tournament and has requested yo...

  • Ans. 

    Implement a priority queue using a heap data structure by completing the provided functions: push(), pop(), getMaxElement(), and isEmpty().

    • Understand the operations: push() to insert element, pop() to remove largest element, getMaxElement() to return largest element, and isEmpty() to check if queue is empty.

    • Implement a heap data structure to maintain the priority queue.

    • Handle different types of queries based on the inp...

  • Answered by AI
  • Q2. 

    Largest BST Subtree Problem

    Given a binary tree with 'N' nodes, determine the size of the largest subtree that is also a BST (Binary Search Tree).

    Input:

    The first line contains an integer 'T', represen...
  • Ans. 

    The problem involves finding the size of the largest subtree that is also a Binary Search Tree in a given binary tree.

    • Traverse the binary tree in a bottom-up manner to check if each subtree is a BST.

    • Keep track of the size of the largest BST subtree encountered so far.

    • Use recursion to solve the problem efficiently.

    • Consider edge cases like empty tree or single node tree.

    • Example: For input 1 2 3 4 -1 5 6 -1 7 -1 -1 -1 -1

  • Answered by AI
Round 4 - Video Call 

(1 Question)

Round duration - 40 minutes
Round difficulty - Medium

Timing - 6:00 PM - 6:30 PM

  • Q1. Can you design a system similar to Splitwise and identify three features that you would change or improve?
  • Ans. 

    Design a system similar to Splitwise and suggest three features for improvement.

    • Implement a real-time notification system for updates on shared expenses

    • Integrate a feature for automatic currency conversion for international transactions

    • Enhance the user interface with data visualization tools for better expense tracking

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Netaji Subhas University Of Technology. I applied for the job as Associate Software Engineer in BangaloreEligibility criteriaNo criteriaSalesforce interview preparation:Topics to prepare for the interview - Data Structures, Dynamic Programming, OOPS, OS, DBMS.Time required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : For fresher role, System design is not very important.
Tip 2 : Do at least 1-2 good quality projects.
 

Application resume tips for other job seekers

Tip 1 : Have 1-2 good engaging projects in resume.
Tip 2 : Internships are helpful.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview in Feb 2025, where I was asked the following questions.

  • Q1. Write a code of binary search
  • Ans. 

    Binary search is an efficient algorithm for finding an item from a sorted list of items.

    • Requires a sorted array to function correctly.

    • Divides the search interval in half with each iteration.

    • Time complexity is O(log n), making it faster than linear search.

    • Example: Searching for '5' in [1, 2, 3, 4, 5, 6] results in index 4.

  • Answered by AI
  • Q2. What is pagging in Operating system
  • Ans. 

    Paging is a memory management scheme that eliminates the need for contiguous allocation of physical memory.

    • Divides memory into fixed-size blocks called pages.

    • Pages are mapped to physical memory frames, allowing non-contiguous allocation.

    • Improves memory utilization and reduces fragmentation.

    • Example: A process with 4 pages can be loaded into any 4 available frames in memory.

    • Paging allows for virtual memory, enabling proc...

  • Answered by AI
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
No response
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 

Basic questions on core subject

Round 3 - Coding Test 

One coding question with 5 marks

Round 4 - Technical 

(1 Question)

  • Q1. Self intro brief discussion on projects questions related to projects core subject questions like digitial electronics basic python questions coding questions like palindrome
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Encapsulation inheritance oops etc
  • Q2. Bitwise operations
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Campus Placement and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Basic questions asked in the aptitude round coding was tough

Round 2 - Technical 

(2 Questions)

  • Q1. Tell me about inheritance?
  • Ans. 

    Inheritance is a concept in object-oriented programming where a class inherits properties and behaviors from another class.

    • Allows a class to inherit attributes and methods from another class

    • Promotes code reusability and reduces redundancy

    • Supports the concept of parent and child classes

    • Derived class can override methods from the base class

    • Example: Class 'Car' can inherit from class 'Vehicle'

  • Answered by AI
  • Q2. Tell me about friendly function?
  • Ans. 

    A friendly function is a function that is not a member of a class but has access to the private and protected members of the class.

    • A friendly function is declared with the keyword 'friend' in the class that it is granting access to.

    • It can access private and protected members of the class it is declared as a friend of.

    • It is not a member of the class itself, but can be defined outside of the class.

    • Example: class A { priv

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
-

I applied via Campus Placement and was interviewed before Sep 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

MCQ and essay writing

Round 2 - Technical 

(2 Questions)

  • Q1. What are Oops concepts ?
  • Ans. 

    Oops concepts are the principles of Object Oriented Programming, including Inheritance, Encapsulation, Polymorphism, and Abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Polymorphism: Ability to present the same interface for different data types.

    • Abstraction: Hiding the complex implementatio...

  • Answered by AI
  • Q2. What is join and types of join?
  • Ans. 

    Join is used to combine rows from two or more tables based on a related column between them.

    • Types of joins include inner join, outer join (left, right, full), cross join, self join.

    • Inner join returns rows when there is at least one match in both tables.

    • Outer join returns all rows from one table and matching rows from the other table.

    • Cross join returns the Cartesian product of the two tables.

    • Self join is used to join a

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Tell be about yourself
  • Ans. 

    I am a recent graduate with a degree in Computer Science and a passion for software development.

    • Recent graduate with a degree in Computer Science

    • Passionate about software development

    • Experience with programming languages like Java and Python

  • Answered by AI
  • Q2. What are your hobbies
  • Ans. 

    My hobbies include playing guitar, hiking, and reading science fiction novels.

    • Playing guitar: I enjoy learning new songs and practicing different techniques.

    • Hiking: I love exploring nature trails and challenging myself with long hikes.

    • Reading science fiction novels: I find it fascinating to immerse myself in futuristic worlds and imaginative stories.

  • Answered by AI

Skills evaluated in this interview

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

I appeared for an interview in Nov 2024.

Round 1 - Technical 

(1 Question)

  • Q1. Questions based on selected track.
Round 2 - Coding Test 

The programming languages available for coding were determined by the chosen track (AI-ML in my case), which included Python and Java. Two coding challenges centered on array and string manipulation, with difficulty levels categorized as easy and medium.

Round 3 - AI Proctored Interview 

(1 Question)

  • Q1. Total of 13 questions. No interviewer. AI based Interview. Questions included Technical questions , a coding question and HR questions as well.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Quant, verbal, logical

Round 2 - Technical 

(3 Questions)

  • Q1. C,c++, string , array
  • Q2. Duplicate remove
  • Q3. Print 1st 10 prime number
  • Ans. 

    Print the first 10 prime numbers

    • Start with 2 as the first prime number

    • Use a loop to check for prime numbers

    • Keep track of the count of prime numbers found

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Personal question
  • Q2. Situation you had faced during projects

NICE Interview FAQs

How many rounds are there in NICE Associate Software Engineer interview?
NICE interview process usually has 2 rounds. The most common rounds in the NICE interview process are Aptitude Test, Coding Test and Technical.
How to prepare for NICE 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 NICE. The most common topics and skills that interviewers at NICE expect are Computer science, Web Services, Hibernate, JIRA and Javascript.
What are the top questions asked in NICE Associate Software Engineer interview?

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

  1. DSA-Mirror image of binary t...read more
  2. SQL query related to jo...read more
  3. OOP-Polymorph...read more

Tell us how to improve this page.

NICE Associate Software Engineer Interview Process

based on 3 interviews

Interview experience

3.7
  
Good
View more
NICE Associate Software Engineer Salary
based on 80 salaries
₹5.5 L/yr - ₹9.8 L/yr
35% more than the average Associate Software Engineer Salary in India
View more details

NICE Associate Software Engineer Reviews and Ratings

based on 14 reviews

4.2/5

Rating in categories

3.8

Skill development

3.4

Work-life balance

3.4

Salary

3.9

Job security

4.1

Company culture

3.0

Promotions

3.4

Work satisfaction

Explore 14 Reviews and Ratings
Software Engineer
261 salaries
unlock blur

₹7 L/yr - ₹20.5 L/yr

Senior Software Engineer
170 salaries
unlock blur

₹11.4 L/yr - ₹31.5 L/yr

Technical Lead
167 salaries
unlock blur

₹8.2 L/yr - ₹35 L/yr

Software Engineering Specialist
130 salaries
unlock blur

₹19.1 L/yr - ₹44 L/yr

Software Engineer and Technical Lead
124 salaries
unlock blur

₹9 L/yr - ₹27.1 L/yr

Explore more salaries
Compare NICE with

Oracle

3.7
Compare

KPIT Technologies

3.4
Compare

Intellect Design Arena

3.9
Compare

Thomson Reuters

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