Upload Button Icon Add office photos

Filter interviews by

J. Kumar Infraprojects Interview Questions, Process, and Tips

Updated 15 Jan 2025

Top J. Kumar Infraprojects Interview Questions and Answers

View all 49 questions

J. Kumar Infraprojects Interview Experiences

Popular Designations

68 interviews 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

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 (19)
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)

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)

J. Kumar Infraprojects interview questions for popular designations

 Civil Engineer

 (4)

 Civil Foreman

 (3)

 Civil Site Engineer

 (2)

 QA QC Engineer

 (2)

 Quality Engineer

 (2)

 Safety Supervisor

 (2)

 Senior Engineer

 (2)

 Surveyor

 (2)

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:
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 

(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 (2)

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

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:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
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)

Jobs at J. Kumar Infraprojects

View all

Vsat Engineer Interview Questions & Answers

user image Anonymous

posted on 22 Jul 2024

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Monster and was interviewed before Jul 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. What is the current address
  • Ans. 

    I currently reside at 123 Main Street, Anytown, USA.

    • My current address is 123 Main Street, Anytown, USA.

    • I live in a residential area.

    • The address includes a street number, street name, city, and country.

  • Answered by AI
  • Q2. Where is the current address
  • Ans. 

    I currently reside at 123 Main Street, City, State, Zip Code.

    • 123 Main Street, City, State, Zip Code

    • Provide complete address including street, city, state, and zip code

  • Answered by AI
Round 2 - Aptitude Test 

What is bjjmbsksksksksk

Interview Preparation Tips

Interview preparation tips for other job seekers - This is the current address is not working in the current address

Vsat Engineer Interview Questions asked at other Companies

Q1. What is the current address
View answer (1)
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Dec 2023. There was 1 interview round.

Round 1 - Civil Foreman work 

(6 Questions)

  • Q1. What BBS in contraction
  • Ans. 

    BBS in construction stands for Bar Bending Schedule.

    • BBS is a document that provides details about the reinforcement steel bars used in a construction project.

    • It includes information about the size, shape, quantity, and placement of the bars.

    • BBS helps in estimating the required amount of steel, planning the cutting and bending of bars, and ensuring proper reinforcement in the structure.

    • Example: BBS for a column may spec...

  • Answered by AI
  • Q2. What is mix ratio M 25
  • Ans. 

    Mix ratio M 25 is a concrete mix design that consists of 1 part cement, 1 part fine aggregate, and 2 parts coarse aggregate.

    • M 25 mix ratio is commonly used in construction for structural applications.

    • The mix ratio represents the proportions of different materials used in the concrete mix.

    • For M 25, the ratio is 1:1:2, which means 1 part cement, 1 part fine aggregate (sand), and 2 parts coarse aggregate (stone chips or g...

  • Answered by AI
  • Q3. How many zone in u grider
  • Ans. 

    The number of zones in a u grider varies depending on the specific design and requirements.

    • The number of zones in a u grider can range from 1 to multiple zones.

    • Zones are typically created to divide the grider into sections for better load distribution and structural stability.

    • The number of zones may be determined by factors such as the length and span of the grider, the load it needs to support, and the design specific...

  • Answered by AI
  • Q4. How calculate zone Azone 3,700m B zone 1000ma& C zone remaining in center
  • Ans. 

    To calculate zone A, zone B, and zone C, you need to know the total area and the dimensions of each zone.

    • Determine the total area of the site

    • Calculate the area of zone A by subtracting the combined area of zones B and C from the total area

    • Calculate the area of zone B using the given dimension

    • Calculate the area of zone C by subtracting the area of zone B from the total area

    • Ensure the units of measurement are consistent

  • Answered by AI
  • Q5. How can work in hight
  • Ans. 

    Working at heights requires proper safety measures and equipment.

    • Use appropriate safety harnesses and fall protection systems.

    • Ensure scaffolding and ladders are secure and stable.

    • Follow safety guidelines and regulations.

    • Provide proper training to workers on working at heights.

    • Regularly inspect and maintain equipment and tools.

    • Implement safety barriers and guardrails.

    • Use aerial lifts or platforms for safe access to elev...

  • Answered by AI
  • Q6. How u bihev ur Engeniar
  • Ans. 

    I behave as a civil engineer by being professional, organized, and detail-oriented.

    • I maintain a professional demeanor at all times, treating colleagues and clients with respect.

    • I am organized in my work, keeping track of project timelines, budgets, and resources.

    • I pay attention to details, ensuring accuracy in calculations, measurements, and documentation.

    • I communicate effectively with team members, subcontractors, and...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Civil foreman concrete & finishing process

Skills evaluated in this interview

Top J. Kumar Infraprojects Civil Foreman Interview Questions and Answers

Q1. How calculate zone Azone 3,700m B zone 1000ma&amp; C zone remaining in center
View answer (2)

Civil Foreman Interview Questions asked at other Companies

Q1. How do prepare bbs. Shuttering work prosses , RCC and pqc work, lay out, DPR, and quantity .
View answer (1)

Tunnel Quality engineer Interview Questions & Answers

user image Anonymous

posted on 18 Jun 2024

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

I applied via Company Website and was interviewed before Jun 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Please tell me about your self?
  • Q2. How many experience in Quality department and And what was the responsibility in the current company?
Round 2 - HR 

(2 Questions)

  • Q1. What is the CTC in the current company
  • Q2. How much percentage increase do you want from this company?

Interview Preparation Tips

Interview preparation tips for other job seekers - My experience with J Kumar has been very good. And I wish it remains good in the future too.

Sdet Lead Interview Questions & Answers

user image Anonymous

posted on 23 Jul 2024

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

Normal and easy. Simple enough question

Round 2 - Coding Test 

Normal and easy question very standard

Sdet Lead Interview Questions asked at other Companies

Q1. write a palindrome program without using any in-build method. if there are 500 test cases and need to run only 50 test cases, then how to approach and do it? what is the framework used in your project? how will you handle if a team member w... read more
View answer (1)

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 19 interviews in last 1 year

Interview experience

3.9
  
Good
View more

J. Kumar Infraprojects Reviews and Ratings

based on 1.1k reviews

4.1/5

Rating in categories

3.9

Skill development

3.9

Work-life balance

3.7

Salary

3.9

Job security

3.7

Company culture

3.5

Promotions

3.9

Work satisfaction

Explore 1.1k Reviews and Ratings
Contracts Engineer

Mumbai

2-5 Yrs

₹ 6.6-6 LPA

Administration Manager

Mumbai

10-17 Yrs

Not Disclosed

Executive Assistant

Mumbai

4-8 Yrs

₹ 5-11 LPA

Explore more jobs
Civil Engineer
168 salaries
unlock blur

₹2 L/yr - ₹9 L/yr

Junior Engineer
167 salaries
unlock blur

₹2 L/yr - ₹5 L/yr

Civil Site Engineer
156 salaries
unlock blur

₹2 L/yr - ₹6.6 L/yr

Senior Engineer
132 salaries
unlock blur

₹4.5 L/yr - ₹11.2 L/yr

Engineer
118 salaries
unlock blur

₹2.5 L/yr - ₹9.8 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