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
Q2. Intersection of Two Arrays II Given two integer arrays ARR1 and A ... read more
asked in Clarivate
Q3. Best Time to Buy and Sell Stock II Problem Statement Given the st ... read more
Q4. Ninja and Alternating Largest Problem Statement Ninja is given a ... read more
asked in CGI Group
Q5. Frog Jump Problem Statement A frog is positioned on the first ste ... read more

Interview questions from similar companies

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

I applied via Campus Placement and was interviewed in Jul 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

General Aptitude Question

Round 2 - Technical 

(2 Questions)

  • Q1. Project related question
  • Q2. One programming question factorial of 5
Round 3 - HR 

(1 Question)

  • Q1. Basic behavioral question

Interview Preparation Tips

Topics to prepare for KPIT Technologies Associate Software Engineer interview:
  • Java
  • OOPS
  • Basic dsa
  • Project
Interview preparation tips for other job seekers - Basic concept is necessary for crack this company
Interview experience
1
Bad
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Easy to moderate level questions.

Round 2 - Assignment 

There will be 3 coding que , easy , medium, hard

Interview Preparation Tips

Interview preparation tips for other job seekers - No job security, behaviour of all the interviewer as well as hr is worst.too much of poltics in the office.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Apr 2023. 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 - Coding Test 

Consists of basic coding questions from trees and arrays

Round 3 - Technical 

(1 Question)

  • Q1. Oops, C++ like inline functions etc
Round 4 - HR 

(1 Question)

  • Q1. Hypothetical situations

Interview Preparation Tips

Interview preparation tips for other job seekers - It's easy don't be stressed
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Aptitude Test 

For entc thier will we a domain core question . tough

Round 2 - Technical 

(3 Questions)

  • Q1. Interview was a easy
  • Q2. Factorial coding q
  • Q3. 4 pillar of oop
  • Ans. 

    Encapsulation, Inheritance, Polymorphism, Abstraction are the 4 pillars of OOP.

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

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

    • Polymorphism: Ability for objects to be treated as instances of their parent class.

    • Abstraction: Hides the complex implementation details and only shows the necessary features.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for KPIT Technologies Associate Software Engineer interview:
  • CPP
  • OOPS
Interview preparation tips for other job seekers - Preapre only basics of cpp and oop
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
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Encapsulation inheritance oops etc
  • Q2. Bitwise operations
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

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 15 reviews

3.8/5

Rating in categories

3.9

Skill development

3.4

Work-life balance

3.4

Salary

3.9

Job security

4.1

Company culture

3.0

Promotions

3.5

Work satisfaction

Explore 15 Reviews and Ratings
Software Engineer
265 salaries
unlock blur

₹6.5 L/yr - ₹20.5 L/yr

Senior Software Engineer
171 salaries
unlock blur

₹11.4 L/yr - ₹30 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