Upload Button Icon Add office photos

Filter interviews by

The Technological Institute of Textile & Sciences 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 

3 Questions

  • Q1. Tell us about your project
  • Ans. 

    My project was a web application for managing employee schedules and tasks.

    • Developed using React and Node.js

    • Implemented a calendar view for scheduling

    • Included task assignment and progress tracking features

    • Used MongoDB for data storage

    • Received positive feedback from beta testers

  • Answered by AI
  • Q2. What was the biggest challenge during your intern
  • Ans. 

    The biggest challenge during my intern was adapting to the fast-paced work environment.

    • Adapting to the fast-paced work environment was difficult

    • Learning new skills and software quickly was challenging

    • Working on multiple projects simultaneously was overwhelming

    • Communicating effectively with team members was a struggle

    • Managing time efficiently was a constant challenge

  • Answered by AI
  • Q3. What is your fav course (questions relating to that field)

Interview Preparation Tips

Round: Resume Shortlist
Experience: Selected in Resume Shortlist.
Tips: Make a balanced resume and tweak it a little bit according to what the company is looking for. So incase of ITC have more projects than Postion of Responsibilites.

Round: Group Discussion
Experience: The GD was a case discussion. A plane had crashed into a jungle and there were 7-8 survivors. we were given brief intro of each person and had to decide certain things
Tips: in a 25 minute GD one should be careful that the time available is neither too less nor too much. You need not jump directly into the discussion and give away all the points that you have thought. that way you wont have anything to speak in the later half. nor should you wait too long. your points should be placed well apart so that you remain in the picture throughout your GD. Also try to frame your points clearly and support them with examples or analogies. That too helps. You may start or conclude the GD if you are really confident about it.
Duration: 25 minutes

Round: Interview
Experience: it was like a pleasant chat. they asked me questions regarding my projects and internships.
Tips: Do not be too conscious. In a technical interview you should be calm and comfortable. Treat it like a chat bcoz major focus is on the answers or your technical knowledge and not your body language or attitude. THINK ALOUD. all the steps involved in the solution should be explained elaborately

Round: Interview
Tips: Prepare your CV well. Be confident about answers to questions like why this company. Research the company once thorougly.

College Name: IIM Bangalore
Motivation: Indian company. Huge diversity. Top package. high opportunities

Interview Preparation Tips

Round: Resume Shortlist
Experience: CPI based shortlisting. Around 6-7 people from MME with CPI > 7.9 were shortlisted.

Round: Interview (Telephonic)
Experience: Duration: 10-15 minutes
Questions :
1. Name 
2. Resume Based Questions 
3. Internships and projects 
4. Technical Questions 
5. Favorite Subject and questions on that 
6. BTP

General Tips: 1. Choose which subject you will say as your favorite and prepare that thoroughly. 
2. Read Proforma of company and prepare accordingly. 
3. It is most secure if you can direct the interviewer to ask questions about your internships and projects&#44; because that is something you know better than him/her. 
4. Prepare puzzles etc. generally asked in interviews. 
5. Keep a Positive Attitude in general. Have an attitude of “I don’t need the company, the company needs me”.
Skill Tips: This company basically needed only 1 MME student was selected - who did both his interns and projects in ‘Modeling and Simulation’.
Skills: Thermodynamics of Materials, Characterization, Manufacturing Processes ,
College Name: IIT- Kanpur

The Technological Institute of Textile & Sciences Interview FAQs

How to prepare for The Technological Institute of Textile & Sciences 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 The Technological Institute of Textile & Sciences. The most common topics and skills that interviewers at The Technological Institute of Textile & Sciences expect are Lecturer Activities, Professor Activities, Teaching, Campus Recruitment and Leadership Skills.

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 ‱ 10.3k Interviews
HCLTech Interview Questions
3.5
 ‱ 3.7k Interviews
BYJU'S Interview Questions
3.1
 ‱ 2.2k Interviews
Reliance Retail Interview Questions
3.9
 ‱ 1.5k Interviews
IIT Bombay Interview Questions
4.5
 ‱ 26 Interviews
View all

The Technological Institute of Textile & Sciences Reviews and Ratings

based on 6 reviews

4.8/5

Rating in categories

4.2

Skill development

4.8

Work-Life balance

4.4

Salary & Benefits

4.6

Job Security

4.6

Company culture

3.9

Promotions/Appraisal

4.6

Work Satisfaction

Explore 6 Reviews and Ratings
Assistant Professor
7 salaries
unlock blur

â‚č3 L/yr - â‚č7 L/yr

Explore more salaries
Compare The Technological Institute of Textile & Sciences with

National Institute of Fashion Technology

3.7
Compare

Indian Institute of Technology Gandhinagar

4.1
Compare

Sardar Vallabhbhai National Institute of Technology, Surat

4.4
Compare

IIT Bombay

4.5
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview