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 Senior Project Manager Interview Questions and Answers

Updated 18 Nov 2021

NICE Senior Project Manager Interview Experiences

1 interview found

I applied via Referral and was interviewed in Oct 2021. There was 1 interview round.

Interview Questionnaire 

3 Questions

  • Q1. Related project management estimate budgeting
  • Q2. Situation and domain
  • Q3. Looks for scenarios before appearing for interview

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with project details

Top trending discussions

View All
Office Jokes
1w
an executive
CTC ≠ Confidence Transfer Credit
Ab toh aisa lagta hai, chillar jaise salary ke liye main kaju katli ban ke jaa rahi hoon. Samajh nahi aata, main zyada ready ho ke jaa rahi hoon ya ye mujhe kam pay kar rahe hain? #CorporateLife #OfficeJokes #UnderpaidButWellDressed
FeedCard Image
Got a question about NICE?
Ask anonymously on communities.

Interview questions from similar companies

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

I appeared for an interview before May 2024, where I was asked the following questions.

  • Q1. Could you describe your experience with project management?
  • Q2. What are your experiences and strategies in handling customer interactions?

Interview Preparation Tips

Interview preparation tips for other job seekers - Go as per your strength

Senior Project Manager Interview Questions Asked at Other Companies

Q1. DESIGIN PROCEDURE :- DLC thickness 150mm. 1:- use M15 grade concr ... read more
Q2. Design procedure of PQC:- Use M40 grade concrete. 1:- The minimum ... read more
Q3. Design procedure :- 1 :- The minimum cement content 360 kg per cu ... read more
Q4. DESINGN PROCEDURE:- 1:- The minimum cement content 360 kg/ cum, i ... read more
Q5. DESINGN PROCEDURE :- 1:- Use M15 grade concrete. Aggregate and ce ... read more
Interview experience
4
Good
Difficulty level
-
Process Duration
2-4 weeks
Result
-

I applied via Referral and was interviewed in Aug 2024. There were 3 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Scenario based questions on project management.
  • Q2. People management again scenario based questions
Round 2 - One-on-one 

(2 Questions)

  • Q1. Cleint and stakeholder management
  • Q2. Agile and project management processes.
Round 3 - One-on-one 

(2 Questions)

  • Q1. PRoject management drilling on processes.
  • Ans. 

    Project management drilling on processes involves closely monitoring and improving project workflows.

    • Regularly review and analyze project processes to identify bottlenecks and inefficiencies

    • Implement process improvements based on data-driven insights

    • Ensure team members are following established processes and provide training as needed

  • Answered by AI
  • Q2. Client management and retaining the client.
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Its basically all related to resume and past experience

I applied via Monster and was interviewed before Apr 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Basic java

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared

Interview Preparation Tips

Round: Test
Experience: Approx. 30.questions in 50 min
Tips: Try solving each que in less than a minute ,don't waste time on difficult questions, complete easier once first
Duration: 50 minutes
Total Questions: 30

College Name: Pimpri chinchwad college of engineering

Interview Questionnaire 

2 Questions

  • Q1. Salary discussion and notice period
  • Q2. Core java, collections and coding

Interview Preparation Tips

Round: Manager Round
Experience: About project and previous company experience , daily activity

Are these interview questions helpful?

Interview Questionnaire 

2 Questions

  • Q1. About what we worked in previous company project
  • Q2. General C programming questions and previous company project questions

I appeared for an interview in Nov 2016.

Interview Questionnaire 

5 Questions

  • Q1. Questions on Economy(little hard)
  • Q2. Questions on derivatives(moderate level)
  • Q3. Questions on accounting(basic)
  • Q4. It was like a mini technical round..the questions were on portfolio management
  • Q5. Very basic..

Interview Preparation Tips

Round: Test
Experience: The difficulty level of test was moderate..but the reasoning was timetaking..
Tips: Lot of questions..
Total Questions: 120

Round: Technical Interview
Experience: The difficulty level of test was moderate..but the reasoning was timetaking..
Tips: Lot of questions..

Software Engineer Interview Questions & Answers

Adobe user image Devendra Bendkhale

posted on 4 Dec 2015

Interview Questionnaire 

8 Questions

  • Q1. WRITE A GENERIC SWAP FUNCTION
  • Ans. 

    A generic swap function swaps two values of any data type.

    • The function should take two parameters of any data type.

    • Use a temporary variable to store the value of one parameter.

    • Assign the value of the second parameter to the first parameter.

    • Assign the value of the temporary variable to the second parameter.

  • Answered by AI
  • Q2. SEARCH AN ELEMENT IN ROTATED SORTED LINKLIST .
  • Ans. 

    Search for an element in a rotated sorted linked list.

    • Find the pivot point where the list is rotated.

    • Divide the list into two sublists based on the pivot point.

    • Perform binary search on the appropriate sublist.

    • Handle edge cases such as empty list and list with only one element.

  • Answered by AI
  • Q3. SEARCH AN ELEMENT IN ROTATED SORTED ARRAY. WRITED A CODE FOR IT
  • Ans. 

    Search an element in a rotated sorted array

    • Find the pivot point where the array is rotated

    • Divide the array into two sub-arrays based on pivot point

    • Perform binary search on the appropriate sub-array

    • Repeat until element is found or sub-array size is 1

  • Answered by AI
  • Q4. In an Array of size 95 contain numbers in range 1 to 100. each number is at max once in the array. find the 5 missing numbers in array between 1-100
  • Q5. Given sudoku as id array of size . in a given empty cell find the possible numbers that could be possible. Asked me to write code for it
  • Ans. 

    Given a Sudoku board, find possible numbers for an empty cell.

    • Iterate through empty cells and check possible numbers using row, column, and box constraints.

    • Use a set to keep track of possible numbers for each empty cell.

    • Return the set of possible numbers for the given empty cell.

  • Answered by AI
  • Q6. Given 4 unsigned integers find their integer average (eg. (2,2,2,3) => (2+2+2+3)/4 = 2) consider integer division ) without typecasting
  • Ans. 

    Find integer average of 4 unsigned integers without typecasting

    • Add all the integers and divide by 4

    • Use bit shifting to divide by 4

    • Handle overflow by using long long data type

    • Use unsigned int data type for input

  • Answered by AI
  • Q7. Write a code to identify wheter given processor is of 32 bit architecture or 64 bit architecture
  • Ans. 

    Code to identify 32 bit or 64 bit architecture of a processor

    • Check if the operating system is 32 bit or 64 bit

    • If OS is 32 bit, processor is 32 bit

    • If OS is 64 bit, check if processor supports 64 bit architecture

    • Use CPUID instruction to check if processor supports 64 bit architecture

  • Answered by AI
  • Q8. Convert a binary number into base 64 integer
  • Ans. 

    Convert binary number to base 64 integer

    • Divide the binary number into groups of 6 bits

    • Convert each group of 6 bits to decimal

    • Map the decimal value to the corresponding base 64 character

    • Concatenate the base 64 characters to form the final integer

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: SIMPLE CODING QUESTIONS SPEED MATTERS.
Duration: 60 minutes
Total Questions: 3

Skills: Analytics And Coding
College Name: IIT Guwahati

Skills evaluated in this interview

NICE Interview FAQs

What are the top questions asked in NICE Senior Project Manager interview?

Some of the top questions asked at the NICE Senior Project Manager interview -

  1. Related project management estimate budgeti...read more
  2. Situation and doma...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Oracle Interview Questions
3.7
 • 892 Interviews
KPIT Technologies Interview Questions
3.3
 • 306 Interviews
Adobe Interview Questions
3.9
 • 247 Interviews
Salesforce Interview Questions
4.0
 • 234 Interviews
Freshworks Interview Questions
3.5
 • 171 Interviews
Oracle Cerner Interview Questions
3.6
 • 162 Interviews
Thomson Reuters Interview Questions
4.1
 • 124 Interviews
ServiceNow Interview Questions
4.1
 • 124 Interviews
View all
NICE Senior Project Manager Salary
based on 7 salaries
₹19 L/yr - ₹48 L/yr
40% more than the average Senior Project Manager Salary in India
View more details

NICE Senior Project Manager Reviews and Ratings

based on 3 reviews

1.3/5

Rating in categories

1.2

Skill development

1.2

Work-life balance

1.2

Salary

1.8

Job security

1.8

Company culture

1.2

Promotions

1.2

Work satisfaction

Explore 3 Reviews and Ratings
Software Engineer
314 salaries
unlock blur

₹7 L/yr - ₹18.5 L/yr

Senior Software Engineer
213 salaries
unlock blur

₹11.5 L/yr - ₹31.5 L/yr

Technical Lead
162 salaries
unlock blur

₹9.2 L/yr - ₹35 L/yr

Software Engineering Specialist
135 salaries
unlock blur

₹19.1 L/yr - ₹44 L/yr

Software Engineer and Technical Lead
121 salaries
unlock blur

₹9 L/yr - ₹29 L/yr

Explore more salaries
Compare NICE with

Oracle

3.7
Compare

KPIT Technologies

3.3
Compare

Intellect Design Arena

3.9
Compare

Thomson Reuters

4.1
Compare
write
Share an Interview