Upload Button Icon Add office photos

Filter interviews by

Airworks Store Inspector Interview Questions and Answers

Updated 2 May 2022

Airworks Store Inspector Interview Experiences

1 interview found

I applied via Approached by Company and was interviewed in Nov 2021. There was 1 interview round.

Round 1 - HR 

(1 Question)

  • Q1. Many questions related to store officer.

Interview Preparation Tips

Interview preparation tips for other job seekers - You can do it. Be confident on yourself. Success is on your way. Grab it. Enjoy it.

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Unica technical questions
  • Q2. What is flow chart
Round 2 - One-on-one 

(2 Questions)

  • Q1. Technical ask about macro and treatment code
  • Q2. Campaign attributes

I applied via Company Website and was interviewed in Sep 2021. There was 1 interview round.

Interview Questionnaire 

5 Questions

  • Q1. 1. What is ohm's Law
  • Ans. 

    Ohm's Law states that the current flowing through a conductor is directly proportional to the voltage applied across it and inversely proportional to its resistance.

    • Ohm's Law is expressed as V = IR, where V is the voltage, I is the current, and R is the resistance.

    • It helps in understanding the relationship between voltage, current, and resistance in an electrical circuit.

    • For example, if the voltage is increased while t...

  • Answered by AI
  • Q2. What is Linux Os
  • Ans. 

    Linux OS is an open-source operating system based on the Unix kernel.

    • Linux OS is known for its stability, security, and flexibility.

    • It is widely used in servers, embedded systems, and mobile devices.

    • Examples of popular Linux distributions include Ubuntu, Fedora, and CentOS.

  • Answered by AI
  • Q3. Full form of CCD/TI Camera
  • Ans. 

    CCD stands for Charge-Coupled Device and TI Camera stands for Texas Instruments Camera.

    • CCD is a type of image sensor used in digital cameras and video cameras.

    • TI Camera refers to cameras developed by Texas Instruments, a technology company.

    • CCD/TI Cameras are commonly used in various applications such as surveillance, photography, and scientific imaging.

    • CCD/TI Cameras convert light into electrical signals for capturing ...

  • Answered by AI
  • Q4. Whic command use for make directory in Linux system
  • Ans. 

    The command used to make a directory in Linux is 'mkdir'.

    • The 'mkdir' command is used to create a new directory in Linux.

    • It can be used with various options to set permissions, create multiple directories, etc.

    • For example, 'mkdir directory_name' creates a new directory with the specified name.

    • To create multiple directories at once, use 'mkdir dir1 dir2 dir3'.

    • To create directories with specific permissions, use 'mkdir -m

  • Answered by AI
  • Q5. Which Service use for local server in parrot os
  • Ans. 

    The service used for local server in Parrot OS is Apache.

    • Apache is a popular open-source web server software.

    • It is widely used for hosting websites and serving web content.

    • Apache provides a robust and secure environment for running web applications.

    • It supports various features like virtual hosting, SSL/TLS encryption, and URL rewriting.

    • Parrot OS includes Apache as the default web server for local development.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice and repeat,be on time,

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Aug 2023. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Difference between union and union all in SQL?
  • Ans. 

    Union combines and removes duplicates, Union All combines without removing duplicates.

    • Union combines result sets and removes duplicates

    • Union All combines result sets without removing duplicates

    • Union is slower than Union All as it involves removing duplicates

    • Example: SELECT column1 FROM table1 UNION SELECT column1 FROM table2;

    • Example: SELECT column1 FROM table1 UNION ALL SELECT column1 FROM table2;

  • Answered by AI
  • Q2. How to show top 5 in pandas?
  • Ans. 

    To show top 5 in pandas, use the nlargest() function.

    • Use the nlargest() function with the 'n' parameter set to 5 to get the top 5 values in a pandas DataFrame.

    • For example: df['column_name'].nlargest(5) will return the top 5 values in the specified column.

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. If we have 3 numerical columns, which chart is a better representation these column?
  • Ans. 

    A scatter plot is a better representation for 3 numerical columns.

    • Use a scatter plot to show the relationship between the numerical columns.

    • Scatter plots are effective for visualizing correlations and patterns in data.

    • Each point on the plot represents a data point with values from all 3 columns.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Omnicom Media Group Data Analyst interview:
  • SQL Server
  • Pandas
  • Power Bi

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Easy
Process Duration
-
Result
No response

I applied via LinkedIn and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What are synthetic Events?
  • Ans. 

    Synthetic Events are events that are created by the browser to mimic real user events.

    • Synthetic Events are used in React to handle events in a consistent manner across different browsers.

    • They are created by React to wrap native browser events and provide additional functionality.

    • Examples include onClick, onChange, and onSubmit events in React.

  • Answered by AI
  • Q2. What is event bubbling?
  • Ans. 

    Event bubbling is the process where an event triggered on a child element is propagated up through its parent elements.

    • Event bubbling allows a single event handler to be attached to a parent element, which will be triggered for all its children.

    • When an event occurs on a child element, it first runs the event handlers on the child, then on its parent, and so on up the DOM tree.

    • Event bubbling can be stopped using event.s

  • Answered by AI

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in May 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell me about your projects
  • Q2. Tell me yourself
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What are SQL Joins?
  • Ans. 

    SQL Joins are used to combine rows from two or more tables based on a related column between them.

    • SQL Joins are used to retrieve data from multiple tables based on a related column between them.

    • Common types of SQL Joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN.

    • Example: SELECT * FROM table1 INNER JOIN table2 ON table1.column = table2.column;

  • Answered by AI
  • Q2. Different functions in Python numpy
  • Ans. 

    Python numpy provides various functions for numerical operations on arrays.

    • numpy.sum() - calculates the sum of array elements

    • numpy.mean() - calculates the mean of array elements

    • numpy.max() - returns the maximum value in an array

    • numpy.min() - returns the minimum value in an array

    • numpy.std() - calculates the standard deviation of array elements

  • Answered by AI

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. All about project management, Scrum Agile, waterfall model
  • Q2. Past experience in details
  • Ans. 

    I have over 5 years of experience managing projects in various industries, including IT, construction, and healthcare.

    • Managed cross-functional teams to successfully deliver projects on time and within budget

    • Developed project plans, timelines, and budgets to ensure project success

    • Implemented project management tools and methodologies to improve efficiency and communication

    • Led stakeholder meetings and provided regular pr...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Interview with APAC CIO, just confirming round 1 details, checking eagerness to join,
  • Q2. Ask quality Q's related to role at the end

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself, explain past projects in details, negotiate with HR if you have multiple offers

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

Interview Questionnaire 

1 Question

  • Q1. Questions relating to previous experience.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and answer positively.

I applied via Campus Placement and was interviewed in Jul 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Questions from SQL, Python, Excel, Tableau and from my Projects

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with your projects properly

Airworks Interview FAQs

How many rounds are there in Airworks Store Inspector interview?
Airworks interview process usually has 1 rounds. The most common rounds in the Airworks interview process are HR.
How to prepare for Airworks Store Inspector 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 Airworks. The most common topics and skills that interviewers at Airworks expect are Aerospace, Aircraft Maintenance, Aviation, Maintenance Engineering and Compliance.

Tell us how to improve this page.

Interview Questions from Similar Companies

Concentric Interview Questions
3.8
 • 36 Interviews
Cogent Interview Questions
3.2
 • 18 Interviews
IPG Mediabrands Interview Questions
3.4
 • 15 Interviews
Xapads Media Interview Questions
4.3
 • 10 Interviews
Creative Group Interview Questions
4.1
 • 9 Interviews
Havas Media Interview Questions
3.5
 • 9 Interviews
View all
Airworks Store Inspector Salary
based on 5 salaries
₹3 L/yr - ₹4.5 L/yr
At par with the average Store Inspector Salary in India
View more details

Airworks Store Inspector Reviews and Ratings

based on 3 reviews

4.6/5

Rating in categories

4.9

Skill development

4.8

Work-life balance

4.6

Salary

4.7

Job security

4.6

Company culture

4.6

Promotions

4.9

Work satisfaction

Explore 3 Reviews and Ratings
Aircraft Maintenance Technician
39 salaries
unlock blur

₹1 L/yr - ₹4.8 L/yr

Assistant Manager
20 salaries
unlock blur

₹6 L/yr - ₹12 L/yr

Deputy Manager
15 salaries
unlock blur

₹9.3 L/yr - ₹25 L/yr

Aircraft Technician
14 salaries
unlock blur

₹2 L/yr - ₹3.5 L/yr

Software Developer
13 salaries
unlock blur

₹5.5 L/yr - ₹13 L/yr

Explore more salaries
Compare Airworks with

Modern V.R. Security Force

4.0
Compare

Omnicom Media Group

2.9
Compare

Cogent

3.2
Compare

Concentric

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