Upload Button Icon Add office photos

Filter interviews by

Biraja Constructions Engineer Civil Engineer Interview Questions and Answers

Updated 22 Sep 2022

Biraja Constructions Engineer Civil Engineer Interview Experiences

1 interview found

I applied via Referral and was interviewed before Sep 2021. There were 2 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 tips
Round 2 - One-on-one 

(2 Questions)

  • Q1. Then after Direct Interview with MD
  • Q2. Why u leave previous company?

Interview Preparation Tips

Interview preparation tips for other job seekers - No comments about advice for job sheekers.

Interview questions from similar companies

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

I applied via Referral and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

I have been working at essae for 3 years.

Round 2 - One-on-one 

(2 Questions)

  • Q1. I want to learn something new.
  • Q2. I would love to meet someone to learn something better and I can work.

Interview Preparation Tips

Interview preparation tips for other job seekers - I was working in Essae company doing weight bridge service and installation. It has been 3 years. I am still working in Essae Digitronics Pvt Ltd.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Can you provide a detailed explanation of object-oriented programming concepts?
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Java questions and basics of testing
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. C# question on basics and advanced
Round 2 - HR 

(1 Question)

  • Q1. Salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Not a company that you want to join.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Nov 2023. There were 2 interview rounds.

Round 1 - Coding Test 

They give a standard application to develop in mvvm or clean architecture, don't forget to write unit tests

Round 2 - One-on-one 

(5 Questions)

  • Q1. Mostly discuss on the implementation of the project you've done in round one
  • Q2. Flutter is addon
  • Ans. 

    Flutter is a UI toolkit for building natively compiled applications for mobile, web, and desktop from a single codebase.

    • Flutter is an open-source framework developed by Google.

    • It uses the Dart programming language.

    • Flutter allows for hot reload, which enables developers to see changes instantly.

    • It provides a rich set of pre-built widgets for building user interfaces.

    • Flutter can be used to create apps for iOS, Android, w

  • Answered by AI
  • Q3. Explain about compose way of thinking.
  • Ans. 

    Compose way of thinking involves breaking down complex problems into smaller, manageable parts and then combining them to create a solution.

    • Break down a problem into smaller components

    • Solve each component individually

    • Combine the solutions to create a complete solution

    • Example: Using functions to break down a complex task into smaller functions and then combining them to achieve the desired outcome

  • Answered by AI
  • Q4. Difference between presenter and viewmodel
  • Q5. Explain about lifecycle of view
  • Ans. 

    Lifecycle of view refers to the stages a view goes through from creation to destruction in an application.

    • Creation: View is initialized and loaded into memory.

    • Layout: View is positioned and sized on the screen.

    • Display: View is rendered and displayed to the user.

    • Interaction: User interacts with the view through input events.

    • Destruction: View is removed from memory when no longer needed.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good experience, and practical questions and friendly talk.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Aug 2023. 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 tips
Round 2 - Aptitude Test 

First time attend aptitude test .

Round 3 - Technical 

(5 Questions)

  • Q1. Any computer engineering basic questions
  • Q2. C,C++,java , python
  • Q3. What is inheritance.how many times of inheritance.
  • Ans. 

    Inheritance is a concept in object-oriented programming where a class can inherit attributes and methods from another class.

    • Inheritance allows for code reusability and promotes the concept of 'is-a' relationship.

    • There are different types of inheritance such as single inheritance, multiple inheritance, multilevel inheritance, and hierarchical inheritance.

    • Example: Class B inheriting from Class A - 'class B: public A {}'

  • Answered by AI
  • Q4. How many characters are used in C.
  • Ans. 

    C uses a set of 128 characters, including letters, digits, special characters, and control characters.

    • C uses 26 letters (uppercase and lowercase), 10 digits (0-9), and various special characters like !, @, #, $, %, etc.

    • C also includes control characters like newline, tab, carriage return, etc.

    • The total number of characters used in C is 128.

  • Answered by AI
  • Q5. What is c. How many characters are used.
  • Ans. 

    C is a programming language known for its efficiency and flexibility. It uses 256 characters.

    • C is a high-level programming language used for system programming, embedded systems, and applications.

    • C uses 256 characters, including letters, digits, special characters, and whitespace.

    • Examples of characters in C include 'a', '1', '+', and ' '.

  • Answered by AI

Skills evaluated in this interview

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

I applied via Referral and was interviewed in Mar 2023. There were 3 interview rounds.

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 - Aptitude Test 

There was an online test which has MCQs. Had technical questions from java, microservices, springboot, rdbms

Round 3 - One-on-one 

(7 Questions)

  • Q1. An unsorted array has numbers. Find the duplicate numbers and return the array.
  • Ans. 

    Find duplicate numbers in an unsorted array and return the array.

    • Iterate through the array and keep track of seen numbers using a hash table.

    • If a number is already in the hash table, it is a duplicate.

    • Add the duplicate number to a new array and return it.

  • Answered by AI
  • Q2. Java 8 features, method reference, write consumer, lambda expression. SOLID principles. Design patterns. Write thread safe singleton with performance.
  • Q3. AWS related questions. SQS. Dynamo. AWS API gateway.
  • Q4. REST principles.
  • Q5. Inheritance tricky questions. Collections tricky questions.
  • Q6. Deep copy vs Shallow copy.
  • Ans. 

    Deep copy creates a new object with its own memory, while shallow copy creates a new reference to the same memory.

    • Deep copy duplicates the object and all of its contents, while shallow copy only duplicates the object itself.

    • Deep copy is more memory-intensive than shallow copy.

    • In Python, deep copy can be achieved using the copy.deepcopy() method, while shallow copy can be achieved using the copy.copy() method.

  • Answered by AI
  • Q7. Comparator with and without java 8
  • Ans. 

    Comparator in Java 8 provides default methods and lambda expressions for sorting.

    • Comparator in Java 8 can be implemented using lambda expressions.

    • Comparator in Java 8 provides default methods like reversed() and thenComparing() for sorting.

    • Comparator in pre-Java 8 versions can be implemented using anonymous inner classes.

    • Comparator in pre-Java 8 versions requires more code to implement compared to Java 8.

    • Example: Sorti...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Publicis Sapient Senior Software Engineer interview:
  • Java 8
  • Springboot
  • AWS
  • Microservices
Interview preparation tips for other job seekers - Prepare well. Second round was for close to 2 hours. There were multiple coding questions to check problem solving.

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
No response

I applied via Approached by Company and was interviewed in May 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 - Technical 

(2 Questions)

  • Q1. SSRS reports - Why temp tables are used and not regular tables?
  • Ans. 

    Temp tables are used in SSRS reports for performance optimization and to reduce resource consumption.

    • Temp tables are used to store intermediate results during report generation, reducing the need to repeatedly query the database.

    • Regular tables can lead to locking and contention issues in multi-user environments, while temp tables are session-specific and do not cause conflicts.

    • Temp tables can be indexed and optimized f...

  • Answered by AI
  • Q2. Table group and cache look-up
Round 3 - Technical 

(2 Questions)

  • Q1. Infra architechture
  • Q2. Form patterns - D365FO
Round 4 - HR 

(1 Question)

  • Q1. Why are you looking for job change?

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush-up your basics
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Basics of your technical skills
Round 3 - Technical 

(1 Question)

  • Q1. More Projects related questions

Biraja Constructions Interview FAQs

How many rounds are there in Biraja Constructions Engineer Civil Engineer interview?
Biraja Constructions interview process usually has 2 rounds. The most common rounds in the Biraja Constructions interview process are Resume Shortlist and One-on-one Round.

Tell us how to improve this page.

Interview Questions from Similar Companies

Cognizant Interview Questions
3.8
 • 5.6k Interviews
Deloitte Interview Questions
3.8
 • 2.8k Interviews
BYJU'S Interview Questions
3.1
 • 2.2k Interviews
Teleperformance Interview Questions
3.9
 • 1.7k Interviews
Reliance Retail Interview Questions
3.9
 • 1.5k Interviews
Ernst & Young Interview Questions
3.4
 • 1.1k Interviews
WNS Interview Questions
3.4
 • 976 Interviews
Google Interview Questions
4.4
 • 870 Interviews
Nagarro Interview Questions
4.0
 • 776 Interviews
View all

Biraja Constructions Engineer Civil Engineer Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

4.0

Skill development

5.0

Work-life balance

5.0

Salary

3.0

Job security

4.0

Company culture

4.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Civil Site Engineer
5 salaries
unlock blur

₹2 L/yr - ₹3 L/yr

Project Manager
4 salaries
unlock blur

₹4.2 L/yr - ₹15 L/yr

Senior Service Engineer
4 salaries
unlock blur

₹3 L/yr - ₹3.6 L/yr

Site Engineer
3 salaries
unlock blur

₹1.8 L/yr - ₹4 L/yr

Civil Engineer
3 salaries
unlock blur

₹2.3 L/yr - ₹4 L/yr

Explore more salaries
Compare Biraja Constructions with

Cognizant

3.8
Compare

Teleperformance

3.9
Compare

Reliance Retail

3.9
Compare

iEnergizer

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