Upload Button Icon Add office photos

Filter interviews by

Protiviti India Member Software Development Manager Interview Questions and Answers

Updated 28 Sep 2022

Protiviti India Member Software Development Manager Interview Experiences

1 interview found

I applied via Recruitment Consulltant and was interviewed before Sep 2021. There were 6 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 

(2 Questions)

  • Q1. Interfaces - What is use and when?
  • Ans. 

    Interfaces define a contract between two components, allowing for loose coupling and flexibility in implementation.

    • Interfaces are used to define a set of methods that a class must implement

    • They allow for polymorphism and abstraction

    • Interfaces promote loose coupling between components

    • They are useful for creating pluggable architectures

    • Examples include the Java Collection interface and the .NET IDisposable interface

  • Answered by AI
  • Q2. Case Study - API Management
Round 3 - Technical 

(2 Questions)

  • Q1. Application Architecture
  • Q2. Technology used and in depth questions on C#
Round 4 - Technical 

(2 Questions)

  • Q1. Database queries and where I have used those
  • Q2. In depth db knowledge with indexes, stored procedure uses
  • Ans. 

    I have extensive knowledge of database indexes and stored procedures.

    • I understand the importance of indexes in optimizing database performance.

    • I have experience creating and maintaining stored procedures for efficient data retrieval and manipulation.

    • I am familiar with different types of indexes such as clustered, non-clustered, and covering indexes.

    • I have worked with various database management systems such as MySQL, O...

  • Answered by AI
Round 5 - Behavioral 

(2 Questions)

  • Q1. Case based queries on team handling
  • Q2. How to manage conflicts
  • Ans. 

    Managing conflicts requires active listening, empathy, and collaboration.

    • Encourage open communication and active listening to understand all perspectives

    • Acknowledge emotions and show empathy to build trust and rapport

    • Collaborate to find a mutually beneficial solution

    • Establish clear expectations and guidelines for conflict resolution

    • Follow up to ensure the resolution is effective and sustainable

  • Answered by AI
Round 6 - HR 

(2 Questions)

  • Q1. Salary discussion for the profile
  • Q2. Company introduction in a very well manner

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself and be confident.
Make sure you know what you have written in your resume.

Interview questions from similar companies

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

I applied via Naukri.com and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. How does Django apply migrations to the database?
  • Ans. 

    Django applies migrations to the database using the 'manage.py migrate' command.

    • Django tracks changes to models and generates migration files accordingly.

    • The 'manage.py makemigrations' command creates migration files based on model changes.

    • The 'manage.py migrate' command applies the generated migration files to the database.

    • Migrations help keep the database schema in sync with the changes in Django models.

  • Answered by AI
  • Q2. What is hoisting in javascript?
  • Ans. 

    Hoisting in JavaScript is the behavior where variable and function declarations are moved to the top of their containing scope during the compilation phase.

    • Variable declarations are hoisted to the top of their scope, but not their assignments.

    • Function declarations are fully hoisted, meaning they can be called before they are declared.

    • Hoisting can lead to unexpected behavior if not understood properly.

  • Answered by AI
Round 2 - Assignment 

Create a full stack application in 3 days.

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

I applied via campus placement at National Institute of Technology (NIT), Patna and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. MULTIPLE QUESTIONS OF OOPS
  • Q2. Program of prime number
  • Ans. 

    A program to find prime numbers within a given range

    • Iterate through numbers in the given range

    • Check if each number is divisible by any number other than 1 and itself

    • If not divisible, it is a prime number

  • Answered by AI
  • Q3. Pseudo code of finding ones in a number
  • Ans. 

    Count the number of ones in a given number using pseudo code

    • Initialize a count variable to 0

    • Iterate through each bit of the number and check if it is 1

    • Increment the count if the bit is 1

    • Return the count as the result

  • Answered by AI
  • Q4. Basic questions of sql and mongodb

Interview Preparation Tips

Interview preparation tips for other job seekers - have proper command of oops ,basic DSA and have good projects

Skills evaluated in this interview

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

I applied via Naukri.com

Round 1 - One-on-one 

(2 Questions)

  • Q1. Write a java program to sort an array
  • Ans. 

    Java program to sort an array of strings

    • Use Arrays.sort() method to sort the array of strings

    • Import java.util.Arrays package

    • Example: String[] arr = {"apple", "banana", "orange"}; Arrays.sort(arr);

  • Answered by AI
  • Q2. Collections in java and springboot
  • Ans. 

    Collections in Java and Spring Boot are used to store and manipulate groups of objects.

    • Collections in Java are used to store multiple objects in a single unit.

    • Spring Boot provides support for managing collections through various data structures like List, Set, Map, etc.

    • Collections in Java and Spring Boot help in organizing and manipulating data efficiently.

    • Example: List names = new ArrayList<>();

Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Job Portal

Round 1 - Coding Test 

Coding test was of two hours, and two difficult hard question was passed

Round 2 - Group Discussion 

In the group discussion, they asked the question based on the project

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

I was interviewed in Dec 2023.

Round 1 - Technical 

(2 Questions)

  • Q1. Lifecycle hooks of Angular
  • Ans. 

    Angular lifecycle hooks are methods that allow you to tap into specific points in a component's lifecycle.

    • ngOnChanges: called when an input property changes

    • ngOnInit: called once the component is initialized

    • ngDoCheck: called during every change detection run

    • ngAfterContentInit: called after content (ng-content) has been projected into the component

    • ngAfterContentChecked: called after every check of the projected content

    • ng...

  • Answered by AI
  • Q2. SOLID principles
Round 2 - Technical 

(1 Question)

  • Q1. Questions on SQL
Round 3 - HR 

(1 Question)

  • Q1. Introduction and basic questions

Skills evaluated in this interview

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

(2 Questions)

  • Q1. What are services in Drupal?
  • Ans. 

    Services in Drupal are reusable objects that perform specific functions, such as database queries or sending emails.

    • Services are defined in YAML files and can be accessed throughout a Drupal site.

    • They are used to encapsulate reusable functionality and promote code reusability.

    • Examples of services in Drupal include the database service for interacting with the database, the mail service for sending emails, and the logge

  • Answered by AI
  • Q2. How to debug in Drupal?
  • Ans. 

    Debugging in Drupal involves using tools like Devel module, watchdog(), and error logs.

    • Enable Devel module for debugging information

    • Use watchdog() function to log messages to Drupal's watchdog log

    • Check error logs for PHP errors and warnings

    • Use dpm() function to print variables for debugging purposes

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Technical 

(1 Question)

  • Q1. Questions based on Java , C++ , OOPs, cloud computing, one coding question, regarding previous projects, some behavioural questions.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Explain your backgroun
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

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 

Easy njsfds asjdfjsda iasdfjk kffojal;ks

Round 3 - One-on-one 

(2 Questions)

  • Q1. About projects and internship
  • Q2. About my experience leading a team

Interview Preparation Tips

Interview preparation tips for other job seekers - be confident and answer calmly and don't fumble keep it friendly

Protiviti India Member Interview FAQs

How many rounds are there in Protiviti India Member Software Development Manager interview?
Protiviti India Member interview process usually has 6 rounds. The most common rounds in the Protiviti India Member interview process are Technical, Resume Shortlist and Behavioral.
What are the top questions asked in Protiviti India Member Software Development Manager interview?

Some of the top questions asked at the Protiviti India Member Software Development Manager interview -

  1. Interfaces - What is use and wh...read more
  2. In depth db knowledge with indexes, stored procedure u...read more
  3. How to manage confli...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.3k Interviews
Accenture Interview Questions
3.9
 • 8k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
Deloitte Interview Questions
3.8
 • 2.8k Interviews
IBM Interview Questions
4.1
 • 2.4k Interviews
PwC Interview Questions
3.4
 • 1.4k Interviews
Ernst & Young Interview Questions
3.5
 • 1.1k Interviews
KPMG India Interview Questions
3.5
 • 787 Interviews
View all
Consultant
248 salaries
unlock blur

₹2.5 L/yr - ₹12 L/yr

Senior Consultant
218 salaries
unlock blur

₹7 L/yr - ₹18.1 L/yr

Deputy Manager
152 salaries
unlock blur

₹10 L/yr - ₹19.1 L/yr

Manager
81 salaries
unlock blur

₹14 L/yr - ₹25 L/yr

Consultant2
64 salaries
unlock blur

₹3.6 L/yr - ₹7.6 L/yr

Explore more salaries
Compare Protiviti India Member with

KPMG India

3.5
Compare

Deloitte

3.8
Compare

PwC

3.4
Compare

Ernst & Young

3.5
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview