Upload Button Icon Add office photos

Filter interviews by

CAT Group Senior Project Engineer Interview Questions and Answers

Updated 17 Aug 2024

CAT Group Senior Project Engineer Interview Experiences

1 interview found

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

I applied via Recruitment Consulltant and was interviewed in Aug 2022. There were 2 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. HOW DID YOU HEAR ABOUT US
  • Ans. 

    I found the job listing on a job search website.

    • Job search website

    • Online job board

    • Recruitment website

  • Answered by AI
  • Q2. WHERE DO YOU SEE YOURSELF IN FIVE YEARS
  • Ans. 

    In five years, I see myself leading a team of engineers on innovative projects and contributing to the growth and success of the company.

    • Leading a team of engineers on challenging projects

    • Contributing to the growth and success of the company

    • Continuing to develop my skills and expertise in project engineering

    • Possibly pursuing further education or certifications to enhance my knowledge

  • Answered by AI
Round 2 - THERE WAS NO ROUND TWO 

(2 Questions)

  • Q1. N/A THERE WAS NO ROUND 2
  • Q2. THERE WAS NO ROUND 2

Interview Preparation Tips

Interview preparation tips for other job seekers - WORK HERE FOR NO MORE THAN THREE YEARS

Interview questions from similar companies

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

I applied via Job Portal and was interviewed in Mar 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 - Technical 

(2 Questions)

  • Q1. Nothing to share here
  • Q2. Nothing to share now
Round 3 - HR 

(2 Questions)

  • Q1. Good it was for me
  • Q2. Very good it was
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Bangalore Institute Of Technology (BIT) and was interviewed before Sep 2022. There were 2 interview rounds.

Round 1 - Coding Test 

In coding section i got 15 question out of 5 was easy question and 5 was moderate and 5 was tough.

Coding question belong to java basic, oops concept, html and css, javascript and database

Round 2 - Technical 

(1 Question)

  • Q1. In second round there are two panelist 1 technical interviewer 2 HR Technical interviewer thay ask about my self and they ask about my project in final semester then ask about java oops concepts, then ask...

Interview Preparation Tips

Topics to prepare for LTIMindtree Senior Project Engineer interview:
  • Java
  • Data Structures
  • SQL
  • Coding
Interview preparation tips for other job seekers - I joining as freshers from campus mind.

I applied via LinkedIn and was interviewed in Mar 2021. There were 4 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. What is Javascript and how it is different from other programming languages?
  • Ans. 

    JavaScript is a scripting language used for web development.

    • JavaScript is used to add interactivity to web pages.

    • It is a client-side language that runs on the user's browser.

    • JavaScript is different from other programming languages as it is interpreted rather than compiled.

    • It is also a loosely typed language, meaning variables can change data types.

    • Examples of JavaScript frameworks include React, Angular, and Vue.

  • Answered by AI
  • Q2. Why do you prefer react native and how it is different from Angular?
  • Ans. 

    React Native is preferred for its cross-platform capabilities and ease of use. It differs from Angular in its component-based architecture.

    • React Native allows for building mobile apps for both iOS and Android platforms using a single codebase.

    • React Native uses a component-based architecture, making it easier to manage and reuse code.

    • Angular is a full-fledged framework with a steeper learning curve compared to React Nat...

  • Answered by AI
  • Q3. What is redux and how do you use it in react?
  • Ans. 

    Redux is a state management library for JavaScript applications.

    • Redux helps manage the state of an application in a predictable way.

    • It uses a single source of truth, called the store, to hold the state of the application.

    • Actions are dispatched to the store, which then updates the state using reducers.

    • React components can subscribe to the store to receive updates to the state.

    • Redux can be used with React using the react

  • Answered by AI
  • Q4. What is Stylesheet.create function in react native?
  • Ans. 

    Stylesheet.create is a function in React Native used to create a stylesheet object.

    • It takes an object as an argument and returns a stylesheet object.

    • The stylesheet object can be used to style components in React Native.

    • It is a recommended way to define styles in React Native.

    • Example: const styles = StyleSheet.create({ container: { flex: 1, backgroundColor: '#fff' } })

    • The styles object can then be used in components lik

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Always prepare for the interview you are going for. Be frank and up to the point.

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed before Aug 2022. 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 - Coding Test 

Need to Write JS Code and React Code

Round 3 - HR 

(1 Question)

  • Q1. Basic Salary negotiation questions.

Interview Preparation Tips

Topics to prepare for LTIMindtree Senior Project Engineer interview:
  • Javascript
  • React.Js
Interview preparation tips for other job seekers - Clear your basics well.

I applied via Naukri.com and was interviewed in Mar 2021. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. In every interview the most common question even though recruiters had our resume. 1) Tell me about yourself. But answer should not be the common one. (Make it Unique - short and simple) - Don't drag it to...
  • Q2. Here Comes, technical round (Q&A session starts). (Guys, be Confident and there is no such a rule, your answer should be correct to all questions asked)
  • Q3. Upon completion technical discussion the great bahubali (HR) enters into field.

I applied via Naukri.com and was interviewed in Mar 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Collection, Threads, Spring, Spring Boot, Hibernate, React Redux, DB related

Interview Preparation Tips

Interview preparation tips for other job seekers - Applied through Naukri,

Their ware two technical rounds completed on same day. But they took 2 Months to release offer letter

I applied via Naukri.com and was interviewed before Aug 2020. There were 4 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Microservices and event driven architecture
  • Q2. Spring scopes and annotations
  • Q3. How do you break a singleton class?
  • Q4. How do create immutable class in java ?
  • Ans. 

    Immutable class in Java can be created by declaring all fields as final and not providing any setters.

    • Declare all fields as final

    • Do not provide any setters

    • Make the class final to prevent subclassing

    • Ensure that mutable objects passed to the constructor are not modified

    • Return a new instance of the class instead of modifying the existing one

  • Answered by AI
  • Q5. Question related to PCF routes

Interview Preparation Tips

Interview preparation tips for other job seekers - Overall interview experience is good but not not worthy to join

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. Technical questions

I applied via Naukri.com and was interviewed in Oct 2019. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. I have given interview for cloud profile, it was telephonic interview in greater Noida wipro as interviewer was from different location, most of the question were from aws services like EC2, vpc, S3, cloud...

Interview Preparation Tips

Interview preparation tips for other job seekers - As a cloud engineer if you are going to give interview in big mnc like Accenture, wipro please focus on your major skillset only like if you are representing yourself as aws engineer questions will be from aws only, same with azure, why i am mentioning like in smaller companies they ask from everything which is in your resume but prepare for the specific skillset only in which you are giving interview in bigger mnc......

CAT Group Interview FAQs

How many rounds are there in CAT Group Senior Project Engineer interview?
CAT Group interview process usually has 2 rounds. The most common rounds in the CAT Group interview process are HR.
What are the top questions asked in CAT Group Senior Project Engineer interview?

Some of the top questions asked at the CAT Group Senior Project Engineer interview -

  1. N/A THERE WAS NO ROUN...read more
  2. THERE WAS NO ROUN...read more

Tell us how to improve this page.

CAT Group Senior Project 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

CAT Group Senior Project 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

1.0

Promotions

2.0

Work satisfaction

Explore 1 Review and Rating
HSE Officer
6 salaries
unlock blur

₹12 L/yr - ₹15 L/yr

Safety Officer
5 salaries
unlock blur

₹1 L/yr - ₹5.6 L/yr

HSE Engineer
4 salaries
unlock blur

₹9.6 L/yr - ₹18.2 L/yr

HSE Supervisor
4 salaries
unlock blur

₹22.2 L/yr - ₹26 L/yr

Senior HSE Officer
4 salaries
unlock blur

₹12 L/yr - ₹15 L/yr

Explore more salaries
Compare CAT Group with

Tata Group

4.2
Compare

Reliance Industries

4.0
Compare

Adani Group

3.9
Compare

Mahindra & Mahindra

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