Upload Button Icon Add office photos

Filter interviews by

IBS Gulf Design Gat Engineer Interview Questions and Answers

Updated 9 Jun 2023

IBS Gulf Design Gat Engineer Interview Experiences

1 interview found

Gat Engineer Interview Questions & Answers

user image Anonymous

posted on 9 Jun 2023

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

I applied via Indeed and was interviewed before Jun 2022. 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 - Technical 

(2 Questions)

  • Q1. Explain psychometric chart.
  • Ans. 

    A psychometric chart is a graphical representation of the psychrometric properties of air.

    • It shows the relationship between temperature, humidity, dew point, and enthalpy of air.

    • Used in HVAC design to determine air conditioning requirements.

    • Helps in understanding air conditioning processes and analyzing air properties.

  • Answered by AI
  • Q2. What is reynolds number
  • Ans. 

    Reynolds number is a dimensionless quantity used in fluid mechanics to predict flow patterns in different fluid flow situations.

    • Reynolds number is calculated as the ratio of inertial forces to viscous forces in a fluid flow.

    • It helps determine whether the flow is laminar, turbulent, or transitional.

    • Reynolds number is important in various engineering applications such as pipe flow, aerodynamics, and heat transfer.

    • For exa...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for IBS Gulf Design Gat Engineer interview:
  • Thermodynamics
  • Psychometric Testing
Interview preparation tips for other job seekers - If you are a mechanical engineer prepare on thermodynamics and HMT subject

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Aptitude test logical reasoning

Round 2 - Coding Test 

Fibonacci, armstrong

Round 3 - HR 

(2 Questions)

  • Q1. Explain projects
  • Ans. 

    Projects are specific tasks or initiatives undertaken to achieve a particular goal or outcome.

    • Projects involve a defined scope, timeline, and budget.

    • They require a team of individuals with specific skills and roles.

    • Examples of projects include building a new bridge, implementing a software system, or organizing a marketing campaign.

  • Answered by AI
  • Q2. Tell about yourself
  • Ans. 

    I am a dedicated and experienced Gat Engineer with a strong background in civil engineering and project management.

    • Bachelor's degree in Civil Engineering

    • 5+ years of experience in Gat engineering

    • Proficient in AutoCAD and other design software

    • Managed multiple projects from conception to completion

    • Strong problem-solving and communication skills

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

The aptitude round is about logical reasoning, data interprettaion etc

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Sep 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Easy and essay we has to write

Round 2 - Coding Test 

2 coding question od dsa moderate level

Interview Preparation Tips

Interview preparation tips for other job seekers - Communication round to check english
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Island Perimeter and Number of Provinces. Basic Leetcode question

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 - Technical 

(1 Question)

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

(1 Question)

  • Q1. More Projects related questions

I applied via campus placement at Motilal Nehru Institute National Institute of Technology (NIT), Allahabad and was interviewed in May 2022. There were 4 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 - Coding Test 

There was 2 coding question
One was easy One was very Difficult
20 MCQ question from Operating system and DBMS

Round 3 - Technical 

(2 Questions)

  • Q1. First question was binary search in unsorted arrays So here i have asked about sorting algorithms all sorting algorithms must be clear
  • Q2. Second question was to find longest consecutive subarray.
  • Ans. 

    Find the longest consecutive subarray.

    • Iterate through the array and keep track of the current subarray length.

    • Update the maximum length as you iterate.

    • Reset the current subarray length when a non-consecutive element is encountered.

  • Answered by AI
Round 4 - Technical 

(2 Questions)

  • Q1. OOPS related question Heap insertion deletion question Hashing Spanning tree
  • Q2. Minimum Spanning tree Implementation of MST
  • Ans. 

    Minimum Spanning Tree (MST) is a tree that connects all vertices in a graph with minimum total edge weight.

    • MST can be found using Prim's algorithm or Kruskal's algorithm.

    • Prim's algorithm starts with a single vertex and adds the closest vertex to the tree until all vertices are included.

    • Kruskal's algorithm starts with the edges with the lowest weight and adds them to the tree as long as they don't create a cycle.

    • MST has...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - You have strong understanding of core cs subjects
You have full command in DSA. You have to practice from leetcode
Sometimes your luck also matters

Skills evaluated in this interview

I applied via Job Portal and was interviewed in Dec 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Self introduction, project, programming basics. The interview questions completely asked in what you mentioned in resume, like project based, skills based that programming language s and all

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, talk attentive and cler, be prepare your self what you mentioned in resume that's it

I applied via Job Portal and was interviewed in Jun 2021. There were 5 interview rounds.

Interview Questionnaire 

8 Questions

  • Q1. Oops concepts, explain with real time example
  • Ans. 

    Oops concepts are fundamental to object-oriented programming. They help in creating modular and reusable code.

    • Encapsulation - hiding implementation details of an object from the outside world

    • Inheritance - creating new classes from existing ones, inheriting their properties and methods

    • Polymorphism - ability of objects to take on many forms, depending on the context

    • Abstraction - focusing on essential features of an objec

  • Answered by AI
  • Q2. Why is multiple inheritance not allowed in java
  • Ans. 

    Multiple inheritance is not allowed in Java to avoid the diamond problem.

    • Java supports multiple interface inheritance to achieve the same functionality.

    • Diamond problem occurs when a class inherits from two classes with a common method.

    • Java prioritizes single inheritance to maintain simplicity and avoid ambiguity.

  • Answered by AI
  • Q3. Difference between arrays and arraylist
  • Ans. 

    Arrays are fixed in size while ArrayLists can dynamically grow and shrink.

    • Arrays are of fixed size while ArrayLists can be resized dynamically.

    • Arrays can hold primitive data types and objects while ArrayLists can only hold objects.

    • Arrays are faster for accessing elements while ArrayLists are faster for adding and removing elements.

    • Arrays use square brackets [] to declare while ArrayLists use angle brackets <>.

    • Example: ...

  • Answered by AI
  • Q4. What are java collections
  • Ans. 

    Java collections are classes and interfaces that provide a way to store and manipulate groups of objects.

    • Java collections include List, Set, Map, Queue, and their respective implementations

    • They provide methods for adding, removing, and accessing elements

    • Examples include ArrayList, HashSet, TreeMap, and PriorityQueue

  • Answered by AI
  • Q5. What is time theta
  • Ans. 

    Time theta is a measure of the worst-case time complexity of an algorithm.

    • It is used to analyze the performance of algorithms.

    • It represents the maximum amount of time an algorithm takes to complete.

    • It is denoted by the symbol Θ(n).

  • Answered by AI
  • Q6. Explain bubble sorting
  • Ans. 

    Bubble sorting is a simple sorting algorithm that repeatedly steps through the list, compares adjacent elements and swaps them if they are in the wrong order.

    • Bubble sort is a comparison-based algorithm

    • It works by comparing each pair of adjacent elements and swapping them if they are in the wrong order

    • The algorithm repeats this process until no more swaps are needed

    • It has a worst-case and average-case complexity of O(n^...

  • Answered by AI
  • Q7. We need to generate a random number between 15-25, write a code for the following
  • Ans. 

    Code to generate a random number between 15-25

    • Use Math.random() to generate a random number between 0-1

    • Multiply the result with the range (25-15) and add the minimum value (15)

    • Use Math.floor() to round down the result to an integer

  • Answered by AI
  • Q8. Question on JSON format

Interview Preparation Tips

Interview preparation tips for other job seekers - Please make sure you have a very good knowledge of any one programming language and DS

Skills evaluated in this interview

Software Engineer Interview Questions & Answers

Amazon user image Shraman Padhalni

posted on 21 Jun 2021

Interview Questionnaire 

1 Question

  • Q1. Data structures, thoroughly

IBS Gulf Design Interview FAQs

How many rounds are there in IBS Gulf Design Gat Engineer interview?
IBS Gulf Design interview process usually has 2 rounds. The most common rounds in the IBS Gulf Design interview process are Technical and Resume Shortlist.
What are the top questions asked in IBS Gulf Design Gat Engineer interview?

Some of the top questions asked at the IBS Gulf Design Gat Engineer interview -

  1. what is reynolds num...read more
  2. Explain psychometric cha...read more

Tell us how to improve this page.

IBS Gulf Design Gat Engineer Interview Process

based on 1 interview

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Accenture Interview Questions
3.8
 • 8.2k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.7k Interviews
Cognizant Interview Questions
3.8
 • 5.6k Interviews
Amazon Interview Questions
4.1
 • 5.1k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.9k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Genpact Interview Questions
3.8
 • 3.1k Interviews
View all
Design Engineer
3 salaries
unlock blur

₹3 L/yr - ₹4.5 L/yr

Electrical Design Engineer
3 salaries
unlock blur

₹2 L/yr - ₹3.9 L/yr

Commissioning Engineer
3 salaries
unlock blur

₹4.2 L/yr - ₹10 L/yr

Senior Electrical Designer
3 salaries
unlock blur

₹1 L/yr - ₹4.3 L/yr

Hvac Design Engineer
3 salaries
unlock blur

₹1.1 L/yr - ₹4.5 L/yr

Explore more salaries
Compare IBS Gulf Design with

TCS

3.7
Compare

Accenture

3.8
Compare

Wipro

3.7
Compare

Cognizant

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