Upload Button Icon Add office photos

Filter interviews by

Pratik Transpower Assistant Manager - EHS Interview Questions and Answers

Updated 15 Nov 2024

Pratik Transpower Assistant Manager - EHS Interview Experiences

Interview questions from similar companies

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

I applied via Job Portal

Round 1 - One-on-one 

(5 Questions)

  • Q1. What is CACA! Explain with an example
  • Ans. 

    CACA stands for Corrective Action, Corrective Action! It is a process used in EHS management to address and resolve issues.

    • CACA involves identifying problems, determining root causes, implementing solutions, and monitoring effectiveness

    • Example: If a company discovers a leak in a chemical storage tank, they would use CACA to investigate the cause, fix the leak, and prevent future leaks

    • CACA helps prevent incidents, impro...

  • Answered by AI
  • Q2. EHS legal requirements
  • Ans. 

    EHS legal requirements refer to laws and regulations that organizations must comply with to ensure the health and safety of employees and the environment.

    • EHS legal requirements vary by country and industry

    • Examples include OSHA regulations in the US, REACH regulations in the EU, and ISO standards globally

    • Organizations must stay up to date with changes in EHS laws and regulations to remain compliant

  • Answered by AI
  • Q3. EHS statutory requirements
  • Ans. 

    EHS statutory requirements refer to laws and regulations that organizations must comply with to ensure the health and safety of employees and the environment.

    • EHS statutory requirements vary by country and industry

    • Examples include OSHA regulations in the US, COSHH regulations in the UK, and ISO standards globally

    • Organizations must stay up-to-date with changes in EHS laws and regulations to remain compliant

  • Answered by AI
  • Q4. Risk assessments
  • Q5. ISO 45001 implementation
  • Ans. 

    ISO 45001 implementation involves establishing a framework for occupational health and safety management.

    • Develop a clear understanding of the requirements of ISO 45001 standard

    • Establish an occupational health and safety policy

    • Identify hazards, assess risks, and implement controls

    • Provide training and awareness programs for employees

    • Conduct regular audits and reviews to ensure compliance

    • Continuously improve the occupatio

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. Salary expectation
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Dec 2022. There were 5 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 

It is used to determine an individual's skill to succeed in given activity

Round 3 - Coding Test 

It challenges that helps in technical recruiters to test programming skills.

Round 4 - Group Discussion 

It shows us how they communicate and body language

Round 5 - HR 

(2 Questions)

  • Q1. They used to know our proper talking nd body language
  • Q2. Tell me about yourself
  • Ans. Myself rajeswari completed BTech in the stream of C.S.E I had 1 year of experience on testing and developing
  • Answered Anonymously

Interview Preparation Tips

Interview preparation tips for other job seekers - Please, try to talk properly with having good communication s

I applied via Recruitment Consulltant 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 - Assignment 

Aptitude and some programming questions and latter writing

Round 3 - Technical 

(1 Question)

  • Q1. SQL concepts and some python questions
Round 4 - HR 

(1 Question)

  • Q1. Introduce your self and relocation agree or not

Interview Preparation Tips

Interview preparation tips for other job seekers - only some basic technical questions in SQL and python. its depending your resume and added content

I applied via campus placement at P E S College of Engineering, Mandya and was interviewed in Sep 2021. There were 4 interview rounds.

Interview Questionnaire 

11 Questions

  • Q1. If u have a cake in front of u in how many minimum cuts u take to get 8 equal pieces
  • Ans. 

    To get 8 equal pieces from a cake, you need a minimum of 3 cuts.

    • The first cut divides the cake into two equal halves.

    • The second cut divides one of the halves into two equal quarters.

    • The third cut divides one of the quarters into two equal eighths.

  • Answered by AI
  • Q2. Static variables
  • Q3. Some simple C programs
  • Q4. Global and local variables
  • Q5. Why should we use return 0 when int main() is used
  • Ans. 

    return 0 in int main() indicates successful termination of program execution.

    • return 0 is used to indicate that the program has executed successfully.

    • It is not mandatory to use return 0, but it is a good programming practice.

    • If return 0 is not used, the program may return garbage values to the operating system.

    • Other values can also be used instead of 0 to indicate different types of program termination.

    • For example, retu...

  • Answered by AI
  • Q6. Tell me something about yourself
  • Q7. Tell me about your project
  • Ans. 

    I worked on a project to design and implement a new software system for managing inventory in a manufacturing company.

    • Developed a user-friendly interface for employees to input and track inventory data

    • Implemented a database to store and organize inventory information

    • Created automated reports to provide real-time updates on inventory levels

    • Collaborated with cross-functional teams to gather requirements and ensure system

  • Answered by AI
  • Q8. Where will u see yourself after 5 yrs
  • Q9. What are ur Strengths
  • Q10. What we need to use to convert string to numerical
  • Ans. 

    We need to use parsing or casting to convert string to numerical.

    • Use parseInt() or parseFloat() for converting string to integer or float respectively.

    • Use Number() constructor to convert string to number.

    • Use unary plus (+) operator to convert string to number.

    • Ensure that the string contains only numerical characters, else it will result in NaN (Not a Number).

  • Answered by AI
  • Q11. And core branch related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident never get tensed if u don't know the answer directly say them that "I dont have more knowledge on this mam/ sir" be active and stay clam😊

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in May 2022. There were 2 interview rounds.

Round 1 - Aptitude Test 

Quantitative Aptitude, Number series

Round 2 - Coding Test 

Coding and decoding, analogy

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well and All the Best to everyone one

I applied via Campus Placement and was interviewed in Apr 2021. There were 3 interview rounds.

Interview Questionnaire 

8 Questions

  • Q1. 1. they asked to write a program such as Fibonacci series and write a c program by using switch statement
  • Q2. 2. What is the difference between while and do while with example and local variable and global variable
  • Ans. 

    While and do-while are loops in programming. While checks the condition before executing the loop, do-while checks after.

    • While loop executes only if the condition is true, do-while executes at least once before checking the condition.

    • Local variables are declared inside a function and can only be accessed within that function. Global variables can be accessed from anywhere in the program.

    • Example of while loop: while(i<1...

  • Answered by AI
  • Q3. 3. Basics of c programming related question
  • Q4. 4. About project
  • Q5. 5. Tell me about yourself
  • Q6. 6. where would you see yourself after 5years
  • Q7. 7. Tell me about CTS
  • Ans. 

    CTS stands for Cognizant Technology Solutions, a multinational IT services company.

    • CTS is headquartered in Teaneck, New Jersey, USA.

    • It was founded in 1994.

    • CTS provides services in areas such as digital engineering, consulting, and operations.

    • It has a global presence with offices in over 40 countries.

    • CTS is one of the largest IT services companies in the world, with over 300,000 employees.

    • It is listed on the NASDAQ stoc

  • Answered by AI
  • Q8. 8. Basically your from NON IT why you choose IT field

Interview Preparation Tips

Interview preparation tips for other job seekers - Be punctual at your interview, speak in confidence, don't get nervous while u answering, Atleast u have to know about basics of c programming

Pratik Transpower Interview FAQs

How many rounds are there in Pratik Transpower Assistant Manager - EHS interview?
Pratik Transpower interview process usually has 1 rounds. The most common rounds in the Pratik Transpower interview process are Technical.

Tell us how to improve this page.

Interview Questions from Similar Companies

Cognizant Interview Questions
3.8
 • 5.5k 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
 • 968 Interviews
Google Interview Questions
4.4
 • 862 Interviews
Nagarro Interview Questions
4.0
 • 775 Interviews
View all

Pratik Transpower Assistant Manager - EHS Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Switch Board Operator
4 salaries
unlock blur

₹0.9 L/yr - ₹2.2 L/yr

Shift Engineer
3 salaries
unlock blur

₹1.1 L/yr - ₹2.5 L/yr

Explore more salaries
Compare Pratik Transpower 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