Upload Button Icon Add office photos

Filter interviews by

Rkv Infraprojects Senior Supervisor Interview Questions and Answers

Updated 25 Jul 2025

Rkv Infraprojects Senior Supervisor Interview Experiences

1 interview found

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

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

  • Q1. What is the formula for calculating the volume of a concrete column given the dimensions 0.950 m, 0.750 m, and 2.1 m?
  • Ans. 

    To calculate the volume of a concrete column, use the formula for the volume of a rectangular prism.

    • Volume = Length × Width × Height

    • For dimensions 0.950 m (Length), 0.750 m (Width), and 2.1 m (Height):

    • Volume = 0.950 × 0.750 × 2.1 = 1.49325 m³

    • Ensure all dimensions are in the same unit before calculation.

  • Answered by AI
  • Q2. How many layers of sand are required to fill a depth of 1.5 meters?
  • Ans. 

    To determine the number of sand layers for 1.5 meters, consider the thickness of each layer.

    • Determine the thickness of each sand layer (e.g., 0.1 meters).

    • Divide the total depth (1.5 meters) by the thickness of one layer.

    • Example: For 0.1m layers, 1.5m / 0.1m = 15 layers.

    • Adjust the calculation based on the desired thickness of each layer.

  • Answered by AI
  • Q3. What is the recommended thickness of slab cover in millimeters?
  • Ans. 

    The recommended thickness of slab cover typically ranges from 20 to 40 mm, depending on structural requirements.

    • Standard cover for reinforced concrete slabs is usually 20 mm.

    • For slabs exposed to aggressive environments, a cover of 30 mm or more may be recommended.

    • In seismic zones, thicker covers (up to 40 mm) can enhance structural integrity.

    • Local building codes may specify minimum cover requirements based on material ...

  • Answered by AI
  • Q4. Where do we place the lap in the column?
  • Ans. 

    The lap is placed in the column to ensure proper alignment and support for structural integrity.

    • The lap splice should be placed in the tension zone of the column to enhance strength.

    • Ensure that the lap length meets the design specifications for load-bearing capacity.

    • For example, in reinforced concrete columns, the lap should be staggered to avoid weak points.

    • Proper placement helps in distributing loads evenly and preve...

  • Answered by AI
  • Q5. What is the concrete mix ratio for M-25 grade concrete?
  • Ans. 

    M-25 grade concrete has a mix ratio of 1:1:2, indicating one part cement, one part sand, and two parts aggregate.

    • M-25 is a nominal mix with a compressive strength of 25 MPa.

    • The mix ratio is typically 1 part cement, 1 part sand, and 2 parts coarse aggregate.

    • Water-cement ratio is crucial; usually around 0.4 to 0.5 for M-25.

    • Example: For 1 cubic meter of M-25, use approximately 400 kg of cement, 400 kg of sand, and 800 kg ...

  • Answered by AI
  • Q6. How many layers are used to fill a concrete cube?
  • Ans. 

    Concrete cubes are typically filled in multiple layers to ensure proper compaction and strength.

    • Generally, 2 to 3 layers are used for filling a concrete cube.

    • Each layer should be approximately 5 to 10 cm thick.

    • Compaction is done after each layer to eliminate air pockets.

    • For example, in a 15 cm cube, you might fill it in 3 layers of 5 cm each.

  • Answered by AI
  • Q7. What is the quantity of shuttering required for a measurement of 1m x 0.750m x 2.4m?
  • Ans. 

    Calculate the shuttering quantity for a concrete volume of 1m x 0.75m x 2.4m.

    • Volume = Length x Width x Height = 1m x 0.75m x 2.4m = 1.8m³.

    • Shuttering is used to form the shape of concrete until it sets.

    • Consider additional shuttering for openings or reinforcements.

    • Example: If using plywood, calculate the area of each panel needed.

  • Answered by AI

Top trending discussions

View All
Interview Hub
5d (edited)
anshitanegi
·
ex -
Planet Spark
When HR’s Chinese English made me drop the interview!
So, I talked to the HR yesterday about the interview. I asked Please send me the location But their English… bro I was shocked! It was like talking to someone jisne english nahi kuch ar hi seekh liya ho, if the HR’s English is this I can only imagine the rest of the company I decided to drop the interview with this chinese english😶‍🌫️
FeedCard Image
Got a question about Rkv Infraprojects ?
Ask anonymously on communities.

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. Arrays, Linked Lists, STP/RSTP, VLAN, ARP

Senior Supervisor Interview Questions Asked at Other Companies

Q1. What is the standard height between the WC outlet center and the ... read more
Q2. What is the difference between GI B and C Class pipes?
asked in G4S
Q3. Are you willing to travel to Delhi, Indore, Udaipur, and Varanasi ... read more
Q4. How do you calculate gravity pressure?
Q5. What is the formula for calculating the volume of a concrete colu ... read more

Interview Questionnaire 

1 Question

  • Q1. React hooks

Interview Questionnaire 

1 Question

  • Q1. React hooks

Senior Engineer Interview Questions & Answers

HCLTech user image raja reddy duggi reddy

posted on 27 Apr 2021

Interview Questionnaire 

2 Questions

  • Q1. Engineering Technical
  • Q2. Mainly on Engineering Design

Interview Questionnaire 

1 Question

  • Q1. Tell me about yourself
Be interview-ready. Browse the most asked HR questions.
illustration image

Interview Questionnaire 

6 Questions

  • Q1. Explain abstract factory design pattern ?
  • Q2. How do you do range based map iteration
  • Ans. 

    Range based map iteration can be done using a for-each loop or iterators.

    • Use a for-each loop to iterate over the map elements.

    • Alternatively, use iterators to traverse the map.

    • The range-based for loop is preferred for its simplicity and readability.

    • Example: for(auto const& [key, value] : myMap) { //do something with key and value }

  • Answered by AI
  • Q3. What are detached and joined threads
  • Ans. 

    Detached threads are independent threads that run separately from the main thread. Joined threads are threads that wait for the main thread to finish.

    • Detached threads are created using pthread_detach() function

    • Joined threads are created using pthread_join() function

    • Detached threads do not need to be explicitly terminated

    • Joined threads must be explicitly terminated using pthread_exit() or return statement

    • Detached thread...

  • Answered by AI
  • Q4. What are static code analysis tools
  • Ans. 

    Static code analysis tools are software programs that analyze source code to find potential issues and improve code quality.

    • Static code analysis tools scan code without executing it

    • They can detect issues such as security vulnerabilities, coding errors, and performance problems

    • Examples of static code analysis tools include SonarQube, ESLint, and Checkstyle

  • Answered by AI
  • Q5. Command to list currently running threads in linux
  • Ans. 

    Command to list currently running threads in linux

    • Use the 'ps' command with the 'H' option to display threads in a hierarchy

    • Use the 'top' command to display threads in real-time

    • Use the 'htop' command for an interactive display of threads

  • Answered by AI
  • Q6. Can we perform arithmetic operation on Unique pointer
  • Ans. 

    No, arithmetic operations cannot be performed on unique pointers.

    • Unique pointers are used to manage the lifetime of dynamically allocated objects.

    • They cannot be copied or assigned, only moved.

    • Arithmetic operations are not defined for pointers, including unique pointers.

  • Answered by AI

Skills evaluated in this interview

Are these interview questions helpful?

Interview Questionnaire 

1 Question

  • Q1. What are your career aspirations?

I applied via Naukri.com and was interviewed before Jul 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Coming to AEM,Interviewer has covered all the topics.

Interview Preparation Tips

Interview preparation tips for other job seekers - Pls don't join in TechMahindra.Especially for AEM Folks.Because there are no projects at all.They force you to learn and work in other domain.Then your AEM knowledge will vanish.Worst Company.

I applied via Campus Placement and was interviewed before Apr 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. About the basics of c, c++ and java, also asked to explain the project that I developed.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be bold and transparent. Explain your reasons and issues if any they are under standable.

Rkv Infraprojects Interview FAQs

What are the top questions asked in Rkv Infraprojects Senior Supervisor interview?

Some of the top questions asked at the Rkv Infraprojects Senior Supervisor interview -

  1. What is the formula for calculating the volume of a concrete column given the d...read more
  2. What is the quantity of shuttering required for a measurement of 1m x 0.750m x ...read more
  3. How many layers of sand are required to fill a depth of 1.5 mete...read more

Tell us how to improve this page.

Overall Interview Experience Rating

5/5

based on 1 interview experience

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Trending Companies on AmbitionBox

Adobe Interview Questions
3.8
 • 249 Interviews
Access Healthcare Interview Questions
3.9
 • 235 Interviews
Tata Projects Interview Questions
4.2
 • 515 Interviews
Turing Interview Questions
3.0
 • 103 Interviews
Swiggy Interview Questions
3.7
 • 485 Interviews
Tata Motors Interview Questions
4.1
 • 1.1k Interviews
Sodexo Interview Questions
4.0
 • 179 Interviews
PwC Interview Questions
3.3
 • 1.5k Interviews
Schneider Electric Interview Questions
4.1
 • 397 Interviews
View all
Quality Engineer
5 salaries
unlock blur

₹1.3 L/yr - ₹3 L/yr

Project Manager
4 salaries
unlock blur

₹8.4 L/yr - ₹12.2 L/yr

Site Engineer
4 salaries
unlock blur

₹3.6 L/yr - ₹7.3 L/yr

Billing Engineer
4 salaries
unlock blur

₹4.2 L/yr - ₹7.2 L/yr

Safety Officer
3 salaries
unlock blur

₹4.3 L/yr - ₹5.5 L/yr

Explore more salaries
write
Share an Interview