Upload Button Icon Add office photos

J. Kumar Infraprojects

Compare button icon Compare button icon Compare

Filter interviews by

J. Kumar Infraprojects Interview Questions, Process, and Tips

Updated 28 Feb 2025

Top J. Kumar Infraprojects Interview Questions and Answers

View all 58 questions

J. Kumar Infraprojects Interview Experiences

Popular Designations

72 interviews found

HR Executive Interview Questions & Answers

user image Anonymous

posted on 28 Oct 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. What is cnc programming
  • Ans. 

    CNC programming is the process of creating instructions for a computer numerical control machine to perform specific tasks.

    • CNC programming involves writing code that controls the movements and actions of a CNC machine.

    • It requires knowledge of programming languages such as G-code and M-code.

    • Programmers must understand the capabilities and limitations of the specific CNC machine being used.

    • CNC programming is used in indu...

  • Answered by AI

Skills evaluated in this interview

HR Executive Interview Questions asked at other Companies

Q1. What do you know about Labor Law
View answer (6)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What equipment handle
  • Ans. 

    Assistant Managers handle various equipment depending on the industry, such as computers, software, machinery, tools, and office supplies.

    • Computers and software for data management and analysis

    • Machinery for production or operations

    • Tools for maintenance or repairs

    • Office supplies for administrative tasks

  • Answered by AI
  • Q2. B

Assistant Manager Interview Questions asked at other Companies

Q1. You are Handling cash operations then how you manage operations with sales ?
View answer (87)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via LinkedIn and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

45 min cgemical test and 30 min aptitude test

Round 2 - Technical 

(1 Question)

  • Q1. Intro what are refining their types heat exchanger explain and elaborate family memvbers project explain further studies strength and weakness why you wanna join this company one think that you are week ...

Chemical Engineer Interview Questions asked at other Companies

Q1. Tell an incident of a technical problem and how you solved it ?
View answer (1)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com

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 

(5 Questions)

  • Q1. Metro project Bumbai
  • Q2. Metro project Bumbai j.kumar
  • Q3. J.kumar metro project
  • Ans. 

    J.kumar metro project is a major infrastructure project involving construction of metro rail system.

    • J.kumar metro project is a large-scale infrastructure project focused on building a metro rail system.

    • The project involves various stages such as planning, design, construction, and implementation.

    • It may include tasks like excavation, tunneling, track laying, station construction, etc.

    • The project requires coordination wi...

  • Answered by AI
  • Q4. Site Engineer , metro project
  • Q5. Very good company

Interview Preparation Tips

Topics to prepare for J. Kumar Infraprojects Civil Site Engineer interview:
  • Civil Engineering
  • Site Engineering
  • Site Supervision
Interview preparation tips for other job seekers - Site Engineer

Civil Site Engineer Interview Questions asked at other Companies

Q1. What is the minimum Grade of Concrete used in R.C.C. works?
View answer (65)

J. Kumar Infraprojects interview questions for popular designations

 Civil Engineer

 (4)

 Civil Foreman

 (3)

 Senior Engineer

 (2)

 Safety Officer

 (2)

 Safety Supervisor

 (2)

 Asst Store

 (2)

 Quality Engineer

 (2)

 QA QC Engineer

 (2)

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

Process Associate Interview Questions asked at other Companies

Q1. How will you explain a red colour (or any colour) to a person who is blind since his or her birth?
View answer (21)

Get interview-ready with Top J. Kumar Infraprojects Interview Questions

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell me sbout yourself
  • Ans. 

    I am a recent graduate with a degree in engineering, passionate about problem-solving and eager to learn and grow in a professional environment.

    • Recent graduate with a degree in engineering

    • Passionate about problem-solving

    • Eager to learn and grow in a professional environment

  • Answered by AI
  • Q2. Tell me about your work
  • Ans. 

    I have experience working on various engineering projects, including designing, testing, and implementing solutions.

    • Designed and implemented a new software system to improve efficiency in data analysis

    • Collaborated with a team to troubleshoot and resolve technical issues in a manufacturing process

    • Conducted experiments to test the performance of different materials for a construction project

  • Answered by AI

Junior Engineer Interview Questions asked at other Companies

Q1. What is the main role of Junior engineer in Electrical maintenance and How to provide the company facilities ?
View answer (25)

Jobs at J. Kumar Infraprojects

View all

Supervisor Interview Questions & Answers

user image Anonymous

posted on 1 Aug 2024

Interview experience
1
Bad
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

I applied via Monster and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Reverse the array and convert it into heap

Round 2 - Aptitude Test 

Maths question and english question they have asked

Supervisor Interview Questions asked at other Companies

Q1. Self introduction? &amp; what is mean by eCommerce ? How it can do
View answer (10)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Selected Selected

I applied via Newspaper Ad and was interviewed in Nov 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. 1. BBS process 1. Subcontractor billing 2. Claim Estimation 4.Material reconciliation
  • Q2. Answer as per the question

Quantity Surveyor Interview Questions asked at other Companies

Q1. What will you do if the site qty differ from Drawing qty
View answer (8)

QA QC Engineer Interview Questions & Answers

user image Ravindra Mishra

posted on 28 Sep 2023

Interview experience
4
Good
Difficulty level
Moderate
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 - Technical 

(5 Questions)

  • Q1. About your experiences
  • Q2. What you have do in your job
  • Q3. Some technical questions from your job
  • Q4. Is codes questions
  • Q5. Share your experiences

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepare before interview

QA QC Engineer Interview Questions asked at other Companies

Q1. wha is your response ?, if material will purchase from any factory then what will u do that ? , how many hours can u do work in a day?, do u know all plant calibration?, how the borrow area will select ?, how u manage your junior in work pe... read more
View answer (4)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Oct 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 - HR 

(1 Question)

  • Q1. 1. Basics Communication skills based questions. 2. General introduction.
Round 3 - Technical 

(1 Question)

  • Q1. Civil related basic technical questions. Procurement related questions
Round 4 - HOD round 

(1 Question)

  • Q1. 1. In-depth Technical questions. 2. In-depth Procurement Based questions.

Graduate Engineer Trainee (Get) Interview Questions asked at other Companies

Q1. Q: 1 What is IC engine? What is the types of IC engine? Q:2 Difference between Otto cycle and Diesel cycle? What is the process of both cycle and what is the effeciency of both cycle ? Which one is good in effeciency? Q:3 Difference between... read more
View answer (2)

J. Kumar Infraprojects Interview FAQs

How many rounds are there in J. Kumar Infraprojects interview?
J. Kumar Infraprojects interview process usually has 2-3 rounds. The most common rounds in the J. Kumar Infraprojects interview process are Technical, Resume Shortlist and HR.
How to prepare for J. Kumar Infraprojects interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at J. Kumar Infraprojects. The most common topics and skills that interviewers at J. Kumar Infraprojects expect are Project Management, General Insurance, Quantity Surveying, Receptionist Activities and Talent Acquisition.
What are the top questions asked in J. Kumar Infraprojects interview?

Some of the top questions asked at the J. Kumar Infraprojects interview -

  1. What is the differences between Live Wedges & Master Wedges.....read more
  2. What is the full from of ISMC, ISMB, ISA.....read more
  3. Grade of dlc ,gsb and dBm which provided of pavemen...read more
How long is the J. Kumar Infraprojects interview process?

The duration of J. Kumar Infraprojects interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

J. Kumar Infraprojects Interview Process

based on 104 interviews

Interview experience

4.2
  
Good
View more

J. Kumar Infraprojects Reviews and Ratings

based on 1.1k reviews

4.0/5

Rating in categories

3.8

Skill development

3.9

Work-life balance

3.6

Salary

3.9

Job security

3.7

Company culture

3.4

Promotions

3.8

Work satisfaction

Explore 1.1k Reviews and Ratings
Procurement Engineer / Officer

Mumbai

4-6 Yrs

Not Disclosed

Engineer Procurement (HO - Mumbai)

Mumbai

2-3 Yrs

Not Disclosed

Engineer - Procurement (For Delhi)

New Delhi

5-7 Yrs

Not Disclosed

Explore more jobs
Junior Engineer
181 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Civil Engineer
157 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Civil Site Engineer
152 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Engineer
138 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Engineer
114 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare J. Kumar Infraprojects with

Larsen & Toubro Limited

4.0
Compare

Hindustan Construction Company

4.2
Compare

Simplex Infrastructures

3.3
Compare

IRB Infrastructure

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