Upload Button Icon Add office photos

Filter interviews by

Wipro PARI Senior Manager Interview Questions and Answers

Updated 18 Nov 2023

Wipro PARI Senior Manager Interview Experiences

1 interview found

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in Oct 2023. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Pure technical discussion
Round 2 - Technical 

(1 Question)

  • Q1. Again a technical discussion
Round 3 - Technical 

(1 Question)

  • Q1. Once again technical discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - After appearing for 3 different rounds at their convinient time, the HR just ghosted without any feed back. Felt unethical from HR point on of view. The interview rounds ran for around 2.5 months and then they chose to keep mum on final feed back.

Interview questions from similar companies

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

I applied via Walk-in and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Domain related. KPI and SLA etc
Round 2 - One-on-one 

(1 Question)

  • Q1. Process knowledge, people management etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident. Go through JD thoroughly and use your experience while answering.

I applied via Approached by Company and was interviewed in Jan 2022. 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 - Technical 

(1 Question)

  • Q1. Past learning and experience
Round 3 - Technical 

(1 Question)

  • Q1. Knowledge of subject matter
Round 4 - HR 

(1 Question)

  • Q1. Detail assessment and Negotiation

Interview Preparation Tips

Interview preparation tips for other job seekers - Be your self and explain what is being asked to the point answer
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Company Website

Round 1 - Case Study 

Ghkmkjgvnk jhfy hkoojg bhkkmk

Round 2 - One-on-one 

(2 Questions)

  • Q1. What are your reasons for wanting to change your company?
  • Ans. 

    Seeking new challenges and opportunities for growth.

    • Desire for new challenges and learning opportunities

    • Looking for career advancement and growth potential

    • Seeking a more supportive and collaborative work environment

  • Answered by AI
  • Q2. What is your expected salary?
  • Ans. 

    My expected salary is based on my experience, skills, and the market rate for Senior Engineers.

    • Consider my years of experience in the industry

    • Take into account my specialized skills and certifications

    • Research the current market rate for Senior Engineers in this location

    • Negotiate based on the overall compensation package offered

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Do not go in to the
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Virtual is what type
  • Ans. 

    Virtual is a type of function in C++

    • Virtual functions are used in C++ to achieve polymorphism

    • They are declared in a base class and overridden in derived classes

    • Example: virtual void display() = 0;

  • Answered by AI
  • Q2. What is static keyword
  • Ans. 

    The static keyword in programming is used to declare variables, methods, or classes that belong to the class itself rather than instances of the class.

    • Static variables retain their values across all instances of a class.

    • Static methods can be called without creating an instance of the class.

    • Static classes cannot be instantiated and are used for grouping related methods and variables.

    • Example: 'static int count = 0;' decl

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Explained about micro front end in react js
Round 2 - Behavioral 

(2 Questions)

  • Q1. Reason for job change
  • Q2. Can i Work from office for 15 days each month?
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Basics of domain
  • Q2. Technical questions about ur Job

Interview Preparation Tips

Interview preparation tips for other job seekers - Study about JD
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Oops concepts and SOLID
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. One hour test: 1. probability 2. rendering in 3D grahics 3. puzzles
Round 3 - One-on-one 

(1 Question)

  • Q1. Projects worked on in preview company
  • Ans. 

    I have worked on various projects in my previous company.

    • Developed a web application for managing customer orders and inventory.

    • Implemented a machine learning algorithm for predicting customer churn.

    • Collaborated with a team to build a mobile app for tracking fitness activities.

    • Designed and implemented a scalable backend system for processing large amounts of data.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - go via reference of existing employee. Revise the geometry, vector mathematics, transformations
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Dec 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. What is a stack ? Write it implementation
  • Ans. 

    A stack is a data structure that follows the Last In First Out (LIFO) principle.

    • Stack is a collection of elements with two main operations: push (adds element) and pop (removes top element)

    • Common implementations include using arrays or linked lists

    • Example: Undo feature in text editors uses a stack to store previous states

  • Answered by AI
  • Q2. How could we optimize a stack optimization
  • Ans. 

    Optimizing a stack involves reducing unnecessary operations and improving memory usage.

    • Implementing tail call optimization to reduce stack space usage

    • Using iterative algorithms instead of recursive ones to avoid stack overflow

    • Minimizing the number of local variables stored on the stack

    • Using dynamic memory allocation instead of fixed-size arrays to optimize memory usage

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Database query from 2 table without a common column
  • Ans. 

    Use a JOIN statement to combine data from two tables without a common column.

    • Use a JOIN statement to combine data from two tables based on a different column

    • Specify the columns to select from each table in the query

    • Use aliases to differentiate between columns with the same name in different tables

  • Answered by AI
  • Q2. Design a Flight booking system
  • Ans. 

    Design a flight booking system with user authentication, flight search, booking, seat selection, and payment handling.

    • Implement user authentication for secure access.

    • Create a database of flights with availability and pricing.

    • Allow users to search for flights based on criteria like date, destination, and number of passengers.

    • Provide seat selection options for users during booking.

    • Include a payment gateway for secure tra...

  • Answered by AI

Skills evaluated in this interview

Wipro PARI Interview FAQs

How many rounds are there in Wipro PARI Senior Manager interview?
Wipro PARI interview process usually has 4 rounds. The most common rounds in the Wipro PARI interview process are Technical and Resume Shortlist.
What are the top questions asked in Wipro PARI Senior Manager interview?

Some of the top questions asked at the Wipro PARI Senior Manager interview -

  1. Once again technical discuss...read more
  2. Pure technical discuss...read more
  3. Again a technical discuss...read more

Tell us how to improve this page.

Member
189 salaries
unlock blur

₹2 L/yr - ₹9 L/yr

Design Engineer
139 salaries
unlock blur

₹1.8 L/yr - ₹9 L/yr

Lead Member
122 salaries
unlock blur

₹4.7 L/yr - ₹16.5 L/yr

Mechanical Engg. Design
95 salaries
unlock blur

₹2.8 L/yr - ₹8.5 L/yr

Control Software Engineer
78 salaries
unlock blur

₹3.2 L/yr - ₹11.5 L/yr

Explore more salaries
Compare Wipro PARI with

TCS iON

3.9
Compare

Infosys BPM

3.7
Compare

HCLTech

3.5
Compare

Tech Mahindra

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