Upload Button Icon Add office photos

Filter interviews by

Birla Textile Mills Interview Questions and Answers

Updated 25 Aug 2021

Birla Textile Mills Interview Experiences

1 interview found

I appeared for an interview in Feb 2021.

Interview Questionnaire 

3 Questions

  • Q1. Ask questions About working profile to till core .
  • Q2. Check IQ with aptitude test special methadalogy
  • Q3. Last questions about Logistics & Overall supply chain.

Interview Preparation Tips

Interview preparation tips for other job seekers - Update your skills in excellence whose work you are doing .
Update yourself what you are doing and it's impact till last..

Purchase Executive Interview Questions asked at other Companies

Q1. Could you explain how many type of purchase order and explain it?
View answer (2)

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. All technical questions raised

I applied via Campus Placement and was interviewed in Jan 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Introduce yourself and tell me something about your Bachelors project

Interview Preparation Tips

Interview preparation tips for other job seekers - Be calm and compassionate

I applied via Recruitment Consultant and was interviewed before May 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Position & JD

Interview Preparation Tips

Interview preparation tips for other job seekers - Please go thorugh the JD throughly to succeed.

I applied via Campus Placement and was interviewed before Jun 2021. There were 4 interview rounds.

Round 1 - Coding Test 

2 coding questions (1 DP + 1 Graph)

Round 2 - One-on-one 

(1 Question)

  • Q1. Leetcode easy, medium questions on tree, dp
Round 3 - One-on-one 

(2 Questions)

  • Q1. 1 coding question on string (hard).
  • Q2. OS, DBMS, OOPs questions
Round 4 - HR 

(1 Question)

  • Q1. Usual HR questions + 2 puzzles question

Interview Preparation Tips

Interview preparation tips for other job seekers - Make sure to have clear understanding of Computer Science subjects OS, DBMS, OOPs

I appeared for an interview before Nov 2016.

Interview Questionnaire 

3 Questions

  • Q1. About yourself
  • Q2. Will you work at any location
  • Ans. 

    Yes, I am willing to work at any location for the Senior Engineer position.

    • I am open to relocating for the right opportunity

    • I have experience working in different locations

    • I am flexible and adaptable to new environments

  • Answered by AI
  • Q3. Why you think you can work in any adverse situation
  • Ans. 

    I have a proven track record of staying calm and focused in challenging situations, allowing me to problem-solve effectively.

    • I have experience working in high-pressure environments and have successfully delivered projects on time despite obstacles.

    • I am adaptable and can quickly assess a situation to determine the best course of action.

    • I have strong problem-solving skills and can think creatively to find solutions in ad

  • Answered by AI

Interview Preparation Tips

Round: Test
Duration: 1 hour
Total Questions: 100

Round: Group Discussion
Duration: 20 minutes

Interview Preparation Tips

Round: Test
Experience: First round was a simple round which involved 10 multiple choice questions and 3 coding questions on hackerrank platform.

Round: Technical Interview
Experience: Mainly on topics like networks, data structures and algorithms, operating systems. The interviewers looked for people who have had prior experience in web development and asked questions regarding web development in depth too.
Tips: I recommend everyone to read the book titled, 'Cracking the Coding Interview' as it was helpful in my approach to an interview.

General Tips: The one major thing that would give you the edge in joining Myntra would definitely be exposure to web development. Since it is not a part of the curriculum , it's all the more important for you to familiarize yourself with web development. In fact, a few projects in the same field would put you in a very advantageous position to get the job.
Skill Tips: 1. Start your placement preparations well ahead, no point regretting later.
2. Keep a concise resume. Do not take your resume to several pages.
3. Do not neglect aptitude preparation. Many people do this mistake and end up not clearing the first round for several companies.
4. Be thorough with your basics across all subjects. (Do not neglect any subject, even they you may like a few and dislike the others.)
5. Keep in mind, the interviewers are really friendly and try to make sure that you're not nervous during the interview. All they want to do is to test you. Be confident and give it your best shot.
Skills:
College Name: NIT Surathkal

Interview Questionnaire 

10 Questions

  • Q1. What do you do when your schedule is interrupted? How you handle it?
  • Q2. PreOrder traversal without recursion?
  • Ans. 

    PreOrder traversal without recursion is done using a stack to simulate the function call stack.

    • Create an empty stack and push the root node onto it.

    • While the stack is not empty, pop a node from the stack and process it.

    • Push the right child of the popped node onto the stack if it exists.

    • Push the left child of the popped node onto the stack if it exists.

  • Answered by AI
  • Q3. Build a bst out of the unsorted array by looping over the array and inserting each element to the tree?
  • Ans. 

    Yes

    • Create an empty binary search tree (BST)

    • Loop over the unsorted array

    • For each element, insert it into the BST using the appropriate insertion logic

    • Repeat until all elements are inserted

    • The resulting BST will be built from the unsorted array

  • Answered by AI
  • Q4. Find 2 elements in array whose sum is equal to given number?
  • Ans. 

    The question asks to find two elements in an array whose sum is equal to a given number.

    • Iterate through the array and for each element, check if the difference between the given number and the current element exists in the array.

    • Use a hash set to store the elements as you iterate through the array for efficient lookup.

    • Return the pair of elements if found, otherwise return a message indicating no such pair exists.

  • Answered by AI
  • Q5. How many types of trigger?
  • Ans. 

    There are two types of triggers: DML triggers and DDL triggers.

    • DML triggers are fired in response to DML (Data Manipulation Language) statements like INSERT, UPDATE, DELETE.

    • DDL triggers are fired in response to DDL (Data Definition Language) statements like CREATE, ALTER, DROP.

    • Examples: A DML trigger can be used to log changes made to a table, while a DDL trigger can be used to enforce certain rules when a table is alt

  • Answered by AI
  • Q6. Can trigger be used with select statement?
  • Ans. 

    Yes, triggers can be used with select statements in SQL.

    • Triggers are database objects that are automatically executed in response to certain events, such as insert, update, or delete operations.

    • While triggers are commonly used with insert, update, and delete statements, they can also be used with select statements.

    • Using triggers with select statements allows you to perform additional actions or validations before or af...

  • Answered by AI
  • Q7. Indexing in mysql? How many types of indexing in mysql?
  • Ans. 

    Indexing in MySQL improves query performance. There are several types of indexing in MySQL.

    • Indexes are used to quickly locate data without scanning the entire table.

    • Types of indexing in MySQL include B-tree, hash, full-text, and spatial indexes.

    • B-tree indexes are the most common and suitable for most use cases.

    • Hash indexes are used for exact match lookups.

    • Full-text indexes are used for searching text-based data efficie...

  • Answered by AI
  • Q8. Engines in mysql?
  • Ans. 

    Engines in MySQL are the underlying software components that handle storage, indexing, and querying of data.

    • MySQL supports multiple storage engines, each with its own strengths and features.

    • Some commonly used engines in MySQL are InnoDB, MyISAM, and Memory.

    • InnoDB is the default engine in MySQL and provides support for transactions and foreign keys.

    • MyISAM is known for its simplicity and speed but lacks transaction suppo...

  • Answered by AI
  • Q9. Singlton pattern?
  • Q10. Can a constructor be private?
  • Ans. 

    Yes, a constructor can be private.

    • A private constructor can only be accessed within the class itself.

    • It is often used in singleton design pattern to restrict object creation.

    • Private constructors are also useful for utility classes that only contain static methods.

  • Answered by AI

Interview Preparation Tips

Skills: Algorithm, Data structure
College Name: na

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. What do you know about our company and why do you join it ?
  • Ans. 

    I know that your company is a leading provider of innovative sales solutions in the industry. I am joining because of your strong reputation and commitment to excellence.

    • Your company has a proven track record of success in delivering top-notch sales solutions.

    • I am impressed by the innovative approach your company takes in the sales industry.

    • Your company's commitment to excellence and customer satisfaction aligns with m...

  • Answered by AI

Interview Preparation Tips

Round: Resume Shortlist
Experience: I was told to tell me about my self. They checked my communication skills and my confidence level.
Tips: Be confident in this round about your self. And represent yourself in good professional way.

Round: HR Interview
Experience: In this round they were checking our knowledge and our homework that what we knew about them and their products. They were also checking that are we ready for learning and do we have potential or not.
Tips: Don't show that you know everything. Just talk point to point. So much Pre-requisite knowledge can be bad for you.

College Name: Galgotias University

I applied via Naukri.com and was interviewed before Aug 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Tell about yourself
  • Q2. What is your salary expectation

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview wa easy and can crack it

Birla Textile Mills Interview FAQs

What are the top questions asked in Birla Textile Mills interview?

Some of the top questions asked at the Birla Textile Mills interview -

  1. Last questions about Logistics & Overall supply cha...read more
  2. Check IQ with aptitude test special methadal...read more

Tell us how to improve this page.

Birla Textile Mills Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Meesho Interview Questions
3.7
 • 338 Interviews
Berger Paints Interview Questions
3.7
 • 270 Interviews
Cummins Interview Questions
4.3
 • 235 Interviews
Adani Power Interview Questions
3.9
 • 232 Interviews
Myntra Interview Questions
4.0
 • 219 Interviews
OPPO Interview Questions
4.0
 • 217 Interviews
LG Electronics Interview Questions
4.0
 • 205 Interviews
Britannia Interview Questions
4.0
 • 172 Interviews
Subros Interview Questions
3.8
 • 171 Interviews
Blue Star Interview Questions
4.1
 • 169 Interviews
View all

Birla Textile Mills Reviews and Ratings

based on 39 reviews

4.0/5

Rating in categories

3.4

Skill development

3.8

Work-life balance

3.7

Salary

3.8

Job security

3.7

Company culture

3.2

Promotions

3.5

Work satisfaction

Explore 39 Reviews and Ratings
Assistant Manager
6 salaries
unlock blur

₹6.6 L/yr - ₹9.4 L/yr

Senior Officer
6 salaries
unlock blur

₹3.6 L/yr - ₹4.5 L/yr

Senior Manager
6 salaries
unlock blur

₹7.8 L/yr - ₹11.1 L/yr

Senior Safety Manager
5 salaries
unlock blur

₹12 L/yr - ₹16 L/yr

Shift Officer
5 salaries
unlock blur

₹3 L/yr - ₹3.5 L/yr

Explore more salaries
Compare Birla Textile Mills with

OPPO

4.0
Compare

LG Electronics

4.0
Compare

Cummins

4.3
Compare

Berger Paints

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