Upload Button Icon Add office photos

Filter interviews by

Satluj Spintex Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 - One-on-one 

(5 Questions)

  • Q1. Job ceo interview business development question
  • Q2. How to development outlet
  • Ans. 

    Developing outlets involves strategic planning, location selection, design, and marketing to attract customers.

    • Conduct market research to identify potential locations for outlets.

    • Design outlets to reflect brand image and attract target customers.

    • Implement marketing strategies to promote outlets and drive foot traffic.

    • Train staff to provide excellent customer service and enhance customer experience.

  • Answered by AI
  • Q3. How sales increase business in company
  • Ans. 

    Sales increase business by generating revenue through selling products or services to customers.

    • Sales help generate revenue which is essential for the growth and sustainability of a business

    • Increased sales can lead to higher profits and market share

    • Sales can also help in building customer relationships and loyalty

    • Effective sales strategies can help in reaching new markets and expanding the business

    • Sales data can provid...

  • Answered by AI
  • Q4. Sales officer what job this company
  • Q5. Only secondary generate market

Interview Preparation Tips

Interview preparation tips for other job seekers - Sure
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed in May 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Coding Test 

The first step is to pass successfully for different tech stacks.

Round 3 - Technical 

(2 Questions)

  • Q1. Please preview your work experience history after you have passed all challenges and I would recommend checking your availability.
  • Q2. Can you summarize your work experience and a key accomplishment in each role?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Campus Placement and was interviewed in Jan 2023. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Technical 

(3 Questions)

  • Q1. Introduce yourself , tell me about marketing,
  • Q2. Sell me something,hr type questions
  • Q3. How you convince the customer
  • Ans. 

    I convince the customer by understanding their needs, providing relevant information, and building trust.

    • Listen actively to their concerns and needs

    • Provide relevant information and options

    • Address any objections or doubts they may have

    • Build trust through honesty and transparency

    • Highlight the benefits and value of the service

    • Offer personalized solutions

    • Follow up and provide ongoing support

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic marketing questions, they are seeing your attitude towards the job

I applied via LinkedIn and was interviewed in Feb 2022. There was 1 interview round.

Round 1 - One-on-one 

(4 Questions)

  • Q1. Do you have any prior experience?
  • Q2. What do you mean by human resources?
  • Ans. 

    Human resources refer to the people who make up the workforce of an organization and the management of their skills, knowledge, and abilities.

    • Human resources involve managing and developing the workforce of an organization

    • It includes recruitment, training, performance management, and employee relations

    • HR also deals with compensation and benefits, compliance with labor laws, and workplace safety

    • Effective HR practices ca...

  • Answered by AI
  • Q3. What can you tell us about country Inn?
  • Q4. What are your weaknesses?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with answers of basic questions which you can find through internet.

I applied via Naukri.com and was interviewed in Jun 2022. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Difference between ENTRYPOINT, CMD, and RUN in docker. Can we use RUN instead of CMD in a Dockerfile? Difference between ARGS and ENV.
  • Ans. 

    Explaining the differences between ENTRYPOINT, CMD, and RUN in Docker and the usage of ARGS and ENV.

    • ENTRYPOINT is the command that runs when the container starts

    • CMD is the default command that runs after ENTRYPOINT, can be overridden

    • RUN executes commands during the build process

    • RUN can be used instead of CMD, but it will not be the default command

    • ARGS are used to pass arguments to the Dockerfile during build time

    • ENV se...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Try to answer in the bookish language because the interviewer might not be experienced in understanding your points.
In my case, I have experience with azure but he is asking me about AWS concepts because he only worked on AWS.

Skills evaluated in this interview

Round 1 - Coding Test 

Coding restt

Round 2 - Group Discussion 

GD

Round 3 - One-on-one 

(1 Question)

  • Q1. Interview questions asked related to domain

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep applying to get perfect internship

Interview Questionnaire 

7 Questions

  • Q1. Tell me about your self
  • Q2. What you know about cmq cgm
  • Q3. Tell me about your educational background and family background
  • Q4. What is your working experience
  • Q5. Some questions related shipping marine transportations
  • Q6. What is container
  • Ans. 

    A container is a standardized unit of software that packages up code and all its dependencies so the application runs quickly and reliably from one computing environment to another.

    • Containers are lightweight and portable.

    • They allow for easy deployment and scaling of applications.

    • They isolate applications from the underlying infrastructure.

    • Examples of container technologies include Docker and Kubernetes.

  • Answered by AI
  • Q7. What is import and export
  • Ans. 

    Import and export refer to the movement of goods and services across international borders.

    • Import is the process of bringing goods or services into a country from another country.

    • Export is the process of sending goods or services from one country to another country.

    • Import and export are important for international trade and economic growth.

    • Examples of imported goods include electronics, clothing, and food products.

    • Exam...

  • Answered by AI

Skills evaluated in this interview

I was interviewed in Mar 2021.

Round 1 - Coding Test 

(4 Questions)

Round duration - 120 minutes
Round difficulty - Medium

Timing was 9: 30 AM. Platform was quite good and easy to understand.

  • Q1. Reverse Only Letters

    You are given a string, ‘S’. You need to reverse the string where characters that are not an alphabet stay in the same place, and the rest reverse their positions.

    Eg: “a-bcd” become...

  • Ans. Two Pointer Approach

    Approach: Just like in order to reverse a string ‘S’ = “abcd”, we can can swap(S[0], S[3]) and swap(S[1],S[2]) to get new string “dcba”.

     

    Similarly in this problem, we do the same using two pointers while ignoring the non-letter characters.

     

    Eg: S = “a-bcd” we swap(S[0], S[4]) and swap(S[2], S[3]) to get the result.

     

    Algorithm:

    1. In the given string what we can do is maintain two variables ...
  • Answered by CodingNinjas
  • Q2. Find duplicates in array

    You are given an array/list 'ARR' consisting of N integers, which contains elements only in the range 0 to N - 1. Some of the elements may be repeated in 'ARR'. You...

  • Ans. Sorting
    1. The most trivial approach would be to sort the array/list ‘ARR’ and then return the duplicates.
    2. After sorting the array in non-decreasing order, do the following for all the elements from i = 0 to i = n - 2:
      • If ARR[i] == ARR[i + 1], then add ARR[i] to the the output list.
      • While ARR[i] == ARR[i + 1], do i = i + 1, since we don’t want to add the same duplicate elements again and again.
      • Else continue.
    3. After this loop, w...
  • Answered by CodingNinjas
  • Q3. Pancake Sorting

    You are given an array of integers ‘ARR’. Sort the array by performing a series of pancake flips. In one pancake flip, we do the following steps:

    Choose an integer ‘K’ where 1 <= ‘K’ &l...
  • Ans. Pancake Sorting.

    The main idea to solve this problem is that if we want to place a number at an index, then we need a maximum of 2 moves that are:- 

     

    1. Bring it to the 0th index by reversing the prefix array till its index, e.g., if you chose some index K, then reverse the array from 0th index till Kth index.
    2. Reverse the prefix array from the 0th index to the index where we want to place it.
    • The main algorithm runs...
  • Answered by CodingNinjas
  • Q4. Sum of Digits

    Ninja is given an integer ‘N’. One day Ninja decides to do the sum of all digits and replace the ‘N’ with the sum of digits until it becomes less than 10. Ninja wants to find what will be the...

  • Ans. Brute Force Approach

    The main idea is to do the sum of digits until it becomes less than 10.

     

    Algorithm:

    • Add a condition if N is less than 10 then return N.
    • Do the sum of all digits.
    • Make a recursive call and pass the sum of digits as N.
    • Return the answer which you get from a recursive call.
    Space Complexity: O(1)Explanation:

    O(1).

     

    We are using constant space to solve this.

    Time Complexity: OtherExplanation:

    O(log10(...

  • Answered by CodingNinjas
Round 2 - Video Call 

(2 Questions)

Round duration - 30 minutes
Round difficulty - Medium

Timing was 9:30 AM. The interviewer was very nice.

  • Q1. Fibonacci Number

    You are given an integer, all you have to do is to find whether this number is a Fibonacci number or not.

    Fn is said to be a Fibonacci sequence such that each number in Fn is the sum of ...

  • Ans. Brute Force

    The basic idea is to keep generating Fibonacci numbers until we find a number equal to the given number or the generated number becomes greater than the given number. If the generated number is equal to the given number then it means the given number is a Fibonacci number. Otherwise, it is not a Fibonacci number.

     

    The steps are as follows:

     

    1. Check if ‘N’ is 0 or 1, return true.
    2. Create two variables ‘a’...
  • Answered by CodingNinjas
  • Q2. SQL Question

    Write SQL query to find second highest salary from a Table.

Round 3 - Video Call 

(2 Questions)

Round duration - 30 Minutes
Round difficulty - Medium

Timing was 12 PM. Interviewer was not good.

  • Q1. Count Frequency

    You are given a string 'S' of length 'N', you need to find the frequency of each of the characters from ‘a’ to ‘z’ in the given string.

    Example :

    Given 'S' : abcd...
  • Ans. Count Frequency

    Since there are just 26 lower case characters, we can use an array of size 26 to store the result.

     

    Here is the algorithm : 

     

    1. Create an array (say, ‘FREQ’), where 0-th index stores the frequency of ‘a’, 1st index stores the frequency of ‘b’ and so on. So the last index i.e. 25th index stores the frequency of ‘z’.
    2. Run a for loop from 0 to ‘N’ - 1 (say, iterator ‘i’), on the string and do the f...
  • Answered by CodingNinjas
  • Q2. DBMS Question

    What is Normalization and 3NF?

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in HyderabadEligibility criteriaAbove 8 CGPAMAQ Software interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic Programming, DBMS, OSTime required to prepare for the interview - 2.5 monthsInterview preparation tips for other job seekers

Tip 1 : Do 2 projects.
Tip 2 : Practice data structures programs.
Tip 3 : Take a course on Coding Ninjas.

Application resume tips for other job seekers

Tip 1 : Keep it short.
Tip 2 : Do not put false things on resume.

Final outcome of the interviewRejected

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Aug 2021. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Tell me about self
  • Q2. What do you know about Testbook
  • Ans. 

    Testbook is an online learning platform that provides comprehensive test preparation for various competitive exams.

    • Testbook offers a wide range of courses and study materials for exams like SSC, Banking, Railways, and more.

    • They provide mock tests and practice questions to help students prepare effectively.

    • Testbook also offers video lectures and live classes conducted by experienced faculty.

    • The platform has a user-frien...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - You will get two calls in interview process first call will be chill call she or he will brief about what the job is for and most importantly he/she will also guide about what question will be asked to you in 2nd round i.e HR Round it will be scheduled next day.So if you get to know what would be asked in first round then it will be easy to prepare and ready a script for it and perform,so i think it was an easy process for me you can also practice same but it might differ person to person

I applied via Naukri.com and was interviewed in Aug 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Give a presentation on .net framework
  • Ans. 

    The .NET Framework is a software framework developed by Microsoft that runs primarily on Microsoft Windows.

    • It provides a large library of pre-coded solutions to common programming problems.

    • It supports multiple programming languages such as C#, VB.NET, F# and more.

    • It includes a runtime environment, a set of libraries, and a compiler.

    • It allows developers to create Windows desktop applications, web applications, and servi...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview was mainly on technical skills along with communication skills. For communication skills I presented the topic in a structured manner. For technical skills I used real life examples.

Tell us how to improve this page.

Interview Questions from Similar Companies

Sheenlac Paints Interview Questions
4.6
 • 195 Interviews
ABC Consultants Interview Questions
3.9
 • 167 Interviews
Chegg Interview Questions
4.1
 • 150 Interviews
Nokia Networks Interview Questions
4.3
 • 109 Interviews
Testbook.com Interview Questions
3.6
 • 95 Interviews
Tracxn Interview Questions
3.2
 • 94 Interviews
MAQ Software Interview Questions
2.0
 • 90 Interviews
View all

Satluj Spintex Reviews and Ratings

based on 4 reviews

4.2/5

Rating in categories

3.6

Skill development

4.2

Work-Life balance

3.7

Salary & Benefits

3.4

Job Security

3.7

Company culture

3.7

Promotions/Appraisal

3.3

Work Satisfaction

Explore 4 Reviews and Ratings
Vice President
3 salaries
unlock blur

₹18 L/yr - ₹25 L/yr

Deputy General Manager Production
3 salaries
unlock blur

₹10.1 L/yr - ₹10.1 L/yr

Textile Inspector
3 salaries
unlock blur

₹1.5 L/yr - ₹1.5 L/yr

Explore more salaries
Compare Satluj Spintex with

State Street Syntel

3.7
Compare

Nokia Networks

4.3
Compare

Sterling & Wilson

4.2
Compare

AXA Business Services

3.9
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