Upload Button Icon Add office photos

Filter interviews by

Shirdi Industries Interview Questions and Answers

Updated 20 Aug 2022

Shirdi Industries Interview Experiences

Popular Designations

2 interviews found

I applied via Naukri.com and was interviewed in Jul 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 - One-on-one 

(2 Questions)

  • Q1. About my last company sintex related questions
  • Q2. Sales Target , Current salary Product's Area

Interview Preparation Tips

Interview preparation tips for other job seekers - Job seekers is good, company is not good

Area Sales Manager Interview Questions asked at other Companies

Q1. How to handling position and how to coverage rout and sales teams
View answer (23)

I applied via Referral and was interviewed before Jun 2021. There were 2 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 - Group Discussion 

With all ,How development come to ASIS Laminates, MDF and Particle Board

Interview Preparation Tips

Topics to prepare for Shirdi Industries Marketing Executive interview:
  • Planning
  • Channel Sales
  • Payment Collection
Interview preparation tips for other job seekers - Best place to join even with Experience or Fresher to Start and get Good Knowledge from Seniors every time they come there.

Marketing Executive Interview Questions asked at other Companies

Q1. What is Service Scape ? After going through website, what do you think, how can we make better Servicescape for B2B marketplaces throgh Brandsmith Worldwide?
View answer (2)

Interview questions from similar companies

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Difference between state and props in ReactJS.
  • Q2. Lazy loading in ReactJS.
Round 2 - Technical 

(2 Questions)

  • Q1. Protocols used for communication.
  • Q2. How socket communication works ?
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(5 Questions)

  • Q1. API related questions
  • Q2. Soap, rest api details
  • Q3. XML, Json related questions
  • Q4. Prioritisation based questions
  • Q5. Case study related questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Jun 2024. There were 3 interview rounds.

Round 1 - Technical 

(5 Questions)

  • Q1. Questions on fundamental concepts of cybersecurity.
  • Q2. What are the Business As Usual (BAU) activities in your current company, and what is the rationale behind them?
  • Q3. Will give a scenario and questions based on that.
  • Q4. Can you describe a challenging situation you faced and how you overcame it?
  • Q5. What types of high and critical alerts have you handled, and what steps did you take to resolve them?
  • Ans. 

    I have handled high and critical alerts related to malware infections, data breaches, and phishing attacks.

    • Identifying the source and scope of the alert

    • Isolating affected systems to prevent further damage

    • Implementing security patches and updates

    • Conducting forensic analysis to determine the extent of the breach

    • Collaborating with IT teams to strengthen security measures

  • Answered by AI
Round 2 - Technical 

(4 Questions)

  • Q1. Few similar questions asked in 1st round.
  • Q2. Will expect an understanding of security concepts in a bit more detailed manner.
  • Q3. What is the architecture of a Security Information and Event Management (SIEM) tool?
  • Ans. 

    SIEM tool architecture includes data collection, normalization, correlation, and reporting components.

    • Data collection: Gathers security data from various sources like logs, network traffic, and endpoints.

    • Normalization: Standardizes the collected data into a common format for analysis.

    • Correlation: Identifies patterns and relationships in the data to detect security incidents.

    • Reporting: Generates reports and alerts based...

  • Answered by AI
  • Q4. Scenario based questions.
Round 3 - HR 

(6 Questions)

  • Q1. Tell me about yourself.
  • Q2. What information do you have about the company?
  • Q3. What are the reasons for choosing this company?
  • Q4. Will discuss on general things about you and your previous employers.
  • Q5. What is your reason for leaving your current company?
  • Q6. What is your current salary, and what are your salary expectations?

Interview Preparation Tips

Topics to prepare for TSYS|Total System Services Information Security Analyst interview:
  • SIEM
  • Information Security
  • EDR
  • Incident management
Interview preparation tips for other job seekers - Be thorough with your Business as Usual (BAU) tasks. Have confidence and avoid including information in your resume that you are not familiar with. Demonstrate your potential by showing a willingness to learn and adapt.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Company Website and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. He asked me mainly sql questions
  • Q2. After sql , he asked tableau questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Just prepared well..they asked to write the queries
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Referral and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Introduction and other family related questions
  • Q2. Articleship Intership experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Nothing
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Simple java questions, one coding question and one design question

Round 2 - Technical 

(5 Questions)

  • Q1. What is visitor pattern?
  • Ans. 

    Visitor pattern is a design pattern where a visitor class is used to perform operations on elements of a data structure.

    • Visitor pattern allows adding new operations to existing classes without modifying them

    • It separates the algorithm from the object structure on which it operates

    • Commonly used in compilers, interpreters, and other complex systems

  • Answered by AI
  • Q2. You have a 2d array {{1,2},{1,3},{5,6}}. Calculate the sum of elements of 1st position in every array with Java 8.
  • Ans. 

    Calculate sum of elements at 1st position in each array using Java 8.

    • Use Java 8 stream to map each array to its 1st element and then sum them up.

    • Example: {{1,2},{1,3},{5,6}} -> 1 + 1 + 5 = 7

  • Answered by AI
  • Q3. Design Thread collector class
  • Ans. 

    Thread collector class to manage and organize threads in a system

    • Create a ThreadCollector class with methods to add, remove, and retrieve threads

    • Implement a data structure like a list or queue to store the threads

    • Ensure thread safety by using synchronization mechanisms like locks or semaphores

  • Answered by AI
  • Q4. What is volatile?
  • Ans. 

    Volatile refers to a type of memory storage that is temporary and can change frequently.

    • Volatile memory loses its data when power is turned off, unlike non-volatile memory.

    • Volatile memory is commonly used for temporary storage of data that needs to be quickly accessed and modified.

    • Examples of volatile memory include RAM (Random Access Memory) in computers and cache memory in processors.

  • Answered by AI
  • Q5. Sql query to remove duplicates
  • Ans. 

    Use the DISTINCT keyword in a SELECT statement to remove duplicates from a table.

    • Use the SELECT DISTINCT statement to retrieve unique rows from a table.

    • For example: SELECT DISTINCT column_name FROM table_name;

    • Another way is to use the GROUP BY clause with the COUNT() function to remove duplicates.

    • For example: SELECT column_name, COUNT(*) FROM table_name GROUP BY column_name;

  • Answered by AI
Round 3 - One-on-one 

(2 Questions)

  • Q1. Why do you think you are fit for this role?
  • Q2. Why are you leaving your current company?
  • Ans. 

    Seeking new challenges and opportunities for growth.

    • Desire for new challenges and opportunities

    • Looking for career advancement

    • Seeking a more innovative and dynamic work environment

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Manager seems to be very rude here as he cut my interview midway and said we should not proceed as we are not a good match for each other. Very unprofessional approach. Study java and designing for technical rounds.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(3 Questions)

  • Q1. What is cursor, Sequence, Sql related questions
  • Q2. Java related questions
  • Q3. Questions based on Resume
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Sales process, technical knowledge
  • Q2. Marketing, closing skill and telecommunication

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confidence give your best

Shirdi Industries Interview FAQs

How many rounds are there in Shirdi Industries interview?
Shirdi Industries interview process usually has 2 rounds. The most common rounds in the Shirdi Industries interview process are Resume Shortlist, Group Discussion and One-on-one Round.

Tell us how to improve this page.

People are getting interviews through

based on 2 Shirdi Industries interviews
Referral
Job Portal
50%
50%
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates

Interview Questions from Similar Companies

Tata Steel Interview Questions
4.1
 • 812 Interviews
JSW Steel Interview Questions
3.9
 • 555 Interviews
ITC Interview Questions
4.0
 • 533 Interviews
Bajaj Auto Interview Questions
3.9
 • 268 Interviews
Bharat Petroleum Interview Questions
4.2
 • 150 Interviews
View all

Shirdi Industries Reviews and Ratings

based on 29 reviews

3.9/5

Rating in categories

4.3

Skill development

3.4

Work-Life balance

3.6

Salary & Benefits

3.5

Job Security

4.2

Company culture

3.2

Promotions/Appraisal

3.7

Work Satisfaction

Explore 29 Reviews and Ratings
Area Sales Manager
7 salaries
unlock blur

₹3.5 L/yr - ₹4.5 L/yr

Marketing Executive
7 salaries
unlock blur

₹2 L/yr - ₹2.9 L/yr

Accountant
5 salaries
unlock blur

₹4 L/yr - ₹4.2 L/yr

Sales Executive
4 salaries
unlock blur

₹2.2 L/yr - ₹5.8 L/yr

Assistant Accounts Manager
4 salaries
unlock blur

₹3.6 L/yr - ₹4.2 L/yr

Explore more salaries
Compare Shirdi Industries with

Tata Steel

4.1
Compare

Reliance Industries

4.1
Compare

Hindalco Industries

4.2
Compare

Aditya Birla Group

4.1
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