Upload Button Icon Add office photos
Premium Employer

i

This company page is being actively managed by Arup Team. If you also belong to the team, you can get access from here

Arup Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Arup Senior Civil Site Engineer Interview Questions and Answers

Updated 14 Sep 2022

Arup Senior Civil Site Engineer Interview Experiences

1 interview found

I applied via Recruitment Consulltant and was interviewed in Aug 2022. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Bbs, shuttering, leveling, testing, quality.

Interview Preparation Tips

Interview preparation tips for other job seekers - Project monitoring, Project management, client management, project development, staff development skills

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Aug 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Previous project worked and techical details aout the project
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Sep 2022. There were 2 interview rounds.

Round 1 - Technical 

(6 Questions)

  • Q1. About scm profile
  • Q2. How many spent have you handle
  • Q3. Howmuch supplier are u handling
  • Ans. 

    I am currently handling 5 suppliers for various engineering projects.

    • I am responsible for managing relationships with 5 different suppliers

    • I oversee the procurement process for materials and services from these suppliers

    • I negotiate contracts and pricing with each supplier to ensure cost-effectiveness

    • I monitor supplier performance and address any issues that may arise

    • Examples: Supplier A for steel, Supplier B for electr...

  • Answered by AI
  • Q4. Are you ready to work for services industry
  • Q5. Which commodities are u handling
  • Ans. 

    I handle a variety of commodities including raw materials, finished goods, and equipment.

    • Raw materials such as steel, aluminum, and plastic

    • Finished goods like electronics, clothing, and furniture

    • Equipment such as machinery, vehicles, and tools

  • Answered by AI
  • Q6. Excel related questions
Round 2 - Technical 

(2 Questions)

  • Q1. Howmany suppliers are you handling
  • Ans. 

    I am currently handling relationships with 10 suppliers across various industries.

    • I manage relationships with 10 suppliers

    • Suppliers are from various industries

    • Examples: Supplier A - electronics, Supplier B - automotive

  • Answered by AI
  • Q2. CTC expectations

Interview Preparation Tips

Interview preparation tips for other job seekers - Go with flow
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant 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 Resume tips
Round 2 - Technical 

(1 Question)

  • Q1. Asked about previously worked projects.
Round 3 - Tool Test 

(1 Question)

  • Q1. Tool test conducted in modelling software.
Round 4 - One-on-one 

(2 Questions)

  • Q1. Questions based on what you have provided in your resume.
  • Q2. Salary discussion
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Oct 2022. 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 - Coding Test 

Had three coding questions

Round 3 - Technical 

(2 Questions)

  • Q1. C basic theory questions
  • Q2. Implement strcmp function Few questions related to Device drivers
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Dec 2022. There were 2 interview rounds.

Round 1 - Technical 

(12 Questions)

  • Q1. Write C program to multiply two matrices
  • Ans. 

    Program to multiply two matrices in C

    • Declare two matrices and initialize them with values

    • Use nested loops to iterate through rows and columns of the matrices

    • Perform multiplication and store the result in a new matrix

    • Print the resulting matrix

  • Answered by AI
  • Q2. Write C program to reverse the string without using built in function
  • Ans. 

    Program to reverse a string without using built-in functions in C

    • Create a function to reverse the string by swapping characters from start to end

    • Use two pointers, one pointing to the start of the string and the other pointing to the end

    • Swap the characters at the two pointers and move them towards each other until they meet in the middle

  • Answered by AI
  • Q3. What are the different types of storage classes
  • Ans. 

    The different types of storage classes in C programming are auto, register, static, and extern.

    • Auto storage class is the default storage class for all local variables.

    • Register storage class is used to define local variables that should be stored in a register instead of RAM.

    • Static storage class allows a variable to retain its value between function calls.

    • Extern storage class is used to give a reference of a global vari

  • Answered by AI
  • Q4. Difference between structure and union
  • Ans. 

    Structure is a user-defined data type that allows storing different types of data in a single variable, while union is a data type that allows storing only one type of data at a time.

    • Structure allows storing different types of data in a single variable, while union allows storing only one type of data at a time.

    • In a structure, each member has its own memory location, while in a union, all members share the same memory ...

  • Answered by AI
  • Q5. Write a c program to toggle the 3rd bit position
  • Ans. 

    Toggle the 3rd bit position in a given number using bitwise operators in C.

    • Use bitwise OR operator with 0x04 to toggle the 3rd bit position.

    • Example: num ^= (1 << 2) will toggle the 3rd bit position in 'num'.

  • Answered by AI
  • Q6. What is memory leak
  • Ans. 

    Memory leak is a situation where a program fails to release memory it has allocated, leading to a gradual loss of available memory.

    • Memory leaks occur when a program allocates memory but does not free it after use.

    • This can lead to a gradual loss of available memory, eventually causing the program or system to crash.

    • Common causes of memory leaks include improper management of dynamic memory allocation and circular refere...

  • Answered by AI
  • Q7. What is mean by Dangling pointer
  • Ans. 

    A dangling pointer is a pointer that points to a memory location that has been deallocated, leading to undefined behavior.

    • Dangling pointers can occur when memory is freed but the pointer is not set to NULL.

    • Accessing a dangling pointer can result in crashes or unexpected behavior.

    • Example: int *ptr = new int; delete ptr; // ptr is now a dangling pointer

  • Answered by AI
  • Q8. Determine the output for logic code on pointers
  • Ans. 

    The question involves determining the output for logic code on pointers.

    • Pointer arithmetic can be used to access elements in an array.

    • Pointers can be dereferenced to access the value they point to.

    • Pointers can be used to pass variables by reference.

  • Answered by AI
  • Q9. C program on linked list
  • Ans. 

    Implement a C program using linked list

    • Use struct to define the linked list node

    • Implement functions for insertion, deletion, and traversal

    • Handle edge cases like empty list or deleting the last node

  • Answered by AI
  • Q10. Convert little endian to big endian
  • Ans. 

    To convert little endian to big endian, reverse the order of bytes in the data.

    • Reverse the order of bytes in the data

    • For example, if you have the little endian value 0x12345678, in big endian it would be 0x78563412

  • Answered by AI
  • Q11. Basic Theory questions in C
  • Q12. Project Discussion
Round 2 - HR 

(1 Question)

  • Q1. HR related questions

Interview Preparation Tips

Topics to prepare for L&T Technology Services Senior Engineer interview:
  • Arrays
  • Pointers
  • Strings
  • Bit manipulation
  • Linked list
  • Basics of C
Interview preparation tips for other job seekers - Prepare the programming concepts in C language

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Feb 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. How to select microcontroller? Do you know difference between i2c and spi
  • Ans. 

    Microcontroller selection depends on project requirements, such as processing power, memory, peripherals, and cost. i2c is a serial communication protocol for connecting multiple devices, while SPI is a faster protocol for high-speed communication.

    • Consider project requirements like processing power, memory, peripherals, and cost when selecting a microcontroller.

    • i2c is a slower serial communication protocol commonly use...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for L&T Technology Services Senior Engineer interview:
  • Altium
  • Excel

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(3 Questions)

  • Q1. Plastic Defects, Sheet metal material
  • Q2. Sheetmetal design guidelines
  • Ans. 

    Sheetmetal design guidelines ensure efficient and accurate fabrication of sheetmetal components.

    • Consider material selection based on strength, corrosion resistance, and cost.

    • Design parts with appropriate bend radii to prevent cracking or tearing.

    • Avoid sharp corners and edges to minimize stress concentration.

    • Ensure proper tolerances for hole sizes, bend angles, and overall dimensions.

    • Use standard sheet sizes to optimize...

  • Answered by AI
  • Q3. Tell me about yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare what you mentioned in resume

Skills evaluated in this interview

Interview Questionnaire 

5 Questions

  • Q1. Seismic design of building, criteria, type of checks in building with respect to seismic, analysis approach
  • Q2. Pile and foundation detail, structural system in building, shear wall, dual system implications
  • Q3. Steel structure- Class of section, connection detail, slender member design criteria
  • Q4. Building irregularities type
  • Q5. Nature of scope of work performed, understanding of coordination approach, software knowledge
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed before Jan 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. What is your prior experience and questions on the same.
Round 2 - HR 

(1 Question)

  • Q1. What is your CCtC and expected CCtC
Contribute & help others!
anonymous
You can choose to be anonymous

Arup Interview FAQs

How many rounds are there in Arup Senior Civil Site Engineer interview?
Arup interview process usually has 1 rounds. The most common rounds in the Arup interview process are Technical.

Recently Viewed

INTERVIEWS

Essar Group

No Interviews

INTERVIEWS

Essar Group

No Interviews

INTERVIEWS

Betsol

No Interviews

INTERVIEWS

Affine

No Interviews

INTERVIEWS

Essar Group

No Interviews

INTERVIEWS

Betsol

No Interviews

INTERVIEWS

Affine

No Interviews

INTERVIEWS

3Pillar Global

No Interviews

INTERVIEWS

Essar Group

No Interviews

INTERVIEWS

Arup

No Interviews

Tell us how to improve this page.

Interview Questions from Similar Companies

TCE Interview Questions
3.8
 • 247 Interviews
Saint-Gobain Interview Questions
4.0
 • 172 Interviews
AECOM Interview Questions
4.2
 • 114 Interviews
Worley Interview Questions
4.1
 • 109 Interviews
WSP Interview Questions
4.2
 • 90 Interviews
AtkinsRealis Interview Questions
4.0
 • 85 Interviews
Mott MacDonald Interview Questions
4.2
 • 43 Interviews
View all
Arup Senior Civil Site Engineer Salary
based on 4 salaries
₹3.8 L/yr - ₹5.5 L/yr
9% less than the average Senior Civil Site Engineer Salary in India
View more details

Arup Senior Civil Site Engineer Reviews and Ratings

based on 1 review

3.0/5

Rating in categories

2.0

Skill development

3.0

Work-life balance

3.0

Salary

3.0

Job security

3.0

Company culture

3.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Software Developer
19 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Electrical Engineer
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

IT Analyst
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Human Resource Professional
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Arup with

AECOM

4.2
Compare

Jacobs Engineering Group

4.1
Compare

WSP

4.2
Compare

Mott MacDonald

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