Upload Button Icon Add office photos
Engaged Employer

i

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

Process Combustion Technologies India Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Process Combustion Technologies India Interview Questions and Answers

Updated 20 Sep 2024

Process Combustion Technologies India Interview Experiences

Popular Designations

4 interviews found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - Technical 

(2 Questions)

  • Q1. What is the process of EPC Projects management ?
  • Ans. 

    EPC Projects management involves planning, executing, and controlling engineering, procurement, and construction projects.

    • Developing project scope and objectives

    • Creating a detailed project schedule

    • Managing project budget and resources

    • Coordinating with various stakeholders

    • Monitoring project progress and quality

    • Implementing risk management strategies

    • Ensuring compliance with regulations and standards

    • Closing out the projec

  • Answered by AI
  • Q2. How to handle the client and vendor?
  • Ans. 

    Handle client and vendor by maintaining clear communication, setting expectations, and resolving conflicts professionally.

    • Establish clear communication channels with both client and vendor

    • Set realistic expectations and deadlines

    • Regularly update all parties on project progress

    • Address any issues or conflicts promptly and professionally

    • Seek feedback from both client and vendor to improve future projects

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Best place for Project Management Job

Project Site Engineer Interview Questions asked at other Companies

Q1. What is the process of EPC Projects management ?
View answer (1)

Interview Questions & Answers

user image Deepak Sharma

posted on 20 Sep 2024

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

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

Round 1 - HR 

(2 Questions)

  • Q1. Discussion on meet out the Deadlines of assignment.
  • Q2. Nice Work environment for Brainstorming.

Interview Preparation Tips

Interview preparation tips for other job seekers - Its a nice Company and Mangement supports for each and every area of work and Team building under the Management of Dr. Jacob is quite remarkable. The Management Group leaders are providing various opportunity for Self-development, and everyone feel proud to work with such a Company.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Sep 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. How Much experience do you have in Oil & Gas Industry?
  • Ans. 

    I have 5 years of experience in the Oil & Gas industry.

    • Worked for 3 years as a project engineer at a major oil company

    • Managed a team of engineers in the design and implementation of oil drilling projects

    • Familiar with industry regulations and safety standards

    • Attended industry conferences and workshops to stay updated on latest trends

  • Answered by AI
  • Q2. What are the capacity of Boiler you have Handled?
  • Ans. 

    I have experience handling boilers with capacities ranging from 1000 to 5000 gallons per hour.

    • Handled boilers with capacities ranging from 1000 to 5000 gallons per hour

    • Managed maintenance and operation of boilers to ensure efficiency

    • Implemented safety protocols and procedures for boiler operation

    • Collaborated with engineering team to optimize boiler performance

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. What is your family background?
  • Ans. 

    My family background is diverse and multicultural, with members from various professions and backgrounds.

    • My family consists of individuals from different professions such as doctors, engineers, teachers, and business owners.

    • We come from diverse cultural backgrounds including Indian, Chinese, and American.

    • Family gatherings are a mix of traditions and languages, creating a rich tapestry of experiences.

  • Answered by AI
  • Q2. What is your present CTC (Fixed and Variable)
  • Ans. 

    My present CTC is 10 lakhs per annum, with 70% fixed and 30% variable components.

    • Present CTC is 10 lakhs per annum

    • 70% fixed component

    • 30% variable component

  • Answered by AI

Associate Manager Interview Questions asked at other Companies

Q1. How will you calculate tension on the sheet which is being given OFF, by Pay off reel ?
View answer (5)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Approached by Company and was interviewed before Sep 2023. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Process Engineering
  • Q2. P&ID development
Round 2 - One-on-one 

(2 Questions)

  • Q1. Family background
  • Q2. Father Occupation
Round 3 - HR 

(2 Questions)

  • Q1. Tell me about previous organization
  • Ans. 

    I previously worked at a retail company specializing in electronics.

    • Managed a team of sales associates to achieve monthly sales targets

    • Implemented new customer service strategies to improve customer satisfaction

    • Assisted in inventory management and product ordering

    • Collaborated with marketing team to create promotional campaigns

  • Answered by AI
  • Q2. Present salaey and benefits

Interview Preparation Tips

Interview preparation tips for other job seekers - Be Confident and revise your field Knowledge. Do not create false background

Assistant Manager Interview Questions asked at other Companies

Q1. You are Handling cash operations then how you manage operations with sales ?
View answer (89)

Process Combustion Technologies India interview questions for popular designations

 Assistant Manager

 (1)

 Associate Manager

 (1)

 Project Site Engineer

 (1)

Interview questions from similar companies

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

I appeared for an interview in Feb 2025, where I was asked the following questions.

  • Q1. Explain the difference between ArrayList and LinkedList in Java. When would you choose one over the other?
  • Ans. 

    ArrayList uses dynamic arrays, while LinkedList uses doubly linked nodes for storage and access.

    • ArrayList provides fast random access (O(1)) due to its underlying array structure.

    • LinkedList allows for efficient insertions and deletions (O(1)) at both ends and in the middle.

    • ArrayList has a fixed size, requiring resizing (O(n)) when capacity is exceeded, while LinkedList grows dynamically.

    • Example: Use ArrayList for frequ...

  • Answered by AI
  • Q2. What are the advantages and disadvantages of using Java’s synchronized keyword for thread synchronization? Can you explain how the ReentrantLock compares to synchronized?
  • Ans. 

    Java's synchronized keyword offers thread safety but has limitations compared to ReentrantLock.

    • Advantages of synchronized: Simple to use and understand.

    • Disadvantages of synchronized: Can lead to thread contention and performance issues.

    • ReentrantLock allows more flexibility, such as tryLock() and timed lock attempts.

    • ReentrantLock can be used for fair locking, preventing thread starvation.

    • Synchronized blocks are tied to ...

  • Answered by AI
  • Q3. What is the difference between == and .equals() in Java? When should each be used, and what issues can arise from improper usage?
  • Ans. 

    In Java, '==' checks reference equality, while '.equals()' checks value equality. Use them appropriately to avoid bugs.

    • == compares object references, checking if both point to the same memory location.

    • Example: String a = new String('test'); String b = new String('test'); a == b returns false.

    • .equals() compares the actual content of the objects.

    • Example: a.equals(b) returns true because the content is the same.

    • Use '==' f...

  • Answered by AI
  • Q4. How does the Java garbage collector work? Can you describe the different types of garbage collection algorithms available in Java?
  • Q5. What are the main features of Java 8? Can you explain how lambdas and the Stream API have changed the way Java applications are written?
  • Ans. 

    Java 8 introduced lambdas, Stream API, and other features that enhance functional programming and simplify code.

    • Lambdas: Enable concise representation of functional interfaces. Example: (x, y) -> x + y.

    • Stream API: Facilitates functional-style operations on collections. Example: list.stream().filter(x -> x > 10).collect(Collectors.toList()).

    • Default Methods: Allow adding new methods to interfaces without breakin...

  • Answered by AI
  • Q6. Describe the differences between checked and unchecked exceptions in Java. Provide examples and explain how to handle them properly.
  • Ans. 

    Checked exceptions must be declared or handled, while unchecked exceptions do not require explicit handling.

    • Checked exceptions are subclasses of Exception but not of RuntimeException.

    • Example: IOException, SQLException are checked exceptions.

    • Unchecked exceptions are subclasses of RuntimeException.

    • Example: NullPointerException, ArrayIndexOutOfBoundsException are unchecked exceptions.

    • Checked exceptions must be caught or d...

  • Answered by AI
  • Q7. What is the Java Memory Model, and how does it affect multithreading and synchronization? How does volatile help ensure memory visibility?
  • Ans. 

    The Java Memory Model defines how threads interact through memory, ensuring visibility and ordering of shared variables.

    • The Java Memory Model (JMM) specifies how threads interact with memory, ensuring consistency and visibility.

    • It defines rules for visibility, atomicity, and ordering of operations in a multithreaded environment.

    • Synchronization mechanisms (like synchronized blocks) ensure that only one thread can access...

  • Answered by AI
  • Q8. Can you explain the difference between method overloading and method overriding in Java? Provide examples where each should be used.
  • Ans. 

    Method overloading allows multiple methods with the same name but different parameters; overriding redefines a method in a subclass.

    • Method Overloading: Same method name, different parameters (type, number, or both).

    • Example of Overloading: 'void add(int a, int b)' and 'void add(double a, double b)'.

    • Use Overloading for convenience and readability when methods perform similar functions.

    • Method Overriding: Redefining a meth...

  • Answered by AI
Interview experience
3
Average
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Jan 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

I am writing automation and clicking on aptitude test.

Round 2 - Assignment 

I am writing automation and clicking on assignment test.

Round 3 - HR 

(2 Questions)

  • Q1. Hey guys? How is it going. I gotta work for it. This is an automation task.
  • Ans. Hey guys? How is it going. I gotta work for it. This is an automation task. Answer
  • Answered Anonymously
  • Q2. Hey guys? How is it going. I gotta work for it. This is an automation task. Yes
Round 4 - Assignment 

This is an automation test. I got this task from my senior. I'm doing good.

Interview Preparation Tips

Topics to prepare for 10405090xyzabc Software Developer interview:
  • Testing
  • Software Testing
  • DSA
Interview preparation tips for other job seekers - Tips are like this, This an Automation Script which is giving you feedback so , please ignore all above
Interview experience
3
Average
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Jan 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

I am writing automation and clicking on aptitude test.

Round 2 - Assignment 

I am writing automation and clicking on assignment test.

Round 3 - HR 

(2 Questions)

  • Q1. Hey guys? How is it going. I gotta work for it. This is an automation task.
  • Ans. Hey guys? How is it going. I gotta work for it. This is an automation task. Answer
  • Answered Anonymously
  • Q2. Hey guys? How is it going. I gotta work for it. This is an automation task. Yes
Round 4 - Assignment 

This is an automation test. I got this task from my senior. I'm doing good.

Interview Preparation Tips

Topics to prepare for 10405090xyzabc Software Developer interview:
  • Testing
  • Software Testing
  • DSA
Interview preparation tips for other job seekers - Tips are like this, This an Automation Script which is giving you feedback so , please ignore all above
Interview experience
3
Average
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Jan 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

I am writing automation and clicking on aptitude test.

Round 2 - Assignment 

I am writing automation and clicking on assignment test.

Round 3 - HR 

(2 Questions)

  • Q1. Hey guys? How is it going. I gotta work for it. This is an automation task.
  • Ans. Hey guys? How is it going. I gotta work for it. This is an automation task. Answer
  • Answered Anonymously
  • Q2. Hey guys? How is it going. I gotta work for it. This is an automation task. Yes
Round 4 - Assignment 

This is an automation test. I got this task from my senior. I'm doing good.

Interview Preparation Tips

Topics to prepare for 10405090xyzabc Software Developer interview:
  • Testing
  • Software Testing
  • DSA
Interview preparation tips for other job seekers - Tips are like this, This an Automation Script which is giving you feedback so , please ignore all above
Interview experience
3
Average
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Jan 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

I am writing automation and clicking on aptitude test.

Round 2 - Assignment 

I am writing automation and clicking on assignment test.

Round 3 - HR 

(2 Questions)

  • Q1. Hey guys? How is it going. I gotta work for it. This is an automation task.
  • Ans. Hey guys? How is it going. I gotta work for it. This is an automation task. Answer
  • Answered Anonymously
  • Q2. Hey guys? How is it going. I gotta work for it. This is an automation task. Yes
Round 4 - Assignment 

This is an automation test. I got this task from my senior. I'm doing good.

Interview Preparation Tips

Topics to prepare for 10405090xyzabc Software Developer interview:
  • Testing
  • Software Testing
  • DSA
Interview preparation tips for other job seekers - Tips are like this, This an Automation Script which is giving you feedback so , please ignore all above
Interview experience
3
Average
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Jan 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

I am writing automation and clicking on aptitude test.

Round 2 - Assignment 

I am writing automation and clicking on assignment test.

Round 3 - HR 

(2 Questions)

  • Q1. Hey guys? How is it going. I gotta work for it. This is an automation task.
  • Ans. Hey guys? How is it going. I gotta work for it. This is an automation task. Answer
  • Answered Anonymously
  • Q2. Hey guys? How is it going. I gotta work for it. This is an automation task. Yes
Round 4 - Assignment 

This is an automation test. I got this task from my senior. I'm doing good.

Interview Preparation Tips

Topics to prepare for 10405090xyzabc Software Developer interview:
  • Testing
  • Software Testing
  • DSA
Interview preparation tips for other job seekers - Tips are like this, This an Automation Script which is giving you feedback so , please ignore all above

Process Combustion Technologies India Interview FAQs

How many rounds are there in Process Combustion Technologies India interview?
Process Combustion Technologies India interview process usually has 1-2 rounds. The most common rounds in the Process Combustion Technologies India interview process are Technical, HR and One-on-one Round.
What are the top questions asked in Process Combustion Technologies India interview?

Some of the top questions asked at the Process Combustion Technologies India interview -

  1. What are the capacity of Boiler you have Handl...read more
  2. What is the process of EPC Projects managemen...read more
  3. What is your present CTC (Fixed and Variab...read more

Tell us how to improve this page.

Process Combustion Technologies India Interview Process

based on 3 interviews

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Thermax Limited Interview Questions
4.1
 • 252 Interviews
Forbes Marshall Interview Questions
4.1
 • 42 Interviews
Alfa Laval Interview Questions
3.9
 • 30 Interviews
Cheema Boilers Interview Questions
4.2
 • 8 Interviews
Cethar Interview Questions
3.4
 • 4 Interviews
View all

Process Combustion Technologies India Reviews and Ratings

based on 11 reviews

4.0/5

Rating in categories

3.8

Skill development

4.2

Work-life balance

4.1

Salary

3.5

Job security

3.8

Company culture

4.0

Promotions

3.8

Work satisfaction

Explore 11 Reviews and Ratings
Compare Process Combustion Technologies India with

10405090xyzabc

3.6
Compare

Practo

3.1
Compare

Hindware Limited

4.0
Compare

Rakuten Symphony

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