Upload Button Icon Add office photos

J. Kumar Infraprojects

Compare button icon Compare button icon Compare

Filter interviews by

J. Kumar Infraprojects Process Associate Interview Questions and Answers

Updated 26 Oct 2023

J. Kumar Infraprojects Process Associate Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 

#include
#include
#include
#include

class SeatReservation {
private:
int n; // Number of rows
int m; // Number of seats per row
std::vector> reservedSeats;

public:
SeatReservation(int rows, int seatsPerRow) : n(rows), m(seatsPerRow) {
reservedSeats.resize(n);
}

std::string reserve(int r, int k) {
if (r < 1 || r > n || k < 1 || k > m) {
return "Invalid row or seat number";
}

// Check if requested seats are available
for (int i = k; i < k + 3; ++i) {
if (reservedSeats[r - 1].count(i) > 0) {
return "Seats not available";
}
}

// Reserve the seats
for (int i = k; i < k + 3; ++i) {
reservedSeats[r - 1].insert(i);
}

return "Booked with seat number " + std::to_string(k);
}
};

int main() {
// Example usage
SeatReservation theater(2, 3);

std::cout << theater.reserve(1, 3) << std::endl; // Booked with seat number 1
std::cout << theater.reserve(2, 4) << std::endl; // Seats not available

return 0;
}

Round 3 - Behavioral 

(1 Question)

  • Q1. Four couples, the Maceys, Makins, Salmons and Ainsworths, used a different mode of transportation car, airplane, bus and ship-to reach their vacation dm They each left from different cities: Miami, Memphis...

Interview Preparation Tips

Interview preparation tips for other job seekers - There is a movie theater that has n rows of seats, and m seats in each row. A ticketing service allocates the seats among the q incoming booking requests.

Implement the classes and methods of the ticketing service. Return whether the seats are available for incoming queries.

Implement the classes and methods defined below :-

1. A class named SeatReservation.


Instance Variables :-

Name :-
n

Functionality :-
Stores the value of number of rows in theater.

Name :-
m

Functionality :-
Stores the value of total number of seats per row.

Constructor :-

Name :-

SeatReservation(...)

Functionality :-

A parameterized constructor that initializes the instance variables.

Methods :-

Name :-

string reserve(int r, int k)

Functionality :-

Return "Booked with seat number s" where s is the starting number of the seat otherwise prints "Seats not available".

If the seats are available, the function should return a string with the first seat number of the booked seat in the format "Booked with seat number s" where s is the number of the first seat available in the rth row. If it is not possible, return "Seats not available" and do not reserve a seat.


Example :-

n=2,m=3
q=2
first query: (1, 3)
second query (2, 4)


The theater has 2 rows of 3 seats.

The first request is for 3 seats in row 1. They are available, starting at seat 1. Return "Booked with seat number 1".

The second query is for 4 seats in row 2. Row 2 does not have 4 adjacent seats available. Return "Seats not available".

Requests are handled in the order received and allocations persist through the series of requests. A seat cannot be booked twice.

Constraints :-

• 1 ≤ n, m ≤ 10^5

• 1 ≤ q ≤ 10^4

• 1 ≤ r ≤ n

• 1 ≤ k ≤ 10^9

Top trending discussions

View All
Interview Tips & Stories
6d (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about J. Kumar Infraprojects?
Ask anonymously on communities.

Interview questions from similar companies

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

I appeared for an interview in May 2025, where I was asked the following questions.

  • Q1. What do you know about the current advancements in artificial intelligence?
  • Q2. What are some tools used in artificial intelligence?
  • Ans. 

    AI tools include frameworks, libraries, and platforms that facilitate machine learning, data analysis, and natural language processing.

    • TensorFlow: An open-source library for machine learning and deep learning applications.

    • PyTorch: A flexible deep learning framework popular for research and production.

    • Scikit-learn: A library for classical machine learning algorithms in Python.

    • Keras: A high-level neural networks API that...

  • Answered by AI

Process Associate Interview Questions Asked at Other Companies

asked in Genpact
Q1. How would you explain a red color to a person who has been blind ... read more
asked in Genpact
Q2. What are the Financial statements?
asked in Genpact
Q3. What is creditor How you will define golden rules of accounting D ... read more
asked in Gallagher
Q4. What is depreciation. What are the types of depreciation. Explain ... read more
Q5. Four couples, the Maceys, Makins, Salmons and Ainsworths, used a ... read more
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. What was your experience like during the one-on-one interview with HR?
  • Ans. 

    The one-on-one interview with HR was professional and informative.

    • The HR representative was friendly and welcoming

    • The questions asked were relevant to the position and my experience

    • I was given a clear overview of the company culture and expectations

  • Answered by AI
  • Q2. What types of questions will the manager ask?
Round 2 - One-on-one 

(2 Questions)

  • Q1. Can you explain your previous work experience?
  • Ans. 

    I have 5 years of experience as a financial analyst at a Fortune 500 company.

    • Analyzed financial data to provide insights and recommendations

    • Created financial models to forecast future performance

    • Prepared reports for senior management

    • Collaborated with cross-functional teams on budgeting and forecasting

    • Identified cost-saving opportunities and efficiency improvements

  • Answered by AI
  • Q2. Salary negotiable

Interview Preparation Tips

Interview preparation tips for other job seekers - Married women with kid should not join this company
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Nov 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 - Aptitude Test 

General communication skills

Round 3 - One-on-one 

(1 Question)

  • Q1. Communication and basics of accounting
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Assignment 

Aptitude test which goes nice and we done will and basic knowledge in excel and ms offcie tool

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

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

  • Q1. Work Experience based quations
  • Q2. Education & qualification based quations

Interview Preparation Tips

Interview preparation tips for other job seekers - Educated more & love to work & passionate yours skills leaning & development.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Aug 2023. 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 - Aptitude Test 

Normal level English grammer and General Maths

Round 3 - Typing Test 

(4 Questions)

  • Q1. Normal and easy
  • Q2. Tell me about yourself
  • Q3. Strength and warkness
  • Ans. 

    My strengths include attention to detail and adaptability, while my weakness is sometimes overcommitting to tasks.

    • Strength: Attention to detail - I ensure accuracy in data entry, reducing errors.

    • Strength: Adaptability - I quickly adjust to new processes and technologies.

    • Weakness: Overcommitting - I tend to take on too many tasks, which can lead to stress.

    • Example of strength: In my previous role, I improved the reportin...

  • Answered by AI
  • Q4. About Insurance
Round 4 - HR 

(1 Question)

  • Q1. Tell me about Yourself
Are these interview questions helpful?
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Basics of js, angular
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

1 hour duration, related financial crisis

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Easy for developer work on quant reasoning and verbal for aptitude round

Round 2 - Coding Test 

Easy to medium level questions for coding round

J. Kumar Infraprojects Interview FAQs

How many rounds are there in J. Kumar Infraprojects Process Associate interview?
J. Kumar Infraprojects interview process usually has 3 rounds. The most common rounds in the J. Kumar Infraprojects interview process are Resume Shortlist, Coding Test and Behavioral.

Tell us how to improve this page.

Overall Interview Experience Rating

5/5

based on 1 interview experience

Interview Questions from Similar Companies

L&T Construction Interview Questions
4.0
 • 831 Interviews
Tata Projects Interview Questions
4.2
 • 503 Interviews
KEC International Interview Questions
4.0
 • 355 Interviews
Dilip Buildcon Interview Questions
3.9
 • 159 Interviews
G R Infraprojects Interview Questions
4.1
 • 146 Interviews
AtkinsRealis Interview Questions
3.9
 • 93 Interviews
View all
Junior Engineer
181 salaries
unlock blur

₹1.8 L/yr - ₹5.5 L/yr

Civil Engineer
160 salaries
unlock blur

₹2.4 L/yr - ₹7.5 L/yr

Senior Engineer
159 salaries
unlock blur

₹4.7 L/yr - ₹10.7 L/yr

Civil Site Engineer
147 salaries
unlock blur

₹2 L/yr - ₹6.6 L/yr

Engineer
115 salaries
unlock blur

₹3.2 L/yr - ₹7.7 L/yr

Explore more salaries
Compare J. Kumar Infraprojects with

Larsen & Toubro Limited

3.9
Compare

L&T Construction

4.0
Compare

Tata Projects

4.2
Compare

Kalpataru Projects International

4.2
Compare
write
Share an Interview