i
ManpowerGroup
Filter interviews by
I applied via Naukri.com and was interviewed in Jul 2022. There were 2 interview rounds.
Top trending discussions
I applied via Company Website and was interviewed in Sep 2024. There was 1 interview round.
SAP ERP is the traditional enterprise resource planning software, while S/4 HANA is the next-generation ERP suite built on the SAP HANA platform.
SAP ERP is based on traditional on-premise architecture, while S/4 HANA is designed for cloud deployment.
SAP ERP uses a row-based database structure, while S/4 HANA utilizes an in-memory columnar database for faster data processing.
SAP ERP requires separate systems for transac...
Implementation steps in SAP involve planning, configuration, testing, training, and deployment.
1. Planning phase involves defining project scope, objectives, and timeline.
2. Configuration phase includes setting up SAP modules according to business requirements.
3. Testing phase ensures that the system functions correctly and meets user needs.
4. Training phase involves educating users on how to use the SAP system effecti...
RICEF is a prioritization framework used in project management to rank tasks based on their impact and effort required.
RICEF stands for Reach, Impact, Confidence, and Effort.
Reach refers to the number of people affected by the task.
Impact is the potential positive outcome of the task.
Confidence is how sure you are about the estimates for Reach and Impact.
Effort is the amount of time and resources needed to complete the...
Yes, I have worked with APP. The steps involve designing, developing, testing, and deploying the application.
Design the user interface and functionality of the APP
Develop the APP using programming languages like Java, Swift, or React Native
Test the APP for bugs and errors
Deploy the APP to app stores or internal servers for users to access
Material can be configured by adjusting its properties and parameters to meet specific requirements.
Identify the specific requirements for the material
Adjust properties such as density, strength, and flexibility
Consider parameters like temperature resistance and chemical compatibility
Test the configured material to ensure it meets the desired specifications
I am responsible for managing client relationships, providing strategic advice, and overseeing project implementation.
Managing client relationships
Providing strategic advice
Overseeing project implementation
C is a procedural programming language while C++ is an object-oriented programming language.
C is a low-level language while C++ is a high-level language.
C++ supports object-oriented programming concepts like classes, inheritance, and polymorphism.
C++ has better support for exception handling and templates.
C++ is more complex than C and requires more memory.
C++ is used for developing applications like video games, while...
A class is a blueprint for creating objects that have similar attributes and behaviors.
Classes are used in object-oriented programming.
They define the properties and methods that objects of that class will have.
Objects are instances of a class.
Classes can inherit properties and methods from other classes.
Examples of classes include 'Person', 'Car', and 'Animal'.
An object is a self-contained entity that contains data and behavior.
An object is an instance of a class.
It has attributes (data) and methods (behavior).
Objects can interact with each other through their methods.
Examples include a car object with attributes like color and model, and methods like start and stop.
Another example is a person object with attributes like name and age, and methods like walk and talk.
A variable that is associated with a class rather than with instances of the class.
Static variables are declared using the static keyword.
They are initialized only once, at the start of the program execution.
They retain their value throughout the program's execution.
They can be accessed without creating an instance of the class.
Example: public static int count = 0;
Static variables have local scope but retain their value between function calls, while global variables have global scope.
Static variables are declared inside a function and retain their value between function calls
Global variables are declared outside of any function and can be accessed from any part of the program
Static variables have local scope, while global variables have global scope
Static variables are initializ...
Pointers are variables that store memory addresses of other variables.
Pointers allow for dynamic memory allocation and manipulation.
They are commonly used in programming languages like C and C++.
Example: int *ptr; // declares a pointer to an integer variable
Example: ptr = # // assigns the memory address of num to ptr
Example: *ptr = 5; // assigns the value 5 to the variable pointed to by ptr
Structures are arrangements of elements that form a framework or framework-like support.
Structures can be found in various fields such as engineering, architecture, and biology.
They can be made of different materials such as steel, wood, or bone.
Examples include bridges, buildings, and the skeletal system.
Structures can be designed to withstand different types of forces such as compression, tension, or bending.
A stack is a data structure that follows the Last In First Out (LIFO) principle.
Push: adds an element to the top of the stack
Pop: removes the top element from the stack
Peek: returns the top element without removing it
IsEmpty: checks if the stack is empty
Size: returns the number of elements in the stack
Three steps for using functions in C.
Declare the function with its return type, name, and parameters.
Define the function by writing the code for it.
Call the function by using its name and passing arguments if necessary.
The limit for the number of arguments passed to functions is not fixed. Arrays or structures can be used to pass more parameters.
The limit for the number of arguments passed to functions is not fixed and depends on the programming language and system architecture.
In C programming language, there is no limit on the number of arguments that can be passed to a function.
In Java, the maximum number of arguments that can be ...
A union is an organization formed by workers to protect their rights and interests in the workplace.
Unions negotiate with employers for better wages, benefits, and working conditions.
They also provide support and representation for workers in disputes with management.
Membership in a union is voluntary, but members pay dues to support the union's activities.
Unions can be industry-specific, such as the United Auto Worker...
if else is used for simple conditions while switch case is used for multiple conditions.
if else is a sequential decision-making statement while switch case is a multi-branch decision-making statement
if else is used when there are only a few conditions to be checked while switch case is used when there are multiple conditions to be checked
if else can have multiple conditions in a single statement while switch case can o...
Member functions are functions that are defined inside a class and can access the class's private and protected members.
Member functions are also known as methods.
They can be used to manipulate the data members of an object.
They can be overloaded, meaning multiple functions with the same name but different parameters can exist within a class.
They can be declared as const, meaning they do not modify the object's state.
E...
Find the output of c=++a+b-- where a=5 and b=4.
The value of a is incremented by 1 before the addition operation
The value of b is decremented by 1 after the addition operation
The final value of c is 10
The value of a becomes 6 and the value of b becomes 3
10 plants can be planted in 5 rows with 4 plants in each row.
Divide the plants into groups of 4.
Arrange the groups in 5 rows.
Each row will have 4 plants.
Exceptions handling is a mechanism to handle runtime errors in Java programs.
Exceptions are objects that are thrown at runtime when an error occurs
Java provides try-catch-finally blocks to handle exceptions
Checked exceptions must be handled or declared in the method signature
Unchecked exceptions can be handled or left unhandled
Custom exceptions can be created by extending the Exception class
I have experience in project management, data analysis, and consulting across various industries.
Managed multiple projects simultaneously, ensuring timely delivery and client satisfaction
Analyzed data to identify trends and provide insights for clients
Consulted with clients to develop and implement strategies for growth and efficiency
Worked with clients in industries such as healthcare, finance, and retail
Collaborated ...
To gain experience in consulting and develop skills in project management, team leadership, and client relations.
Gain experience in consulting
Develop skills in project management
Develop skills in team leadership
Develop skills in client relations
I applied via Company Website and was interviewed in Sep 2024. There was 1 interview round.
Sort is a general function to arrange elements in a collection, while sort by key is used to sort elements based on a specific key or property.
Sort function arranges elements in a collection based on their natural order or a custom comparator function.
Sort by key function arranges elements in a collection based on a specific key or property of the elements.
Example: Sorting an array of objects by a specific property lik
Creating a new consumer alert for a product or service.
Identify the target audience for the alert
Craft a clear and concise message for the alert
Choose the appropriate channel for delivering the alert (email, SMS, app notification)
Include relevant information such as product updates, safety warnings, or promotions
I applied via Naukri.com and was interviewed in Nov 2024. There was 1 interview round.
IDocs are Intermediate Documents used in SAP systems for exchanging data between systems.
IDocs are structured XML or text files used for data exchange in SAP systems.
They are used to transfer data between SAP systems and between SAP and non-SAP systems.
IDocs contain information about the data being exchanged, such as sender, receiver, and data fields.
They are processed by the SAP system using IDoc processing programs.
E...
I applied via Job Portal and was interviewed in Sep 2024. There were 2 interview rounds.
ALV report can be obtained by using ALV function modules in SAP ABAP.
Use function modules like REUSE_ALV_GRID_DISPLAY or REUSE_ALV_LIST_DISPLAY to create ALV reports.
Define field catalog and layout for ALV display.
Populate data into internal table and display using ALV function modules.
RAP (Rapid Application Prototyping) can be implemented by following a structured process to quickly develop and test software prototypes.
Identify the requirements and objectives of the project
Create a rough sketch or wireframe of the application
Develop a basic prototype using tools like Sketch, Adobe XD, or Figma
Gather feedback from stakeholders and make necessary iterations
Test the prototype with end-users to validate...
I am proficient in multiple programming languages including Java, Python, and C++.
Proficient in Java, Python, and C++
Experience with web development languages such as HTML, CSS, and JavaScript
Familiarity with database languages like SQL
I applied via Referral and was interviewed in Sep 2024. There was 1 interview round.
It was an aviation case study
based on 1 interview
Interview experience
based on 23 reviews
Rating in categories
Associate Consultant
150
salaries
| ₹2 L/yr - ₹5.9 L/yr |
Consultant
102
salaries
| ₹2.8 L/yr - ₹6.6 L/yr |
Talent Acquisition Specialist
80
salaries
| ₹2.2 L/yr - ₹5.5 L/yr |
Sales Executive
75
salaries
| ₹1.4 L/yr - ₹4.8 L/yr |
Talent Acquisition Consultant
66
salaries
| ₹3.2 L/yr - ₹6 L/yr |
Randstad
Team Lease
Quess
Kelly Services