Upload Button Icon Add office photos

Filter interviews by

Global Nonwovens Shift Executive Interview Questions and Answers

Updated 3 Apr 2024

Global Nonwovens Shift Executive Interview Experiences

1 interview found

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

I applied via Approached by Company and was interviewed before Apr 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Transformer and it's protection
  • Ans. 

    Transformer protection is essential to prevent damage and ensure safe operation.

    • Use of Buchholz relay for detecting internal faults

    • Overcurrent protection to prevent damage from excessive current

    • Differential protection to detect internal faults

    • Temperature monitoring to prevent overheating

    • Gas monitoring for detecting abnormal gas levels

  • Answered by AI
  • Q2. Di,do,ai,ao, signals

Interview questions from similar companies

I applied via Referral and was interviewed before Sep 2019. There were 3 interview rounds.

Interview Questionnaire 

8 Questions

  • Q1. Java logical question
  • Q2. Webdriver architecture
  • Q3. Framework, file and folder structure
  • Q4. Your approach to tackle dynamic objects
  • Ans. 

    I approach dynamic objects by analyzing their behavior and adapting my approach accordingly.

    • I start by understanding the nature of the dynamic object and its expected behavior

    • I then analyze its movement patterns and any potential obstacles or hazards

    • Based on this analysis, I adapt my approach to ensure safe and efficient interaction with the dynamic object

    • For example, when working with a moving conveyor belt, I would e...

  • Answered by AI
  • Q5. Implicit and explicit wait in selenium
  • Ans. 

    Implicit and explicit wait are two types of wait in Selenium used to synchronize the test execution with the application.

    • Implicit wait is used to set a default waiting time for the web elements to load before throwing an exception.

    • Explicit wait is used to wait for a specific condition to occur before proceeding with the test execution.

    • Implicit wait is set globally for the entire test script while explicit wait is set f...

  • Answered by AI
  • Q6. Java oops concepts
  • Q7. Sql queries related to joins
  • Q8. Basic Unix commands

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and try to connect yours answers with some example of your project.

Skills evaluated in this interview

I applied via Referral and was interviewed in May 2021. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Ssis, sql server, power bi
  • Q2. Dml, ddl, dcl

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared for technical question. Specifically fot technology
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Design a system like youtube
  • Ans. 

    Design a system similar to YouTube for video sharing and streaming

    • Implement user authentication and authorization for uploading and viewing videos

    • Create a database to store video metadata, user information, and comments

    • Develop a recommendation algorithm based on user preferences and viewing history

    • Utilize a content delivery network (CDN) for efficient video streaming

    • Include features like video monetization, live stream

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Project related
Round 2 - Technical 

(1 Question)

  • Q1. Scenario based question on kafka

Interview Questionnaire 

2 Questions

  • Q1. Java 8 features with examples
  • Ans. 

    Java 8 introduced several new features including lambda expressions, streams, and default methods.

    • Lambda expressions allow for functional programming and concise code.

    • Streams provide a way to process collections of data in a parallel and functional manner.

    • Default methods allow for adding new functionality to interfaces without breaking existing implementations.

    • Method references provide a way to refer to methods without...

  • Answered by AI
  • Q2. How to write Customised immutable java class
  • Ans. 

    Customised immutable java class can be written by declaring all fields as final and not providing any setters.

    • Declare all fields as final

    • Do not provide any setters

    • Provide a constructor to initialize all fields

    • Override equals() and hashCode() methods

    • Make the class final

  • Answered by AI

Skills evaluated in this interview

I applied via Company Website and was interviewed in Oct 2019. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. As mentioned below

Interview Preparation Tips

Interview preparation tips for other job seekers - Total 3 rounds of interview:
1. HR round - mainly on reason for leaving current job, about relevant experience, communication and package expectation.
2. Operation round 1 - communication, confidence, profile matching v/s JD, xfactor to hire you from other people who have applied.
3. Operation round 2 - projects handled, MS Office suite expertise, stake holder management, flexibility in shifts & maturity level.

I applied via Campus Placement and was interviewed before Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Sell this watch
  • Ans. 

    This watch is a perfect blend of style and functionality, making it a must-have accessory for any occasion.

    • Sleek and stylish design

    • High-quality materials used in construction

    • Water-resistant and durable

    • Accurate timekeeping

    • Suitable for both formal and casual occasions

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself and be bold and well dressed

I applied via Company Website and was interviewed before Oct 2019. There were 3 interview rounds.

Interview Questionnaire 

11 Questions

  • Q1. 1. Tell me something about your self.
  • Q2. 2. How to replace male with female in Oracle
  • Ans. 

    To replace male with female in Oracle, use the UPDATE statement with the SET clause.

    • Use the UPDATE statement with the SET clause to replace male with female in Oracle

    • Example: UPDATE employees SET gender='female' WHERE gender='male'

    • Make sure to specify the table name and column name correctly

    • Use WHERE clause to specify the condition for replacement

  • Answered by AI
  • Q3. 3.write to query to display 3rd highest salary
  • Ans. 

    Query to display 3rd highest salary

    • Use the ORDER BY clause to sort the salaries in descending order

    • Use the LIMIT clause to limit the result to the third row

    • Use a subquery to exclude the top two salaries

  • Answered by AI
  • Q4. 4.what is difference between delete and truncate
  • Ans. 

    Delete removes specific rows while truncate removes all rows from a table.

    • Delete is a DML command while truncate is a DDL command.

    • Delete is slower than truncate as it logs each row deletion while truncate does not.

    • Delete can be rolled back while truncate cannot be rolled back.

    • Delete can have a WHERE clause to specify which rows to delete while truncate removes all rows.

    • Delete does not reset the identity of the table wh

  • Answered by AI
  • Q5. 5.what is cursor and explain type of cursor
  • Ans. 

    A cursor is a database object used to manipulate data in a result set.

    • A cursor is used to traverse through a result set one row at a time.

    • There are two types of cursors: static and dynamic.

    • Static cursors are read-only and scroll forward only.

    • Dynamic cursors are updatable and can scroll in any direction.

    • Cursors can be used in stored procedures, triggers, and functions.

  • Answered by AI
  • Q6. 6. What is difference between procedure and function
  • Ans. 

    Procedure is a set of instructions that performs a specific task, while function returns a value after performing a task.

    • Procedure does not return a value, while function does.

    • Functions can be called from within expressions, while procedures cannot.

    • Functions can have parameters passed to them, while procedures can have both parameters and arguments.

    • Examples of procedures include printing to the console, while examples ...

  • Answered by AI
  • Q7. 7.write command to display secod last line of file
  • Ans. 

    Display second last line of a file using command line.

    • Use the tail command with -n option to display last two lines of the file.

    • Then use head command with -n option to display the second last line.

    • Example: tail -n 2 file.txt | head -n 1

  • Answered by AI
  • Q8. 8. Write command to replace Sam with vam on 5th line
  • Ans. 

    Command to replace Sam with vam on 5th line

    • sed '5s/Sam/vam/' filename.txt

    • awk 'NR==5 {sub(/Sam/, "vam")} 1' filename.txt

  • Answered by AI
  • Q9. 9. Write command to display blank line in file
  • Ans. 

    Command to display blank line in file

    • Use echo command with empty quotes to create a blank line in a file

    • Syntax: echo '' >> filename

    • Alternatively, use printf command with newline character

    • Syntax: printf ' ' >> filename

  • Answered by AI
  • Q10. 10. What is difference between soft link and hard link
  • Ans. 

    Soft links are pointers to the original file while hard links are additional names for the same file.

    • Soft links are created using the 'ln -s' command while hard links are created using the 'ln' command.

    • Soft links can point to files on different file systems while hard links cannot.

    • Deleting the original file will render a soft link useless while a hard link will still work.

    • Soft links have different inode numbers while h...

  • Answered by AI
  • Q11. 11. write command to display biggest file on server
  • Ans. 

    Use the 'du' command to display biggest file on server.

    • Open terminal or SSH into server

    • Navigate to directory to search from

    • Run 'du -a . | sort -n -r | head -n 1' command

    • The output will display the biggest file on the server

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident during interview no matter weather you know answer or not.

Skills evaluated in this interview

I applied via Naukri.com and was interviewed before Apr 2021. 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 - HR 

(6 Questions)

  • Q1. What are your salary expectations?
  • Q2. Share details of your previous job.
  • Q3. Why should we hire you?
  • Q4. Why are you looking for a change?
  • Q5. What are your strengths and weaknesses?
  • Q6. Tell me about yourself.
Round 3 - Technical 

(1 Question)

  • Q1. Technical questions related to my profession

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy approachable and fast action

Global Nonwovens Interview FAQs

How many rounds are there in Global Nonwovens Shift Executive interview?
Global Nonwovens interview process usually has 1 rounds. The most common rounds in the Global Nonwovens interview process are Technical.
What are the top questions asked in Global Nonwovens Shift Executive interview?

Some of the top questions asked at the Global Nonwovens Shift Executive interview -

  1. Transformer and it's protect...read more
  2. Di,do,ai,ao, sign...read more

Tell us how to improve this page.

Global Nonwovens Shift Executive Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Citicorp Interview Questions
3.7
 • 568 Interviews
HSBC Group Interview Questions
3.9
 • 486 Interviews
American Express Interview Questions
4.2
 • 361 Interviews
BNY Interview Questions
3.9
 • 345 Interviews
UBS Interview Questions
3.9
 • 333 Interviews
Morgan Stanley Interview Questions
3.7
 • 291 Interviews
Morningstar Interview Questions
3.9
 • 241 Interviews
FactSet Interview Questions
3.9
 • 206 Interviews
View all
Global Nonwovens Shift Executive Salary
based on 4 salaries
₹3.1 L/yr - ₹4 L/yr
31% less than the average Shift Executive Salary in India
View more details

Global Nonwovens Shift Executive Reviews and Ratings

based on 2 reviews

3.5/5

Rating in categories

4.0

Skill development

2.0

Work-life balance

3.5

Salary

3.0

Job security

2.5

Company culture

2.0

Promotions

4.0

Work satisfaction

Explore 2 Reviews and Ratings
Foreman
7 salaries
unlock blur

₹3 L/yr - ₹5.4 L/yr

Executive
5 salaries
unlock blur

₹3.6 L/yr - ₹4.8 L/yr

QA Executive
5 salaries
unlock blur

₹2.8 L/yr - ₹3.7 L/yr

Junior Technician
5 salaries
unlock blur

₹1.9 L/yr - ₹4.1 L/yr

Assistant Manager
4 salaries
unlock blur

₹7.5 L/yr - ₹9.5 L/yr

Explore more salaries
Compare Global Nonwovens with

HSBC Group

3.9
Compare

Cholamandalam Investment & Finance

3.9
Compare

Citicorp

3.7
Compare

BNY

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