Filter interviews by
I applied via Naukri.com and was interviewed in Oct 2024. There were 2 interview rounds.
Site engineer and billing information
Most probably topic Ghutno Les and building construction all detail MBC software I handling total mostly programs excel and MS word
BBS stands for Bar Bending Schedule. One way slab is supported on two opposite sides only, while two way slab is supported on all four sides.
BBS is a detailed list of reinforcement bars in a structure
One way slab is supported on two opposite sides only
Two way slab is supported on all four sides
Unit weight of 12mm diameter bar is calculated using the formula: Unit weight = (d^2/162) kg/m, where d is the diameter of the bar in mm.
Calculate the cross-sectional area of the bar using the formula: Area = π*(d^2)/4
Convert the diameter from mm to m by dividing by 1000
Calculate the unit weight using the formula: Unit weight = (Area * length) * density
For example, for a 12mm diameter bar with a length of 1m and densit...
Slump test is a method to measure the workability of concrete by determining the consistency and stiffness of the mix.
Involves filling a cone-shaped mold with concrete, then lifting the mold to see how much the concrete slumps or settles
Helps determine if the concrete mix is suitable for the construction project
Results can indicate if more water or additives are needed to adjust the mix
Commonly used in construction ind
Cube test is a method used to determine the compressive strength of concrete by testing cubes of concrete in a laboratory.
Cube test involves casting cubes of concrete and curing them for a specified period of time.
The cubes are then tested in a compression testing machine to determine the maximum load they can withstand before failure.
The compressive strength of the concrete is calculated based on the maximum load appl...
Density of steel is approximately 7850 kg/m^3.
Density of steel is commonly expressed in kilograms per cubic meter (kg/m^3).
The density of steel is approximately 7850 kg/m^3.
Density can vary slightly depending on the type of steel and its composition.
I applied via Walk-in and was interviewed in Aug 2022. There was 1 interview round.
Lap length is the amount of overlap between two reinforcing bars in concrete construction.
Lap length is important for ensuring the strength and stability of reinforced concrete structures.
It is necessary to provide sufficient lap length to allow for the transfer of stresses between the bars.
The length of the lap depends on factors such as the diameter of the bars, the type of structure, and the design requirements.
For ...
The first bar to be spaced in two-way slab is the shorter span bar. The bars used in two-way slabs are main bars and distribution bars.
The shorter span bar is spaced first in two-way slab
Main bars and distribution bars are used in two-way slabs
Main bars are placed in both directions and are spaced at closer intervals
Distribution bars are placed perpendicular to main bars and are spaced at wider intervals
Effective cover in column, beam, slab, waist slab, and footing is the minimum thickness of concrete provided to protect the steel reinforcement from corrosion.
Effective cover is determined based on the exposure conditions and the type of structure.
For columns and beams, the effective cover is typically 40mm to 50mm.
For slabs, the effective cover is typically 20mm to 30mm.
For waist slabs, the effective cover is typicall...
Civil Guruji interview questions for popular designations
I applied via Company Website and was interviewed before Jan 2023. There was 1 interview round.
I applied via Job Portal and was interviewed in Jul 2022. There was 1 interview round.
Aptitude n reasoning
Basic DSA questions, like prime numbers
I applied via LinkedIn and was interviewed in Jul 2024. There were 7 interview rounds.
If vinay is 6 months old, how much old is his younger brother, 6 years different
About civil engineering, structure engineering, construction, bill of materials
About concrete, pro and cons
About Design Concrete
Case study leaning tower of pissa
My name is John Smith.
My first name is John
My last name is Smith
I go by the name John Smith
My name is John Smith.
Full name is John Smith
Common name
No middle name or initial
I am 28 years old.
I am currently 28 years old.
My age is 28.
I was born in 1993.
Find pair of elements in an array whose sum is equal to a given number K.
Iterate through the array and for each element, check if K minus the element exists in the array.
Use a hash table to store the elements and their indices for faster lookup.
If multiple pairs exist, return any one of them.
If no pair exists, return null or an appropriate message.
Session is maintained using session affinity or sticky sessions.
Session affinity ensures that a user's session is always directed to the same server.
Load balancer uses a unique identifier to route requests to the same server.
Sticky sessions can be implemented using cookies or URL rewriting.
Session replication can also be used to maintain session data across multiple servers.
Singleton pattern ensures only one instance of a class is created and provides a global point of access to it.
Create a private constructor to prevent direct instantiation of the class
Create a private static instance of the class
Create a public static method to access the instance
Ensure thread safety by using synchronized keyword or static initialization block
Examples: Logger, Configuration Manager, Database Connection
Explaining abstract class, interface and multiple inheritance in PHP.
Abstract class is a class that cannot be instantiated and can have abstract methods.
Interface is a collection of abstract methods and constants that can be implemented by a class.
Multiple inheritance is not possible in PHP, but can be achieved using interfaces.
Interfaces can be implemented by multiple classes, allowing for multiple inheritance-like be
Write a stored procedure from given tables and conditions
Identify the tables and their relationships
Determine the conditions to be used in the stored procedure
Write the SQL code for the stored procedure
Test the stored procedure to ensure it returns the desired results
To increase PHP memory at run time, modify the php.ini file or use ini_set() function.
Edit the memory_limit value in php.ini file
Use ini_set('memory_limit', '256M') function to increase memory limit at run time
Check for memory leaks in the code
Use unset() function to free up memory after use
php.ini is a configuration file for PHP that allows users to customize various settings.
Change PHP settings such as memory limit, file upload size, and error reporting
Enable or disable extensions and modules
Set timezone and language settings
Configure email settings
Control caching and session settings
Use window.location to get domain from a url in jQuery.
Use window.location to get the full url
Use .hostname to get the domain name
Use .replace() to remove 'www.' if present
WAP to find smallest palindrome number larger than given number.
Convert the given number to string and check if it is already a palindrome.
If not, increment the number and check if it is a palindrome.
Repeat until a palindrome number larger than the given number is found.
Use a while loop to implement the above steps.
WAP to check if linked list elements is a palindrome without using any extra space.
Traverse the linked list and reverse the second half of the list
Compare the first half with the reversed second half
Use two pointers to traverse the list, one at normal speed and other at double speed
Find the first non-repeating character in a string.
Create a hash table to store the frequency of each character in the string.
Iterate through the string and check the frequency of each character.
Return the first character with a frequency of 1.
Connection pooling is a technique of reusing database connections to improve performance.
Connection pooling helps to reduce the overhead of creating and destroying database connections.
It maintains a pool of connections that can be reused by multiple clients.
Connection pooling is commonly used in web applications to handle multiple requests simultaneously.
It can be configured with parameters like maximum number of conn...
A singleton class in PHP is a class that can only be instantiated once.
Create a private constructor to prevent direct instantiation
Create a private static variable to hold the instance of the class
Create a public static method to get the instance of the class
Ensure that the public static method always returns the same instance
To connect to MySQL database using PHP, create a Connection class.
Use mysqli_connect() function to establish a connection
Pass the database credentials as parameters to the function
Create a constructor method to initialize the connection
Create a query method to execute SQL queries
Close the connection using mysqli_close() method
There are three types of errors in PHP: syntax errors, runtime errors, and logical errors.
Syntax errors occur when the code is not written correctly, such as missing semicolons or parentheses.
Runtime errors occur during the execution of the code, such as trying to access an undefined variable.
Logical errors occur when the code runs without errors, but produces unexpected results, such as a miscalculation in a formula.
Session in PHP allows to store user data on the server for later use.
Session starts when a user logs in and ends when the user logs out or the session expires.
Session data is stored on the server and identified by a unique session ID.
Session variables can be set and accessed using the $_SESSION superglobal array.
Session can be destroyed using the session_destroy() function.
Session can be used to store user-specific dat...
Find missing element in an array of elements from 0 to n-1
Calculate sum of all elements in array and subtract from sum of n natural numbers
Use XOR operation on all elements and n natural numbers
Sort the array and find the missing element
based on 2 interviews
Interview experience
based on 30 reviews
Rating in categories
Site Engineer
9
salaries
| ₹2 L/yr - ₹3 L/yr |
Trainee
7
salaries
| ₹2.4 L/yr - ₹3 L/yr |
Corporate Trainer
6
salaries
| ₹2.3 L/yr - ₹2.7 L/yr |
Civil Engineer
5
salaries
| ₹2.2 L/yr - ₹3 L/yr |
Engineer Trainee
4
salaries
| ₹0.4 L/yr - ₹2.5 L/yr |
Urban Company
Housejoy
Taskbob
Quikr