Upload Button Icon Add office photos

Filter interviews by

Ethiopian Textile Industry Development Institute Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

I applied via Campus Placement

Interview Questionnaire 

16 Questions

  • Q1. Introduce yourself
  • Ans. 

    I am a recent IT graduate with a passion for coding and problem-solving.

    • Graduated with a degree in IT

    • Proficient in programming languages such as Java and Python

    • Experience in developing web applications using HTML, CSS, and JavaScript

    • Strong analytical and problem-solving skills

    • Ability to work well in a team and communicate effectively

  • Answered by AI
  • Q2. Being a mathematical graduate how can you cope up in IT
  • Ans. 

    Mathematics provides a strong foundation for problem-solving and analytical skills, which are essential in IT.

    • Mathematics involves logical thinking and problem-solving, which are crucial skills in IT.

    • Mathematical concepts such as algorithms, statistics, and calculus are widely used in IT.

    • Mathematics also helps in developing a strong analytical mindset, which is essential in data analysis and software development.

    • Mathem...

  • Answered by AI
  • Q3. What are steps taken to join IT
  • Ans. 

    Steps to join IT include obtaining relevant education, gaining experience through internships or entry-level positions, and networking.

    • Obtain relevant education such as a degree in computer science or IT

    • Gain experience through internships or entry-level positions

    • Develop technical skills through online courses or certifications

    • Build a professional network through attending industry events or joining professional organiz...

  • Answered by AI
  • Q4. What are the technologies you know
  • Ans. 

    I have knowledge of programming languages such as Java, Python, and C++. I am also familiar with web development technologies like HTML, CSS, and JavaScript.

    • Proficient in Java, Python, and C++ programming languages

    • Familiar with web development technologies like HTML, CSS, and JavaScript

    • Knowledge of database management systems like MySQL and Oracle

    • Experience with version control systems like Git

    • Understanding of software...

  • Answered by AI
  • Q5. Okay tell me about that
  • Q6. What programming language you know
  • Ans. 

    I know multiple programming languages including Java, Python, and C++.

    • Java - used for building enterprise-level applications

    • Python - known for its simplicity and versatility

    • C++ - used for system programming and game development

  • Answered by AI
  • Q7. What is a pointer
  • Ans. 

    A pointer is a variable that stores the memory address of another variable.

    • Pointers allow direct manipulation of memory.

    • They are used to access and modify data indirectly.

    • Pointers are commonly used in dynamic memory allocation.

    • Example: int* ptr; // declares a pointer to an integer variable.

  • Answered by AI
  • Q8. What is a null pointer
  • Ans. 

    A null pointer is a pointer that does not point to any memory location.

    • A null pointer is represented by the value 0 or NULL.

    • Dereferencing a null pointer results in a segmentation fault.

    • Null pointers are commonly used to indicate the end of a linked list or array.

    • Null pointers can be assigned to any pointer type.

  • Answered by AI
  • Q9. What are structures
  • Ans. 

    Structures are user-defined data types that allow storing multiple data types under a single name.

    • Structures are used to group related data together.

    • They can contain variables of different data types.

    • Structures can also contain functions.

    • Structures are defined using the 'struct' keyword.

    • Example: struct student { char name[20]; int age; float marks; };

    • Structures can be passed as arguments to functions.

    • They can also be u...

  • Answered by AI
  • Q10. What is nested structure
  • Ans. 

    A nested structure is a structure within another structure in programming.

    • It allows for more complex data structures to be created

    • It can be used in various programming languages such as C++, Java, and Python

    • An example of a nested structure is a struct within a struct in C++

  • Answered by AI
  • Q11. What are classes
  • Ans. 

    Classes are templates for creating objects that have similar properties and methods.

    • Classes are used in object-oriented programming.

    • They define the properties and methods that objects of that class will have.

    • Objects are instances of a class.

    • Classes can inherit properties and methods from other classes.

    • Examples of classes include 'Person', 'Car', and 'Animal'.

  • Answered by AI
  • Q12. What are classes in C++
  • Ans. 

    Classes in C++ are user-defined data types that encapsulate data and functions.

    • Classes are used for object-oriented programming.

    • They allow for data abstraction and encapsulation.

    • Classes can have member variables and member functions.

    • Objects are instances of classes.

    • Inheritance and polymorphism are key features of classes.

  • Answered by AI
  • Q13. I said no idea
  • Q14. Where do you see yourself in 5 years
  • Ans. 

    In 5 years, I see myself as a senior IT professional, leading a team and contributing to the growth and success of the organization.

    • Leading a team of IT professionals

    • Contributing to the growth and success of the organization

    • Continuously learning and staying updated with the latest technologies

    • Taking up challenging projects and delivering successful solutions

    • Building strong professional relationships and networking with

  • Answered by AI
  • Q15. According to you what do you need ...technical skills or team collabration
  • Q16. Can you work in night shift and can you relocate
  • Ans. 

    Yes, I am willing to work in night shifts and relocate if required.

    • I am flexible and adaptable to different work schedules, including night shifts.

    • I understand the importance of providing 24/7 support in the IT industry.

    • I am open to relocating for better career opportunities and growth.

    • I have a strong commitment to my work and can adjust to new environments.

    • I am willing to make necessary arrangements to ensure smooth t

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - It was good...You shouldnt be tensed...you can talk whatever you know...be confident always

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed before May 2017. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Need to implement in salary slab

Interview Preparation Tips

Good in interview easy exam

I applied via Referral and was interviewed before May 2017. There were 2 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. IPQA, Shop floor, LC, Sampling
  • Q2. Stratified Sampling

Interview Questionnaire 

9 Questions

  • Q1.  Sir Parmanent job hai na
  • Q2. Gnm
  • Q3. Apply to mandeep
  • Q4. Lupin Limited
  • Q5. Health warkar
  • Q6. Sir duty ka time kya rahega
  • Q7. 6 hours ki duty hai
  • Q8. Kya vacancy hai sir
  • Q9. Aapke company me

I applied via Naukri.com and was interviewed in Mar 2020. There were 5 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. What Are JOINS in SQL and difference between Inner JOIN and equi JOIN? Illustrate with an example.
  • Ans. 

    JOINS are used in SQL to combine data from two or more tables based on a related column.

    • Inner JOIN returns only the matching rows from both tables

    • Equi JOIN is a type of Inner JOIN where the join condition is based on equality between two columns

    • Example: SELECT * FROM table1 INNER JOIN table2 ON table1.column = table2.column

  • Answered by AI
  • Q2. Divide the array in two Halves and keep each half in ascending order without using new Array?
  • Ans. 

    Divide array in two halves and keep each half in ascending order without using new Array.

    • Use Array.sort() method to sort the original array

    • Use Array.slice() method to divide the array into two halves

    • Use Array.reverse() method to reverse the second half of the array

  • Answered by AI
  • Q3. What are Interfaces and Why do we need interfaces?
  • Ans. 

    Interfaces are contracts that define a set of methods and properties that a class must implement.

    • Interfaces provide a way to achieve abstraction and polymorphism in object-oriented programming.

    • They allow for loose coupling between classes and promote code reusability.

    • Interfaces can be used to define common behavior across multiple classes.

    • Example: IDisposable interface in C# ensures that an object can be properly dispo...

  • Answered by AI
  • Q4. What is inheritance and Examples in inheritance.
  • Ans. 

    Inheritance is a mechanism in object-oriented programming where a class is based on another class.

    • Inheritance allows a subclass to inherit properties and methods from a superclass.

    • The subclass can also add its own properties and methods.

    • Examples include a Car class inheriting from a Vehicle class, or a Dog class inheriting from an Animal class.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep The Basics clear and Be confident about what you know.
Be truthful and well prepared (Interviewer will catch your lies).

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed in Feb 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. 1.If an URL is not reachable then what are all the possible reasons?
  • Ans. 

    Possible reasons for an unreachable URL

    • Server is down

    • Incorrect URL

    • DNS resolution failure

    • Firewall or security settings

    • Network connectivity issues

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I faced shockingly unprofessional and fraudulent behaviour by UST Global HR.Position was permenent with UST Global but I would work in Amadeus Software labs office in Prestige Techno Park office in Kadubeesanhalli in Bangalore.There were 2 rounds,first one was telephonic which I cleared.The second was face 2 face,I went to Amadeus office in PrestegeTech Park.That interview went off well ,I answered all the questions.But shockingly I was told two days later the feedback was not positive.
I was shocked as all the time and effort that I had invested in attending this interview had got wasted.The actual reason was that UST Global was not competent enough to pay my expected CTC so they shamelessly gave an excuse that the interview feedback was not positive.Such fraudulent practices must be checked.As this is Bangalore and UST Global is not the only company that is there, if my interview had not gone well I would have concentrated on other interviews rather than writing this review.The only intention behind writing this review is to expose what this company has done.Fraud should always be called out,ignoring it only serves as further encouragement. Hence ,I would urge people to exercise due caution while attending this company's interview.

Skills evaluated in this interview

I applied via Walk-in and was interviewed in Dec 2019. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Regarding previous company work experience. And some subject wise questions
  • Q2. Regarding personal. Technical and Work experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Well prepared by technically and subject wise...

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

Interview Questionnaire 

1 Question

  • Q1. General qus to stared the round and ask many qus of hr to e

Interview Preparation Tips

Round: Resume Shortlist
Experience: based on the ur resume prepartion

General Tips: This interview was a technical one but was majorly a stress test. It lasted for about 1 hour 10 minutes. The interviewer wanted to test both my knowledge and communication skills. Most of the questions asked to me were related to my B.Tech curriculum i.e. computer science related topics. He stressed a lot on the basics related to my project topic. Luckily I was able to answer most of the questions correctly. I tried to answer each question with examples and also used props on the table (like pens, paperweights, pen stands etc.) to explain my theories. It was my first offcampus interview, and I think I did pretty well for a fresher.
You need to stay calm and should apply presence of mind. Please go through the job description thoroughly word-by-word and recheck your resume to ensure that you are a best-fit for the position.
Skills: Communication, Communication
Duration: <1 week
College Name: AVC COLLEGE OH AUTONOMOUNS

Interview Questionnaire 

5 Questions

  • Q1. Which other companies have you appeared for ? What happened there ?
  • Q2. Tell us about yourself
  • Ans. 

    I am a motivated and dedicated individual with a strong interest in the AUT field.

    • I have recently completed my Bachelor's degree in Engineering.

    • During my studies, I gained practical experience through internships at two different companies.

    • I have a strong understanding of AUT principles and techniques.

    • I am a quick learner and have excellent problem-solving skills.

    • I am highly organized and can effectively manage multipl...

  • Answered by AI
  • Q3. Why not family business ?
  • Q4. You have an intern and your IDD Dissertation on optimization. Did you have choices in these?
  • Q5. Explain any other project
  • Ans. 

    Developed a mobile app for tracking daily water intake

    • Designed and developed a mobile application using React Native

    • Implemented features to track and record daily water intake

    • Integrated with health tracking APIs to provide personalized recommendations

    • Utilized Firebase for user authentication and data storage

    • Conducted user testing and gathered feedback for iterative improvements

  • Answered by AI

Interview Preparation Tips

Round: Resume Shortlist
Experience: Initial shortlisting was based on resume. Everyone above 8 was shortlisted.

Round: Group Discussion
Experience: Our GD was about an old man which died on a Christmas eve. Roles of various individuals/groups were given and they had to be arranged from the most responsible to the least responsible.Some of the roles were like:
1) The old man didn't save enough for old age and didn't had insurance. 
2) The doctor didn't attend a house call as he had a 70 h week. 
3) The hospital administration didn't admit the old man in the morning because of lack of facilities. 
4) The taxpayers didn't allow a bill on better health facilities because it would lead to an increase in taxes. Our GD turned out to be a cool one because almost everyone supported the same order. The total time for reading and discussion was 25 mins but we concluded by around 20 mins only. We spent most of the time discussing how the roles could have been to prevent the death.
Tips: Try to develop a good vocab and fluency for GD. 
The key to any GD is to put as many ideas and to discuss with the group. 
Don't try to make it a monologue or just sit there supporting everyone. 
Try to rationally think about the topic. 
Starting the GD is advantageous only when you have really understood the topic. 
Otherwise, try to listen to other speakers and understand the topic. 
Even if you speak 2-3 times for reasonable length of time and put impressive points, you should make it through.
Duration: 25 mins minutes

Round: Interview
Experience: It was a technical plus HR round. 
This was how it went:1) Which other companies have you appeared for ?
Rio Tinto.
2) What happened there ?
I screwed up in HR.
3) Tell us something about yourself.
Did so. Told a little about family and campus life. Try to talk about things which you wish to be interviewed upon.
4) Why not family business ?
Convinced them about my liking of corporate life :)
5) You have an intern and your IDD Dissertation on optimization. Did you have choices in these?
Said Yes and explained why i chose optimization and also explained the projects a little. One of the guys had worked on electrocoagulation and was impressed by my understanding :)
6) Explain any other project.
Told them about shale gas project.
7) What's the distribution of shale gas in the world and what's its composition?
Told them.
8) Why do we have flaring of gas when we take out crude?
It depends on the amount of gas in place. If the gas in place is low, building a pipeline to take gas would be costly, hence it is flared.
9) Why do we flare it in petrochemical complexes?
Greenhouse potential of methane is higher than that of carbon dioxide.
10) How high?
Err....90 times.?!! (actually it is 72 times)
11) How would you calculate the efficiency of a boiler?Told them. Try to use bookish language in your answers.
12) Laws of thermodynamics and their statements.
Simplest Question :)
13) How do you relate the Clausius Statement with the Kelvin Statement.
Explained with a diagram.
14) Tell me about your learnings while working as a team leader and as a team member.
Told them about Cogni. Tried to explain my role but was asked to be specific on learnings.
15) Why ITC ?
ITC being an Indian company has gone upto the standards of global giants like P&G and HUL in terms of quality. You have the best people working for you and its easier to learn from people rather than to learn from books.
16) You want to work for an indian company and just appeared for Rio Tinto ?!!
Umm....Sir, it has just started working in India !!

General Tips: I started preparing for placements by the start of November. For ITC&#44; the first step is writing your
resume correctly. Don't write things just to make your resume attractive. Write about things in which you are really confident. For interns and projects, write in a manner to clearly indicate the aim of work, your personal contribution, your learnings and the final result. Read relevant coursework to your projects as it will help you in interview. Prepare 3-4 subjects really well as you might be asked an area of interest. You need to be good in your core courses as ITC pays attention to how well you can recall them. Try to go through as many subjects atleast once.
Think about 3-4 companies that you have a good chance in. Know their procedures and past year questions and prepare accordingly. It helps.
College Name: IIT-ROORKEE

Interview Questionnaire 

1 Question

  • Q1. Why Mechanical Engineering?
  • Ans. 

    Mechanical Engineering offers a diverse range of opportunities to apply scientific principles to solve real-world problems.

    • Mechanical Engineering provides a strong foundation in math, physics, and materials science.

    • It offers a wide range of career opportunities in various industries such as automotive, aerospace, and manufacturing.

    • Mechanical Engineers design and develop machines, tools, and systems that improve our dai...

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: Questions related to courses of Design, MOS, TOM. It had tough MCQ’s based on formulae that had to be memorized and were calculation intensive.

Round: Technical Interview
Experience: it was a 45-minute round with questions about yourself, CPI and extra-curricular activities.

Round: HR Interview
Experience: Questions based on resume, internship and 2nd and 3rd year related projects. Short discussion on Extra-curricular activities.

College Name: IIT KANPUR

Tell us how to improve this page.

Ethiopian Textile Industry Development Institute Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
BYJU'S Interview Questions
3.1
 • 2.2k Interviews
Reliance Retail Interview Questions
3.9
 • 1.5k Interviews
Tata Motors Interview Questions
4.2
 • 992 Interviews
Tata Steel Interview Questions
4.1
 • 830 Interviews
Asian Paints Interview Questions
4.0
 • 637 Interviews
Maruti Suzuki Interview Questions
4.2
 • 595 Interviews
Samsung Interview Questions
4.0
 • 554 Interviews
ITC Interview Questions
3.9
 • 544 Interviews
View all

Ethiopian Textile Industry Development Institute Reviews and Ratings

based on 2 reviews

4.7/5

Rating in categories

4.0

Skill development

4.5

Work-life balance

4.4

Salary

3.4

Job security

4.0

Company culture

3.0

Promotions

3.8

Work satisfaction

Explore 2 Reviews and Ratings
Compare Ethiopian Textile Industry Development Institute with

TCS

3.7
Compare

HCLTech

3.5
Compare

Reliance Retail

3.9
Compare

BYJU'S

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