Upload Button Icon Add office photos

Filter interviews by

Gujarat Craft Industries Interview Questions, Process, and Tips

Updated 7 Jun 2023

Gujarat Craft Industries Interview Experiences

1 interview found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via AmbitionBox and was interviewed before Jun 2022.Β There were 3 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 - TechnicalΒ 

(5 Questions)

  • Q1. How to increase strength in tape.
  • Ans. 

    Increasing strength in tape can be achieved through various methods such as using higher quality materials, improving the adhesive formula, and enhancing the manufacturing process.

    • Use higher quality materials to make the tape more durable and resistant to tearing.

    • Improve the adhesive formula to ensure better adhesion and bonding strength.

    • Enhance the manufacturing process to create a more uniform and consistent tape pro...

  • Answered by AI
  • Q2. What is the role of temperature in plants PP and HD materials.
  • Ans. 

    Temperature plays a crucial role in determining the properties and performance of PP and HD materials in plants.

    • Temperature affects the crystallinity and mechanical properties of PP and HD materials.

    • Higher temperatures can lead to increased flexibility and impact resistance in PP materials.

    • Temperature variations can also impact the dimensional stability and chemical resistance of HD materials.

    • Extreme temperatures can c...

  • Answered by AI
  • Q3. What is the process of tape plant manufacturing.
  • Ans. 

    Tape plant manufacturing is a process of producing adhesive tapes using various materials and techniques.

    • The process starts with preparing the adhesive mixture, which is then coated onto a backing material such as paper, film, or cloth.

    • The coated material is then dried and cured to ensure proper adhesion and strength of the tape.

    • After curing, the tape is slit into various widths and lengths before being wound onto roll...

  • Answered by AI
  • Q4. How to decrease High elongation problem.
  • Ans. 

    To decrease high elongation problem, focus on adjusting process parameters, improving material quality, and implementing proper training and supervision.

    • Optimize process parameters such as temperature, speed, and tension to reduce elongation.

    • Use higher quality materials with better tensile strength to prevent excessive elongation.

    • Provide training to operators on proper handling techniques to minimize elongation issues.

    • ...

  • Answered by AI
  • Q5. What is the role of UV materials in fabric.
  • Ans. 

    UV materials in fabric play a crucial role in providing protection against harmful UV rays from the sun.

    • UV materials in fabric help to block or absorb harmful UV rays from the sun

    • They can prevent sunburn, skin damage, and reduce the risk of skin cancer

    • UV protective clothing is often treated with special coatings or dyes to enhance its UV-blocking capabilities

  • Answered by AI
Round 3 - NoΒ 

(2 Questions)

  • Q1. Interview complete in 2 round. Ok best of luck πŸ‘
  • Q2. And join company nest day.

Interview Preparation Tips

Interview preparation tips for other job seekers - You really give best knowledge but before reading and realised about his field property.

Quality Supervisor Interview Questions asked at other Companies

Q1.Β HOW MANY METHOD OF QUALITY CHECKING
View answer (4)

Interview questions from similar companies

Interview QuestionnaireΒ 

1 Question

  • Q1. SDLC Model

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice interview

Interview QuestionnaireΒ 

1 Question

  • Q1. Difference between for and for each
  • Ans. 

    For loop is used for iterating over a range of values while for each loop is used for iterating over elements of an array.

    • For loop is used when the number of iterations is known beforehand.

    • For each loop is used when the number of iterations is not known beforehand.

    • For loop can be used with any iterable object.

    • For each loop can only be used with arrays and other iterable objects.

    • For loop uses an index variable to access...

  • Answered by AI

I appeared for an interview before Jun 2016.

Interview QuestionnaireΒ 

1 Question

  • Q1. Java related questions on Oops concept and Multithreading

Interview Preparation Tips

Round: Test
Experience: Simple aptitude and reasoning questions little java based programming
Tips: Basic programming knowledge and good aptitude
Duration: 1 hour
Total Questions: 60

Round: Technical Interview
Experience: Normal questions on Java, basic programming questions like reverse no. , String related and logical coding
Tips: What u mentioned on your resume go through that only, they will not ask apart from your resume

Skills: How Well You Are Able To Communicate What You Wanted To Tell, Programming
College Name: SRCEM

I appeared for an interview before Aug 2016.

Interview Preparation Tips

Round: Resume Shortlist
Experience: I am vinothkumar from Dindugal, I was studied computer engineering in Madurai institute of engineering and technology at sivagangai, I am quality controller in RR DONNELLY at Chennai, my experience 2 years, my family staying in native, my father palanichami he is a former, my mother tamilselvi she is home maker and my one yelder brother Vijayakumar he is driver, I am interested area software engineer, my hobbies are listening music, reading book and news paper, playing and watching cricket
Tips: No comments

Round: Test
Experience: I am vinothkumar from Dindugal, I was studied computer engineering in Madurai institute of engineering and technology at sivagangai, I am quality controller in RR DONNELLY at Chennai, my experience 2 years, my family staying in native, my father palanichami he is a former, my mother tamilselvi she is home maker and my one yelder brother Vijayakumar he is driver, I am interested area software engineer, my hobbies are listening music, reading book and news paper, playing and watching cricket
Tips: No comments
Total Questions: 15

Round: Test
Experience: See my mentality
Tips: No comments
Duration: 45 minutes

Round: Group Discussion
Experience: Communication
Tips: No comments

Skills: Communication And Confidence

I applied via Naukri.com and was interviewed in Sep 2020.Β There were 3 interview rounds.

Interview QuestionnaireΒ 

5 Questions

  • Q1. Which collection class is used to represent key-value pairs?
  • Ans. 

    The HashMap class is used to represent key-value pairs in Java.

    • HashMap is a part of the Java Collections Framework.

    • It allows null values and only one null key.

    • It provides constant-time performance for basic operations like get and put.

    • Example: HashMap<String, Integer> map = new HashMap<>();

  • Answered by AI
  • Q2. What is abstraction?
  • Ans. 

    Abstraction is the process of simplifying complex systems by focusing on essential details and hiding unnecessary complexities.

    • Abstraction allows us to create models or representations of real-world objects or systems in software.

    • It helps in managing complexity by breaking down a system into smaller, more manageable parts.

    • Abstraction provides a level of indirection, allowing changes to be made in one part of the system...

  • Answered by AI
  • Q3. Why is try-catch used in JAVA?
  • Ans. 

    try-catch is used in Java to handle exceptions and prevent program crashes.

    • try-catch blocks are used to catch and handle exceptions that may occur during program execution.

    • It allows the program to gracefully handle errors and prevent the program from crashing.

    • The try block contains the code that may throw an exception, and the catch block handles the exception.

    • Multiple catch blocks can be used to handle different types...

  • Answered by AI
  • Q4. Which statement will we use if we want to select a statement based on integer inputs?
  • Ans. 

    The statement to use for selecting based on integer inputs is the 'switch' statement.

    • The 'switch' statement allows for multiple cases to be evaluated based on the value of an integer input.

    • Each case represents a possible value of the input, and the corresponding code block is executed if the value matches.

    • The 'switch' statement also provides a 'default' case which is executed if none of the cases match the input value.

    • ...

  • Answered by AI
  • Q5. Explain your project.

Interview Preparation Tips

Interview preparation tips for other job seekers - Stick to basic concepts
Prepare a good project

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in Oct 2020.Β There was 1 interview round.

Interview QuestionnaireΒ 

4 Questions

  • Q1. Tell me about yourself
  • Q2. Why IT
  • Q3. About my project
  • Q4. Few mechanical questions

Interview Preparation Tips

Interview preparation tips for other job seekers - General questions

I applied via Referral and was interviewed before Nov 2020.Β There were 3 interview rounds.

Interview QuestionnaireΒ 

2 Questions

  • Q1. Related to work profile
  • Q2. Related to interests

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, go well groomed
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Jan 2022.Β There were 2 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 - HRΒ 

(2 Questions)

  • Q1. About Coal Sampling.
  • Q2. About Coal Grading and coal type.

Interview Preparation Tips

Interview preparation tips for other job seekers - If you want any job then concentrate on your skills or experience.

I applied via Company Website

Round 1 - TechnicalΒ 

(3 Questions)

  • Q1. Process Safety, Hazop
  • Q2. Unit operations and Unit Process
  • Q3. Chemical reaction, Design of Heat Excha
Round 2 - HRΒ 

(1 Question)

  • Q1. Regarding joining and Salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Technically should be strong and aware about Process Safety

Gujarat Craft Industries Interview FAQs

How many rounds are there in Gujarat Craft Industries interview?
Gujarat Craft Industries interview process usually has 3 rounds. The most common rounds in the Gujarat Craft Industries interview process are Resume Shortlist and Technical.
How to prepare for Gujarat Craft Industries 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 Gujarat Craft Industries. The most common topics and skills that interviewers at Gujarat Craft Industries expect are International Marketing, International Sales, Business Development, International Business Development and Marketing.
What are the top questions asked in Gujarat Craft Industries interview?

Some of the top questions asked at the Gujarat Craft Industries interview -

  1. What is the role of temperature in plants PP and HD materia...read more
  2. What is the process of tape plant manufacturi...read more
  3. What is the role of UV materials in fabr...read more

Tell us how to improve this page.

Gujarat Craft Industries Interview Process

based on 1 interview

Interview experience

4
Β Β 
Good
View more

Interview Questions from Similar Companies

HCL Infosystems Interview Questions
3.9
Β β€’Β 142 Interviews
Servotech Power Systems Interview Questions
4.1
Β β€’Β 28 Interviews
Monotype Interview Questions
3.7
Β β€’Β 23 Interviews
Sunteck Realty Interview Questions
3.3
Β β€’Β 23 Interviews
Chakr Innovation Interview Questions
3.2
Β β€’Β 23 Interviews
Quality Council of India Interview Questions
3.5
Β β€’Β 22 Interviews
Ixigo.com Interview Questions
3.6
Β β€’Β 21 Interviews
Welspun Flooring Interview Questions
3.8
Β β€’Β 21 Interviews
Novartis Healthcare Interview Questions
4.1
Β β€’Β 21 Interviews
View all

Gujarat Craft Industries Reviews and Ratings

based on 7 reviews

4.5/5

Rating in categories

3.6

Skill development

4.5

Work-life balance

3.9

Salary

3.5

Job security

4.2

Company culture

3.5

Promotions

3.6

Work satisfaction

Explore 7 Reviews and Ratings
Senior Engineer
3 salaries
unlock blur

β‚Ή3.3 L/yr - β‚Ή4 L/yr

General Manager Finance & Accounts
3 salaries
unlock blur

β‚Ή7 L/yr - β‚Ή9.5 L/yr

Clerk
3 salaries
unlock blur

β‚Ή2.1 L/yr - β‚Ή3 L/yr

Explore more salaries
Compare Gujarat Craft Industries with

HCL Infosystems

3.9
Compare

McNally Bharat Engineering

4.0
Compare

Schoolnet India

3.9
Compare

Novartis Healthcare

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