Upload Button Icon Add office photos

Filter interviews by

Shades Of India Crafts Interview Questions and Answers

Updated 26 Sep 2017

Shades Of India Crafts Interview Experiences

1 interview found

Interview Questionnaire 

4 Questions

  • Q1. Tell me your strength
  • Q2. Complete process of dyeing to printing
  • Ans. 

    The process of dyeing to printing involves applying color to fabric and creating patterns or designs.

    • Dyeing: The fabric is immersed in a dye bath or the dye is applied directly to the fabric to color it.

    • Printing: Patterns or designs are applied to the fabric using various techniques like screen printing, block printing, or digital printing.

    • Preparation: The fabric is prepared by washing and treating it to ensure proper ...

  • Answered by AI
  • Q3. Price and suppliers of fabrics
  • Ans. 

    The price and suppliers of fabrics vary depending on factors such as quality, quantity, and location.

    • Fabric prices can range from affordable to high-end, depending on the material and brand.

    • Suppliers can include textile manufacturers, wholesalers, and retailers.

    • Factors influencing fabric prices include quality, design, demand, and production costs.

    • Examples of fabric suppliers include fabric mills, online fabric stores,

  • Answered by AI
  • Q4. Method of printing
  • Ans. 

    There are various methods of printing fabrics, including screen printing, digital printing, and block printing.

    • Screen printing involves using a mesh screen to transfer ink onto the fabric.

    • Digital printing uses computer-controlled printers to directly apply ink onto the fabric.

    • Block printing involves carving a design onto a block and then stamping it onto the fabric.

    • Other methods include heat transfer printing, sublimat

  • Answered by AI

Interview Preparation Tips

Round: Resume Shortlist
Experience: Normal introduction with hr than my family back ground
Tips: be calm

Round: Technical Interview
Experience: That was good my strength and base is dyeing .i have sourced the fabric from all corners of india .it was good
Tips: Do not lie be straigjt .telm them truth and be confident

Fabric Manager Interview Questions asked at other Companies

Q1. complete process of dyeing to printing
View answer (1)

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Not Selected

I applied via campus placement at Vidya Jyothi Institute of Technology, Hyderabad and was interviewed in Dec 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Its was moderate , basic questions and can written based on the cluster

Round 2 - Aptitude Test 

It was easy its an combination of aptitude and gaming questions

Round 3 - Technical 

(11 Questions)

  • Q1. What is Java, and why is it considered platform-independent?
  • Ans. 

    Java is a programming language known for its platform independence due to its ability to run on any device with a Java Virtual Machine (JVM).

    • Java is a high-level programming language developed by Sun Microsystems.

    • It is considered platform-independent because Java programs are compiled into bytecode that can run on any device with a JVM.

    • JVM acts as an interpreter that translates the bytecode into machine code specific t...

  • Answered by AI
  • Q2. What are the differences between method overloading and method overriding?
  • Ans. 

    Method overloading involves multiple methods in the same class with the same name but different parameters. Method overriding involves a subclass providing a specific implementation of a method that is already provided by its superclass.

    • Method overloading is resolved at compile time based on the method signature, while method overriding is resolved at runtime based on the object type.

    • Method overloading is used to incre...

  • Answered by AI
  • Q3. What is the program for checking if a string is a palindrome?
  • Ans. 

    A program to check if a string is a palindrome involves comparing the string with its reverse.

    • Iterate through the string from both ends and compare characters.

    • If all characters match, the string is a palindrome.

    • Examples: 'radar' is a palindrome, 'hello' is not.

  • Answered by AI
  • Q4. Program for checking if given number is prime or not ?
  • Ans. 

    A program to check if a given number is prime or not.

    • Iterate from 2 to square root of the number and check for divisibility

    • If the number is divisible by any number other than 1 and itself, it is not prime

    • Optimization: Check divisibility only up to square root of the number

  • Answered by AI
  • Q5. What are the different types of Structured query Languages (SqL)?
  • Ans. 

    Different types of SQL include MySQL, PostgreSQL, SQLite, Oracle SQL, and Microsoft SQL Server.

    • MySQL - widely used open-source SQL database management system

    • PostgreSQL - advanced open-source SQL database management system

    • SQLite - self-contained, serverless, zero-configuration SQL database engine

    • Oracle SQL - proprietary SQL database management system by Oracle Corporation

    • Microsoft SQL Server - relational database manage

  • Answered by AI
  • Q6. Given an scenario to write sql query ?
  • Q7. An aptitude question based on time and work
  • Q8. What is the code for calculating the length of a rectangle given its breadth and area?
  • Ans. 

    The code for calculating the length of a rectangle given its breadth and area involves dividing the area by the breadth.

    • Calculate length = Area / Breadth

    • For example, if the breadth is 5 and the area is 20, then the length would be 20 / 5 = 4

  • Answered by AI
  • Q9. What are the different types of data types in Java?
  • Ans. 

    Java has primitive data types (int, double, boolean, etc.) and reference data types (arrays, classes, interfaces, etc.)

    • Primitive data types include int, double, boolean, char, etc.

    • Reference data types include arrays, classes, interfaces, etc.

    • Examples: int num = 10; double price = 19.99; boolean isTrue = true; String name = "John";

  • Answered by AI
  • Q10. What are the differences between the Java Virtual Machine (JVM), Java Runtime Environment (JRE), and Java Development Kit (JDK)?
  • Ans. 

    JVM executes Java bytecode, JRE includes JVM and libraries, JDK includes JRE and development tools.

    • JVM is responsible for executing Java bytecode and providing a runtime environment.

    • JRE includes JVM along with libraries and other components necessary to run Java applications.

    • JDK includes JRE and development tools like compilers and debuggers for creating Java applications.

    • JDK is required for developing Java application...

  • Answered by AI
  • Q11. What is a primary key in SQL?
  • Ans. 

    A primary key in SQL is a unique identifier for each record in a table.

    • Primary key ensures each record in a table is unique

    • It can be a single column or a combination of columns

    • Primary key values cannot be NULL

    • Example: 'id' column in a 'users' table

  • Answered by AI
Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Run time polymorphism code
  • Q2. Linked list code
  • Q3. Deep copy shallow copy differences
  • Ans. 

    Deep copy creates a new copy of an object with its own unique memory space, while shallow copy creates a new object that references the same memory locations as the original object.

    • Deep copy duplicates all nested objects, while shallow copy only duplicates the references to nested objects.

    • Deep copy ensures that changes to the copied object do not affect the original object, while shallow copy may lead to unintended sid...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. More deep questions about polymorphism code
  • Q2. Code for interchange of strings without strcpy
  • Ans. 

    Use a loop to swap characters of two strings without using strcpy function.

    • Create two arrays of characters to store the strings

    • Use a loop to iterate through each character of the strings and swap them

    • Ensure to handle cases where strings have different lengths

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - please prepare oops concept and data structure well because its easy for first round but for second round its too difficult - the interviewer was so irritating and asked very stupid wuestions
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Dec 2024. There were 10 interview rounds.

Round 1 - Aptitude Test 

Any ideas for an aptitude test?

Round 2 - Technical 

(2 Questions)

  • Q1. You have a good network connection.
  • Q2. Which individuals are currently employed?
Round 3 - Case Study 

What is education in place?

Round 4 - Coding Test 

What is a SQL Server?

Round 5 - Group Discussion 

Effective communication and any suggestion.

Round 6 - HR 

(2 Questions)

  • Q1. What is your name?
  • Q2. What is your educational background?
Round 7 - HR 

(2 Questions)

  • Q1. What type of work does the Deloitte company engage in?
  • Q2. What type of work does Deloitte engage in?
Round 8 - HR 

(2 Questions)

  • Q1. What is your father's name?
  • Q2. What is your father's name?
Round 9 - Assignment 

Engage with any assignment provided.

Round 10 - Assignment 

Please provide any assignments you have.

Interview Preparation Tips

Interview preparation tips for other job seekers - Yes I am interested in this job
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. When is my interview time?
  • Q2. What documents should I prepare to bring with me?
  • Q3. What would be good for the company?
  • Q4. Will the company be with me forever?
  • Q5. Will the company be with me in my ups and downs?

Interview Preparation Tips

Interview preparation tips for other job seekers - I have to your ITI with electrician rate and I done 1year computer diploma with DOAP course
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Aptitude Test 

It was pretty good experience

Round 2 - One-on-one 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. What was your memorable day
Round 3 - One-on-one 

(2 Questions)

  • Q1. Introduction about myself
  • Q2. Tell me about your previous company

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident always and believe in yourself
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
No response

I applied via Approached by Company and was interviewed in Dec 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

I have given 4 rounds of WNS and was selected. They congratulated me for being selected and then asked me the documents. But later HR and Interviewer both stopped picking my call and then told me after 15-20 days we are putting you on hold and not proceeding with your application

Round 2 - Technical 

(1 Question)

  • Q1. Why you are taking less salary
Round 3 - One-on-one 

(2 Questions)

  • Q1. Why are you leaving your current job
  • Q2. NA
Round 4 - HR 

(1 Question)

  • Q1. Why are you not satisfied by your current job
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in Nov 2024. There were 4 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Basic question on the tool I use in previous company and ask question on the components of it.
Round 2 - Technical 

(1 Question)

  • Q1. More on what is my role and managerial round.
Round 3 - Technical 

(1 Question)

  • Q1. 2 hour long interview with a panel of 4. Possibly every single question that can be asked and repeatedly same things. They tried understanding the process and functions elaborately way too much which was ...
Round 4 - Technical 

(1 Question)

  • Q1. Everything was already asked. But they need to drench and waste time of the candidate and themselves so they set up another round of technical to ask the same questions again and again.

Interview Preparation Tips

Interview preparation tips for other job seekers - Please don't waste your time and energy with this company. They are not serious about hiring good candidates. They just want to know what their Peer banks are doing by setting up interviews with potential candidates. And after getting all the info they can take they will ghost you by not picking up your call or answering your mail.
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 Nov 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

The Aptitude Test session accesses mathematical and logical reasoning abilities

Round 2 - Technical 

(6 Questions)

  • Q1. What is Vlookup
  • Q2. Some IF else Question in Excel
  • Q3. What does your day in your previous organization look like?
  • Q4. Could you share the technical skills you possess?
  • Q5. Can you explain what a Pivot Table is?
  • Q6. Find the Highest-paid employee in each department along with their salary and department name.

Interview Preparation Tips

Topics to prepare for Nagarro Data Analyst interview:
  • SQL
  • Excel
  • Problem Solving
  • PowerBI
  • SQL Queries
Interview preparation tips for other job seekers - Practice common interviews and scenarios, especially for your role.
Be prepared to discuss past challenges and how did you overcome.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Sql order of execution
  • Q2. Sql question on finding highest salary for each employee where employees and department table are given in each department.

Interview Preparation Tips

Topics to prepare for Ernst & Young Data Engineer interview:
  • SQL
  • Python
  • Pyspark

Shades Of India Crafts Interview FAQs

How to prepare for Shades Of India Crafts 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 Shades Of India Crafts. The most common topics and skills that interviewers at Shades Of India Crafts expect are Brand Marketing, Communication Skills, Conceptualization, Data Analysis and Design.
What are the top questions asked in Shades Of India Crafts interview?

Some of the top questions asked at the Shades Of India Crafts interview -

  1. complete process of dyeing to print...read more
  2. Price and suppliers of fabr...read more
  3. Method of print...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Cognizant Interview Questions
3.8
 • 5.5k Interviews
Deloitte Interview Questions
3.8
 • 2.8k Interviews
BYJU'S Interview Questions
3.1
 • 2.2k Interviews
Teleperformance Interview Questions
3.9
 • 1.7k Interviews
Reliance Retail Interview Questions
3.9
 • 1.5k Interviews
Ernst & Young Interview Questions
3.5
 • 1.1k Interviews
WNS Interview Questions
3.4
 • 954 Interviews
Google Interview Questions
4.4
 • 830 Interviews
Nagarro Interview Questions
4.0
 • 756 Interviews
View all

Shades Of India Crafts Reviews and Ratings

based on 17 reviews

3.9/5

Rating in categories

3.4

Skill development

3.6

Work-Life balance

4.3

Salary & Benefits

3.8

Job Security

4.2

Company culture

3.8

Promotions/Appraisal

4.1

Work Satisfaction

Explore 17 Reviews and Ratings
Assistant Manager
5 salaries
unlock blur

₹4.2 L/yr - ₹6 L/yr

Assistant Merchant
5 salaries
unlock blur

₹2.8 L/yr - ₹3.9 L/yr

Accounts Manager
4 salaries
unlock blur

₹6.2 L/yr - ₹6.6 L/yr

Merchandiser
4 salaries
unlock blur

₹3.3 L/yr - ₹6.5 L/yr

Warehouse Manager
4 salaries
unlock blur

₹4.8 L/yr - ₹6 L/yr

Explore more salaries
Compare Shades Of India Crafts with

Cognizant

3.8
Compare

Teleperformance

3.9
Compare

Reliance Retail

3.9
Compare

iEnergizer

4.7
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