Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by PIT Solutions Team. If you also belong to the team, you can get access from here

PIT Solutions Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

PIT Solutions Associate Lead Engineer Interview Questions and Answers

Updated 13 May 2024

PIT Solutions Associate Lead Engineer Interview Experiences

1 interview found

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

I applied via Referral and was interviewed before May 2023. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Technical levele interview questions
Round 2 - HR 

(1 Question)

  • Q1. Based on the job description salary details
Round 3 - Client Interview 

(1 Question)

  • Q1. Technical level basic

Interview Preparation Tips

Topics to prepare for PIT Solutions Associate Lead Engineer interview:
  • ASP.Net
  • Javascript
  • OOPS

Interview questions from similar companies

I applied via Apna Jobs and was interviewed before Aug 2021. There were 4 interview rounds.

Round 1 - Coding Test 

Easy to score in coding test. 3 questions of easy medium and hard level

Round 2 - Aptitude Test 

English and aptitude test

Round 3 - One-on-one 

(1 Question)

  • Q1. Technical interview on college project and basic ds and algo questions. Asked binary search and some questions on C++
  • Ans. I explained in detail about my college project. Starting questions were in that.
  • Answered Anonymously
Round 4 - HR 

(1 Question)

  • Q1. Nothing much just a very informal conversation about college.
  • Ans. A very casual conversation and nothing technical.
  • Answered Anonymously

Interview Preparation Tips

Topics to prepare for Credera Associate Software Engineer interview:
  • Ds and algo
  • C++
  • Java
Interview preparation tips for other job seekers - Just be confident and prepare your college project thoroughly.

I applied via Naukri.com and was interviewed in May 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Java Basics,Cloud Basics,simple level codes,API related question

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep the basics clear, OOPS DS concepts,REST API Concepts will help
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Oct 2022. There were 3 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 

Basics of core js and css questions

Round 3 - Technical 

(1 Question)

  • Q1. Implement Infinite scroll on the page
  • Ans. 

    Implementing infinite scroll on a webpage

    • Use JavaScript to detect when user reaches the bottom of the page

    • Fetch more content using AJAX calls

    • Append new content to the existing page dynamically

  • Answered by AI

Skills evaluated in this interview

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

I appeared for an interview in Sep 2024.

Round 1 - Coding Test 

I was given a test which was not that difficult

Round 2 - Behavioral 

(2 Questions)

  • Q1. Why are you leaving the current job
  • Ans. 

    Seeking new challenges and growth opportunities in a more innovative environment.

    • Looking for new challenges and opportunities for growth

    • Interested in working in a more innovative environment

    • Seeking a change in company culture or work-life balance

  • Answered by AI
  • Q2. What's the driving factor for you to join Altair
  • Ans. 

    The innovative projects and collaborative work environment at Altair are the driving factors for me to join.

    • Innovative projects: I am excited about the opportunity to work on cutting-edge projects that push the boundaries of technology.

    • Collaborative work environment: I value teamwork and believe that working with talented individuals at Altair will help me grow professionally.

    • Company culture: I have heard great things ...

  • Answered by AI

I applied via Referral and was interviewed before Jul 2021. 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 

(2 Questions)

  • Q1. Basic about Android related to latest practices
  • Q2. Basic for Android components and around Jetpack libs
Round 3 - Coding Test 

2-3 days coding test to develop basic Android app

Round 4 - HR 

(2 Questions)

  • Q1. General HR questions
  • Q2. HR will explain company culture and other perks company proving

Interview Preparation Tips

Topics to prepare for Simform Senior Software Engineer interview:
  • jetpack libs
  • Android basic
  • MVVM
Interview preparation tips for other job seekers - HR team is very kind and available for any help. I highly recommended to work with Simform.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Jun 2023. There were 4 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Opps concept, projects , .net mvc
Round 2 - Coding Test 

Write a crud operation in .net mvc .

Round 3 - One-on-one 

(1 Question)

  • Q1. How to handle conflicts with team members?
  • Ans. 

    Handling conflicts with team members requires open communication, active listening, empathy, and a focus on finding a mutually beneficial solution.

    • Address the conflict directly and in a timely manner

    • Listen actively to the other person's perspective

    • Express your own thoughts and feelings calmly and respectfully

    • Seek to understand the root cause of the conflict

    • Collaborate on finding a solution that works for both parties

    • Ma...

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. General HR discussion.
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What is sql server agent why can't we create objects of abstract class write extension method for abstract class SQL: SP vs Function, which one is faster, why? can I call SP from Function Microservice orch...
  • Ans. 

    SQL Server Agent is a job scheduling tool in SQL Server. Abstract classes cannot be instantiated. SPs are faster than functions. Microservice concepts. IEnumerable vs IQueryable.

    • SQL Server Agent is a job scheduling tool in SQL Server for automating tasks like backups, database maintenance, etc.

    • Abstract classes cannot be instantiated because they are incomplete and meant to be extended by subclasses.

    • Extension methods ca...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. What is record in c# write generic method to perform summation of 2 numeric type variable (int, double, float..) write test cases for Sum method which design pattern you used
  • Ans. 

    A record in C# is a data structure that stores a fixed number of fields of different data types.

    • A record in C# is similar to a struct in C++, containing fields to store data.

    • Example: 'public record Person { public string Name; public int Age; }'

    • Generic method for summation: 'public T Sum(T a, T b) where T : struct, IConvertible { return Convert.ToDouble(a) + Convert.ToDouble(b); }'

    • Test cases can include checking the su...

  • Answered by AI
  • Q2. This was the worst interview I have ever given. Interview got rescheduled 3 times. The panelist behaved so rudely, Why people wouldn't even care to show his face, it's literally very frustrating.

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed before Dec 2022. There were 5 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. Prepare basic level of interview questions.
Round 3 - Technical 

(1 Question)

  • Q1. Prepare advanced-level interview questions
Round 4 - HR 

(1 Question)

  • Q1. Your work experience, more related questions, and communication check
Round 5 - One-on-one 

(1 Question)

  • Q1. Package discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - It was a nice experience for my interview. It was remotely. Prepare your interview at the best level. All the basic concepts must be clear. Experience matters finally.
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before May 2023.

Round 1 - Technical 

(2 Questions)

  • Q1. 4 pillars of oops
  • 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: Ability of a class to inherit properties and behavior from another class

    • Polymorphism: Ability to present the same interface for different data types

    • Abstraction: Hiding the complex implementation details and showing only the necessary features

  • Answered by AI
  • Q2. Routing in MVC?
  • Ans. 

    Routing in MVC refers to the process of mapping URLs to controller actions in a web application.

    • Routing is the mechanism that directs incoming HTTP requests to the appropriate controller and action method in an MVC application.

    • Routes are defined in the RouteConfig.cs file in ASP.NET MVC applications.

    • Routes can be configured to include parameters that are passed to the controller action.

    • Routes can also include constrain...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic questions from asp.net

Skills evaluated in this interview

PIT Solutions Interview FAQs

How many rounds are there in PIT Solutions Associate Lead Engineer interview?
PIT Solutions interview process usually has 3 rounds. The most common rounds in the PIT Solutions interview process are Technical, HR and Client Interview.
What are the top questions asked in PIT Solutions Associate Lead Engineer interview?

Some of the top questions asked at the PIT Solutions Associate Lead Engineer interview -

  1. Technical levele interview questi...read more
  2. Technical level ba...read more

Tell us how to improve this page.

PIT Solutions Associate Lead Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Apisero Interview Questions
4.3
 • 65 Interviews
TestingXperts Interview Questions
3.9
 • 41 Interviews
Credera Interview Questions
3.8
 • 40 Interviews
Damco Solutions Interview Questions
3.9
 • 38 Interviews
Stefanini Interview Questions
2.9
 • 35 Interviews
Simform Interview Questions
3.5
 • 34 Interviews
View all
PIT Solutions Associate Lead Engineer Salary
based on 6 salaries
₹11 L/yr - ₹14.2 L/yr
20% less than the average Associate Lead Engineer Salary in India
View more details

PIT Solutions Associate Lead Engineer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

3.0

Skill development

5.0

Work-life balance

4.0

Salary

4.0

Job security

4.0

Company culture

3.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Software Engineer
134 salaries
unlock blur

₹3 L/yr - ₹10.1 L/yr

Senior Software Engineer
127 salaries
unlock blur

₹5 L/yr - ₹14 L/yr

Test Engineer
55 salaries
unlock blur

₹3 L/yr - ₹6 L/yr

Senior Test Engineer
36 salaries
unlock blur

₹4.2 L/yr - ₹9.2 L/yr

Business Analyst
27 salaries
unlock blur

₹2.9 L/yr - ₹6.8 L/yr

Explore more salaries
Compare PIT Solutions with

Apisero

4.3
Compare

Impelsys

3.5
Compare

LatentView Analytics

3.7
Compare

In Time Tec Visionsoft

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