Upload Button Icon Add office photos

Filter interviews by

Oriental Foundry Interview Questions and Answers

Updated 19 Feb 2024

Oriental Foundry Interview Experiences

Popular Designations

2 interviews found

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

I applied via Walk-in and was interviewed in Feb 2023. There were 2 interview rounds.

Round 1 - Technical 

(5 Questions)

  • Q1. Control to milk loses 1 - machine head wise per hours weight chaking 2 - machine Head wise control to leakage 3 control to miss use to milk
  • Ans. 

    To control milk losses, machine head wise weight checking per hour, controlling leakage, and preventing misuse of milk are essential.

    • Implement machine head wise weight checking per hour to track milk usage and identify any discrepancies.

    • Regularly inspect and maintain machines to control leakage and prevent milk losses.

    • Establish strict protocols and monitoring systems to prevent misuse of milk by employees or customers.

    • ...

  • Answered by AI
  • Q2. Control to miss use electric
  • Ans. 

    To prevent misuse of electricity, proper controls and monitoring systems should be implemented.

    • Implement access controls to restrict unauthorized usage of electricity

    • Regularly monitor electricity consumption and investigate any unusual spikes

    • Provide training to employees on proper usage of electrical equipment

    • Install safety devices such as circuit breakers to prevent electrical accidents

    • Regularly inspect and maintain e...

  • Answered by AI
  • Q3. Mainpower handling and controling to miss use
  • Q4. Milk temperatures maintene minimum 3.5 digree
  • Q5. Timly proses and packing
Round 2 - Aptitude Test 

1 - dishpatch point short mater solv
2 - handling to shift wise mainpower
3 - controling to Sicourty team
4 - controling to refrigeration boiler etc point
Control to lowjisticky team

Interview Preparation Tips

Interview preparation tips for other job seekers - Dairy endstry main point timely dishpatch and production to market combination fix packing controling to miss use milk controling to machine Head wise polyfilm mis use and safe to electric controling to mis use electric and controling to etc point

Senior Manager and Production Head Interview Questions asked at other Companies

Q1. Control to milk loses 1 - machine head wise per hours weight chaking 2 - machine Head wise control to leakage 3 control to miss use to milk
View answer (1)
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Which wagon is made here?
  • Ans. 

    The wagon made here is the production engineer's answer to a specific type of wagon being manufactured at the facility.

    • The wagon made here is typically a specific type of industrial wagon used for transporting materials within a manufacturing facility.

    • Examples of wagons made here could include flatbed wagons, utility wagons, or custom-designed wagons for specific production needs.

  • Answered by AI

Production Engineer Interview Questions asked at other Companies

Q1. How to solve the problem in robot means how to detect fault?
View answer (9)

Interview questions from similar companies

I applied via Campus Placement and was interviewed before Nov 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. In resume about our stream of study

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare the resume complete ly and your stream of study

Interview Questionnaire 

2 Questions

  • Q1.  What is your ambition
  • Q2. To be positioned

Interview Preparation Tips

Interview preparation tips for other job seekers - Be cool and confident stay stubborn and storng communicate welll

I applied via Recruitment Consultant and was interviewed in Mar 2021. There was 1 interview round.

Interview Questionnaire 

3 Questions

  • Q1. Java questions
  • Q2. Stream questions
  • Q3. Collections sorting

Interview Preparation Tips

Interview preparation tips for other job seekers - Core java, spring, spring boot microservices

Interview Questionnaire 

2 Questions

  • Q1. Write Query
  • Ans. 

    Write a query

    • Specify the database and table name

    • List the columns to be selected

    • Add any conditions or filters

    • Specify the order of results

  • Answered by AI
  • Q2. Update query

Skills evaluated in this interview

Interview Questionnaire 

4 Questions

  • Q1. About your self
  • Q2. About java
  • Q3. Phython
  • Q4. Project details

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong ont losse ur hope

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 60 mins
Round difficulty - Medium

  • Q1. 

    Railway Seat Berth Determination

    Given a railway seat number represented as an integer, determine if it is a valid seat number and identify its berth type. Possible berth types include lower berth, middle...

  • Ans. 

    Given a railway seat number, determine if it is valid and identify its berth type.

    • Parse input integer 't' for number of test cases

    • For each test case, check if seat number is valid (1 <= N <= 100)

    • Identify berth type based on seat number and output the result

    • Possible berth types are Lower, Middle, Upper, Side Lower, and Side Upper

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 90 mins
Round difficulty - Hard

First they asked me to introduce myself then they started questioning on oops concept from basic to advance level such as inheritance, polymorphism, abstraction, exception handling , STL etc. Next they started questioning on data structures. They asked me the logic of “how to find the middle of a linked list”.

  • Q1. 

    Matrix Symmetry Check

    You are provided with a square matrix. Your task is to return true if the matrix is symmetric; otherwise, return false.

    A symmetric matrix is characterized by its transpose being eq...

  • Ans. 

    Check if a square matrix is symmetric by comparing it with its transpose.

    • Iterate through the matrix and compare each element with its corresponding element in the transpose

    • If any pair of elements do not match, return false immediately

    • If all pairs match, return true at the end

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from K. K. Wagh Institute Of Engineering Education And Research. I applied for the job as Software Engineer in PuneEligibility criteria6.0 CGPAJosh Technology Group interview preparation:Topics to prepare for the interview - Data Structures, OOPS, DBMS, Python, SQLTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Clear the basic concepts of data structure and OOPs.
Tip 2 : Use coding ninja platform and Hackerearth for practice on coding skills.
Tip 3 : Use Geeks For Geeks for interview preparation.

Application resume tips for other job seekers

Tip 1: Make your resume short and try to make it of one page only.
Tip 2: Add relevant keywords

Final outcome of the interviewRejected

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before Jul 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Check if binary tree is balanced or not.
  • Ans. 

    Check if binary tree is balanced or not.

    • A balanced binary tree has the height of left and right subtrees differ by at most 1.

    • Recursively check the height of left and right subtrees and compare.

    • Use a helper function to calculate the height of a subtree.

    • Time complexity: O(nlogn) for a balanced tree, O(n^2) for a skewed tree.

  • Answered by AI
  • Q2. Detect loops in linked list.
  • Ans. 

    Detect loops in a linked list.

    • Use two pointers, one moving at a faster pace than the other.

    • If there is a loop, the faster pointer will eventually catch up to the slower one.

    • To detect the start of the loop, reset one pointer to the head and move both pointers at the same pace.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview experience was good, do your DS Algo questoin thoroughly.

Skills evaluated in this interview

Interview Preparation Tips

Round: TECHNICAL ROUND TEST
Experience: A 45 mins round which consisted of 30 mins of core questions and 15 mins of data structures.  It was a mix of test on our knowledge .

Round: HR Interview
Experience: Most of the questions were based on general knowledge and many of them were from the resume provides by me

General Tips: It is always advisable to be prepared with certain set of general questions which make it easier to answer.
Skill Tips: Focus on your Study.. Revise the subject that you have studied at the time of Interview
Skills: Technical Skills
College Name: IIT MADRAS

Oriental Foundry Interview FAQs

How many rounds are there in Oriental Foundry interview?
Oriental Foundry interview process usually has 2 rounds. The most common rounds in the Oriental Foundry interview process are Technical, Resume Shortlist and Aptitude Test.
How to prepare for Oriental Foundry interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Oriental Foundry. The most common topics and skills that interviewers at Oriental Foundry expect are Foundry, Casting, Furnace, Metallurgy and Production.
What are the top questions asked in Oriental Foundry interview?

Some of the top questions asked at the Oriental Foundry interview -

  1. Control to milk loses 1 - machine head wise per hours weight chaking 2 - machi...read more
  2. Which wagon is made he...read more
  3. Control to miss use elect...read more

Tell us how to improve this page.

Oriental Foundry Interview Process

based on 8 interviews

Interview experience

4.3
  
Good
View more

Oriental Foundry Reviews and Ratings

based on 39 reviews

3.0/5

Rating in categories

3.1

Skill development

2.4

Work-life balance

3.1

Salary

2.2

Job security

2.5

Company culture

2.3

Promotions

2.7

Work satisfaction

Explore 39 Reviews and Ratings
Electrician
7 salaries
unlock blur

₹3 L/yr - ₹3.5 L/yr

Production Engineer
6 salaries
unlock blur

₹2.7 L/yr - ₹3.3 L/yr

Quality Engineer
5 salaries
unlock blur

₹2.4 L/yr - ₹3.7 L/yr

Melting Supervisor
5 salaries
unlock blur

₹2.9 L/yr - ₹4 L/yr

Production & QC Engineer
4 salaries
unlock blur

₹2.4 L/yr - ₹4.2 L/yr

Explore more salaries
Compare Oriental Foundry with

Coca-Cola Company

4.1
Compare

Dhoot Transmission

3.7
Compare

Genius Consultants

3.8
Compare

Apotex Research

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