Upload Button Icon Add office photos

Filter interviews by

SP Engineering & Construction Interview Questions and Answers

Updated 24 Jan 2025

SP Engineering & Construction Interview Experiences

Popular Designations

4 interviews found

Asst Store Interview Questions & Answers

user image Anonymous

posted on 24 Jan 2025

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I was interviewed before Jan 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Express your dedication to continuous learning, hard work, and overcoming challenges to reach your goal.
  • Q2. Clearly state your career goal or life aspiration, making it concise and easy to understand.

Asst Store Interview Questions asked at other Companies

Q1. What is the process of issuing material in your company?
View answer (5)

I applied via LinkedIn and was interviewed before Nov 2021. 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 Resume tips
Round 2 - Aptitude Test 

Online Test based on Technical and general Aptitude

Round 3 - Technical 

(2 Questions)

  • Q1. How to execute granite flooring
  • Ans. 

    Granite flooring can be executed by following these steps

    • Prepare the surface by cleaning and leveling it

    • Apply a layer of mortar and let it dry for a day

    • Lay the granite tiles in a pattern, leaving space for grout

    • Apply grout and let it dry for a day

    • Seal the surface to protect it from stains and damage

  • Answered by AI
  • Q2. How to Ensure that the plastering work is as pe quality standard
  • Ans. 

    Regular inspection and testing of materials and workmanship can ensure quality plastering work.

    • Ensure that the materials used for plastering are of good quality and meet the required standards.

    • Regularly inspect the workmanship to ensure that it meets the required standards.

    • Conduct tests on the plastered surface to check for strength, adhesion, and durability.

    • Ensure that the plastering work is done by skilled and experi...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for SP Engineering & Construction Civil Engineer interview:
  • Execution
  • Billing
Interview preparation tips for other job seekers - Prepare yourself for CBT test. if u clear u ll get a call frm the hr

Civil Engineer Interview Questions asked at other Companies

Q1. What is the curing formalities for our precast segment???
View answer (22)

I applied via Approached by Company and was interviewed before Mar 2021. There were 4 interview rounds.

Round 1 - Aptitude Test 

Reasoning, General Intelligence

Round 2 - Technical 

(1 Question)

  • Q1. Department related questions.
Round 3 - HR 

(1 Question)

  • Q1. Notice period, Relocated conformation.
Round 4 - HR 

(1 Question)

  • Q1. Negotiations and finalisations of posting date location and designation.

Interview Preparation Tips

Interview preparation tips for other job seekers - Good Company to work. Management is also very good and supportive.

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 Questions & Answers

user image Anonymous

posted on 12 May 2018

I applied via Campus Placement and was interviewed in Jul 2017. There were 6 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. After qualifying GD round we went through technical interview... In this we were asked all the technical questions related to our branch and some current affairs qus too
  • Q2. During technical interview i were asked many branch related qus.. For eg: i was asked about my mini project... I had described all the circuit details of my project...

Interview Preparation Tips

Round: Test
Experience: Test type was mainly related to non technical part... There was 75% qus from non tech and 25% from technical (branch related)

Round: Group Discussion
Experience: In group discussion we had given a topic, on which we had to write something for 5 min after that we had a discussion round b/w team members..

General Tips: My interview experience is amazing... First time i went through any interview and i got selected...so i was very happy...

Advice is jst that BE CONFIDENT,, DON'T UNDERESTIMATE YOURSELF,,BE POSITIVE and never be afraid when u r going through any interview... Interviewer also see your confidence,, how frequently aur flawlessly you give answer... That's it..

Thanks...
Skills: Communication, Body Language, Problem Solving, Analytical Skills, Leadership, Presentation Skills, Time Management, Decision Making Skills
Duration: 1-4 weeks
College Name: Government women's polytechnic patna 14

SP Engineering & Construction interview questions for popular designations

 Asst Store

 (1)

 Civil Engineer

 (1)

 QA QC Engineer

 (1)

Interview questions from similar companies

I was interviewed before Jan 2021.

Round 1 - Face to Face 

(3 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This was a typical DS/Algo where I was asked to solve two questions related to Binary Trees and write the pseudo code for both of them followed by some theoretical questions related to Operating Systems.

  • Q1. 

    K-th Largest Number in a BST

    Given a binary search tree (BST) consisting of integers and containing 'N' nodes, your task is to find and return the K-th largest element in this BST.

    If there is no K-th la...

  • Ans. 

    Find the K-th largest element in a BST.

    • Perform reverse in-order traversal of the BST to find the K-th largest element.

    • Keep track of the count of visited nodes to determine the K-th largest element.

    • Return -1 if there is no K-th largest element in the BST.

  • Answered by AI
  • Q2. 

    Is Height Balanced Binary Tree Problem Statement

    Determine if the given binary tree is height-balanced. A tree is considered height-balanced when:

    1. The left subtree is balanced.
    2. The right subtree is bala...
  • Ans. 

    Determine if a given binary tree is height-balanced by checking if left and right subtrees are balanced and their height difference is at most 1.

    • Check if the left subtree is balanced

    • Check if the right subtree is balanced

    • Calculate the height difference between the left and right subtrees

    • Return 'True' if all conditions are met, otherwise return 'False'

  • Answered by AI
  • Q3. Can you explain the concepts of Zombie Process and Orphan Process in operating systems?
  • Ans. 

    Zombie process is a terminated process that has completed execution but still has an entry in the process table. Orphan process is a process whose parent process has terminated.

    • Zombie process is created when a child process completes execution but its parent process has not yet read its exit status.

    • Zombie processes consume system resources and should be cleaned up by the parent process using wait() system call.

    • Orphan p...

  • Answered by AI
Round 2 - Face to Face 

(3 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This was also a Data Structures and Algorithm round where I was asked to solve 3 medium to hard level problems along with their pseudo code within 60 minutes .

  • Q1. 

    Longest Substring Without Repeating Characters Problem Statement

    Given a string S of length L, determine the length of the longest substring that contains no repeating characters.

    Example:

    Input:
    "abac...
  • Ans. 

    Find the length of the longest substring without repeating characters in a given string.

    • Use a sliding window approach to keep track of the longest substring without repeating characters.

    • Use a hashmap to store the index of each character in the string.

    • Update the start index of the window when a repeating character is found.

    • Calculate the maximum length of the window as you iterate through the string.

    • Return the maximum le

  • Answered by AI
  • Q2. 

    Problem: Search In Rotated Sorted Array

    Given a sorted array that has been rotated clockwise by an unknown amount, you need to answer Q queries. Each query is represented by an integer Q[i], and you must ...

  • Ans. 

    Search for integers in a rotated sorted array efficiently.

    • Use binary search to efficiently search for integers in the rotated sorted array.

    • Handle the rotation of the array while performing binary search.

    • Return the index of the integer if found, else return -1.

  • Answered by AI
  • Q3. 

    Count Subarrays with Sum Divisible by K

    Given an array ARR and an integer K, your task is to count all subarrays whose sum is divisible by the given integer K.

    Input:

    The first line of input contains an...
  • Ans. 

    Count subarrays with sum divisible by K in an array.

    • Iterate through the array and keep track of the prefix sum modulo K.

    • Use a hashmap to store the frequency of each prefix sum modulo K.

    • For each prefix sum, increment the count by the frequency of (prefix sum - K) modulo K.

    • Handle the case when prefix sum itself is divisible by K.

    • Return the total count of subarrays with sum divisible by K.

  • Answered by AI
Round 3 - Face to Face 

(2 Questions)

Round duration - 50 Minutes
Round difficulty - Medium

In this round , I was asked to code a simple question related to BST . After that I was asked the internal implementation of a Hash Map where I was supposed to design a Hash Map using any of the Hashing Algorithms that I know . This was preety challenging for me but I got to learn so much from it.

  • Q1. 

    Ceil Value from BST Problem Statement

    Given a Binary Search Tree (BST) and an integer, write a function to return the ceil value of a particular key in the BST.

    The ceil of an integer is defined as the s...

  • Ans. 

    Ceil value of a key in a Binary Search Tree (BST) is found by returning the smallest integer greater than or equal to the given number.

    • Traverse the BST to find the closest value greater than or equal to the key.

    • Compare the key with the current node value and update the ceil value accordingly.

    • Recursively move to the left or right subtree based on the comparison.

    • Return the ceil value once the traversal is complete.

  • Answered by AI
  • Q2. 

    Design a Constant Time Data Structure

    Create a data structure that maintains mappings between keys and values, supporting the following operations in constant time:

    1. INSERT(key, value): Add or update t...
  • Ans. 

    Design a constant time data structure to maintain mappings between keys and values with various operations.

    • Use a hash table to achieve constant time complexity for INSERT, DELETE, SEARCH, and GET operations.

    • Keep track of the number of key-value pairs for GET_SIZE operation.

    • Check if the hash table is empty for IS_EMPTY operation.

    • Return true or false for SEARCH operation based on key existence.

    • Return the value associated...

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAFlipkart interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 4 MonthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

I was interviewed before Jan 2021.

Round 1 - Coding Test 

(3 Questions)

Round duration - 90 Minutes
Round difficulty - Hard

I found the online coding round of Flipkart to be quite difficult based on the constraints of the problem and their time limits. I coded the first problem quite easily but on the second and the third problem , my code could only pass a few test cases and gave TLE for most of them. Both the questions required very efficient solution and the last 5 to 10 Test Cases carried more weight than the rest so I didn't get through this round.

  • Q1. 

    Print the Kth Digit

    Given three non-negative integers N, M, and K, compute the Kth digit from the right in the number obtained from N raised to the power M (i.e., N ^ M).

    Input:

    The first line contains ...
  • Ans. 

    The task is to find the Kth digit from the right in the number obtained from N raised to the power M.

    • Iterate through the digits of N^M from right to left

    • Keep track of the position of the current digit

    • Return the digit at position K from the right

  • Answered by AI
  • Q2. 

    The Skyline Problem

    Compute the skyline of given rectangular buildings in a 2D city, eliminating hidden lines and forming the outer contour of the silhouette when viewed from a distance. Each building is ...

  • Ans. 

    Compute the skyline of given rectangular buildings in a 2D city, eliminating hidden lines and forming the outer contour of the silhouette.

    • Iterate through the buildings and create a list of critical points (x, y) where the height changes.

    • Sort the critical points based on x-coordinate and process them to form the skyline.

    • Merge consecutive horizontal segments of equal height into one to ensure no duplicates.

    • Return the fin...

  • Answered by AI
  • Q3. 

    Longest Palindromic Substring Problem Statement

    You are provided with a string STR of length N. The goal is to identify the longest palindromic substring within this string. In cases where multiple palind...

  • Ans. 

    Identify the longest palindromic substring in a given string.

    • Iterate through the string and expand around each character to find palindromes

    • Keep track of the longest palindrome found

    • Return the longest palindrome with the smallest start index

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAFlipkart interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewRejected

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. Off-campus interviews in Bangalore

Interview Preparation Tips

Round: Test
Experience: Only a few students will get shortlisted who do all the questions correctly.

Round: Other Interview
Experience: First 4 rounds on day 1 and this are just to shortlist for more rounds on some other day.
Tips: They will focus on almost all the concepts of computer science.You need to practice a lot and start it right now. Should be easy if you have prepared well enough. Use your holidays to start preparing for placements.

General Tips: Sooner you start, better your placement will be as lack of practice & last day study works only for exams but never for interviews. You'll get enough time to prepare for interviews once you get shortlisted. Focus on it even if you are placed already.
Skill Tips: They will focus on almost all the concepts of computer science.
Skills: C , Aptitude
College Name: NIT SURATHKAL

I was interviewed in Dec 2016.

Interview Preparation Tips

Round: Technical Interview
Experience: On-site interview (5 hours).

4 back-to-back 45-minute coding interviews, followed by a design interview, with a lunch break with a Googler in the middle.

The first coding interview was a set of (surprisingly) trivial (no algorithms needed) incremental coding questions.

The two next coding interviews were problems straight from the "Cracking the coding interview" book. Even though I divulged that I'd solved pretty much exactly the same problem before, they didn't give me an alternative problem and I quickly coded up a general and optimal solution for the problems. Follow-up in-depth questions were minimal and not hard.

The last coding question was a pure algorithm question related to search trees/tries. No coding required, spent the whole time reasoning about the most effective algorithm. This was a bit of a brain twister.

The design question was related to high-level system design (not OO design) for storage and search in geographic data. Focus was effective search as well as scalability both in traffic and data volumes.

Tips: Read "Cracking the coding interview" or other similar literature. Solve all the problems and you should be good to go. If you solve a bunch of problems at HackerRank (or similar) as well, you'll have the added bonus of training on how to generalize the algorithms.

I was interviewed in Jun 2017.

Interview Preparation Tips

Round: Resume Shortlist
Experience: it was very optimistic.
Tips: always be positive


Interview Questionnaire 

1 Question

  • Q1. What do u want us to do fr u??
  • Ans. 

    I want you to provide me with challenging software development projects that will help me grow as a developer.

    • Challenging projects that will push my skills to the limit

    • Opportunities to learn new technologies and programming languages

    • Collaborative work environment with experienced developers

    • Clear communication and feedback on my work

    • Opportunities for career growth and advancement

  • Answered by AI

Interview Preparation Tips

Round: Technical Interview
Experience: Pay me high!!
Tips: Never say something like that!!

Skill Tips: Develop codes
Skills: Programming
College Name: IIT BOMBAY
Contribute & help others!
anonymous
You can choose to be anonymous

SP Engineering & Construction Interview FAQs

How many rounds are there in SP Engineering & Construction interview?
SP Engineering & Construction interview process usually has 2-3 rounds. The most common rounds in the SP Engineering & Construction interview process are Technical, Aptitude Test and HR.
What are the top questions asked in SP Engineering & Construction interview?

Some of the top questions asked at the SP Engineering & Construction interview -

  1. How to Ensure that the plastering work is as pe quality stand...read more
  2. How to execute granite floor...read more
  3. After qualifying GD round we went through technical interview... In this we wer...read more

Recently Viewed

SALARIES

Hill International

SALARIES

Fortis Escorts Hospital

JOBS

Primosys Technologies

No Jobs

JOBS

Infineon Technologies

No Jobs

JOBS

JPMorgan Chase & Co.

No Jobs

JOBS

Partners Healthcare

No Jobs

JOBS

Technic Construction

No Jobs

SALARIES

VMware Software

LIST OF COMPANIES

Shapoorji Pallonji Group

Locations

JOBS

White Collar Realty

No Jobs

Tell us how to improve this page.

SP Engineering & Construction Interview Process

based on 3 interviews

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Flipkart Interview Questions
4.0
 • 1.3k Interviews
WNS Interview Questions
3.4
 • 1k Interviews
Tata Motors Interview Questions
4.2
 • 995 Interviews
Infosys BPM Interview Questions
3.6
 • 939 Interviews
Bharti Airtel Interview Questions
4.0
 • 843 Interviews
Google Interview Questions
4.4
 • 822 Interviews
DXC Technology Interview Questions
3.7
 • 795 Interviews
Mphasis Interview Questions
3.4
 • 789 Interviews
KPMG India Interview Questions
3.5
 • 788 Interviews
Nagarro Interview Questions
4.0
 • 759 Interviews
View all

SP Engineering & Construction Reviews and Ratings

based on 26 reviews

3.4/5

Rating in categories

3.1

Skill development

3.3

Work-life balance

3.0

Salary

3.9

Job security

3.4

Company culture

2.5

Promotions

3.2

Work satisfaction

Explore 26 Reviews and Ratings
Senior Engineer
9 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Graduate Engineer Trainee (Get)
8 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Commercial Engineer
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Civil Site Engineer
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Contracts Administration Manager
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare SP Engineering & Construction with

iEnergizer

4.6
Compare

Bharti Airtel

4.0
Compare

WNS

3.4
Compare

Tata Motors

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