Upload Button Icon Add office photos

Filter interviews by

Liberty Steel Group Interview Questions and Answers

Updated 30 Sep 2024

Liberty Steel Group Interview Experiences

Popular Designations

5 interviews found

Electrical Engineer Interview Questions & Answers

user image Rajkishore Pradhan

posted on 30 Sep 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Voltage,power factor,synchronise,dcs
  • Q2. Current,power plant,

Interview Preparation Tips

Interview preparation tips for other job seekers - Good company ,full relax job

Electrical Engineer Interview Questions asked at other Companies

Q1. What is the difference between Switch gear & Circuit Breakers ?
View answer (13)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Introduce you to me
  • Q2. Areas of interest.
  • Ans. 

    My areas of interest include project management, event planning, and communication.

    • Project management: I enjoy organizing tasks, setting deadlines, and ensuring projects are completed on time and within budget.

    • Event planning: I have a passion for creating memorable experiences and coordinating all aspects of events from start to finish.

    • Communication: I excel in written and verbal communication, and I prioritize clear a...

  • Answered by AI

Executive Assistant to Director Interview Questions asked at other Companies

Q1. Do you know about calendar management?
View answer (1)

I applied via Recruitment Consulltant and was interviewed in Jul 2022. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. Did you ad a iatf certification
  • Q2. Did you handle mr management
  • Q3. What is quality policy
  • Ans. 

    Quality policy is a statement or set of principles that guide an organization's commitment to delivering high-quality products or services.

    • Quality policy outlines the organization's objectives and commitment to quality.

    • It provides a framework for establishing and maintaining quality standards.

    • The policy is communicated to all employees to ensure everyone understands their role in achieving quality.

    • Examples of quality p...

  • Answered by AI
  • Q4. Did you requirements in iatf
  • Ans. 

    No, I have not worked with iatf requirements in my previous roles.

    • I have not had the opportunity to work with iatf requirements in my previous roles.

    • My experience may not directly align with iatf requirements, but I am willing to learn and adapt.

    • I am open to training or guidance on iatf requirements if necessary.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Quality technology and planning handing asper management requirements

Quantity Surveyor Interview Questions asked at other Companies

Q1. What will you do if the site qty differ from Drawing qty
View answer (8)

Interview Questionnaire 

3 Questions

  • Q1. The internal audit heads last experience was as SBI, and union bank. So imagine the level of competency. Recently qualified CIA will ask only hypothetical questions and scenarios. In short he is the rahul ...
  • Q2. Aapko kya lagta hai is his standard question
  • Q3. Will give false promises. Not a trustworthy guy

Interview Preparation Tips

Interview preparation tips for other job seekers - Join only if your jobless. Dont stop searching for job even after joining.. you will realize it in the 1st week itself

Internal Auditor Interview Questions asked at other Companies

Q1. What is Purchase to pay process? (all the step you did in your P2P audit process)
View answer (3)

Liberty Steel Group interview questions for popular designations

 Electrical Engineer

 (1)

 Internal Auditor

 (1)

 Executive Assistant to Director

 (1)

 Quantity Surveyor

 (1)

Interview Questions & Answers

user image Anonymous

posted on 5 Mar 2021

I applied via Naukri.com and was interviewed in Sep 2020. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. To be focused what you are doing. Learn to get the opportunity. Wait for your turn
  • Q2. Experience in the parallel Field counts. Learn local launguage where you are
  • Q3. Be a team. Don't try to be a great alone
  • Q4. Target orientation

Interview Preparation Tips

Interview preparation tips for other job seekers - Be a perfect team member. Experience in steel. Experience in Africa 🌍

Interview questions from similar companies

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

Interview Questionnaire 

1 Question

  • Q1. Tell me about your self

Interview Preparation Tips

Interview preparation tips for other job seekers - Be bold, don't hesitate.

I applied via Campus Placement and was interviewed in Oct 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. What is dictionary in python?
  • Ans. 

    Dictionary is a collection of key-value pairs in Python.

    • Keys must be unique and immutable.

    • Values can be of any data type.

    • Access values using keys.

    • Add or modify values using keys.

    • Use dict() constructor or {} to create a dictionary.

    • Example: {'name': 'John', 'age': 30}

    • Example: dict(name='John', age=30)

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - easy one. any language will do the job.

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before Sep 2019. There were 5 interview rounds.

Interview Questionnaire 

7 Questions

  • Q1. 1.What is Opps concepts in Java.
  • Ans. 

    OOPs concepts in Java are the fundamental principles of object-oriented programming.

    • Encapsulation: wrapping data and code into a single unit

    • Inheritance: creating new classes from existing ones

    • Polymorphism: using a single interface to represent multiple types

    • Abstraction: hiding implementation details from the user

    • Examples: class, object, inheritance, polymorphism, encapsulation

  • Answered by AI
  • Q2. 2.What is difference between stack and queue?
  • Ans. 

    Stack is a LIFO data structure while Queue is a FIFO data structure.

    • Stack follows Last In First Out (LIFO) principle while Queue follows First In First Out (FIFO) principle.

    • Stack has two main operations: push and pop while Queue has two main operations: enqueue and dequeue.

    • Stack is used in recursive function calls, undo/redo operations, and backtracking while Queue is used in breadth-first search, printing tasks in ord...

  • Answered by AI
  • Q3. 3.Write SQL query to find second highest salary in database?
  • Ans. 

    SQL query to find second highest salary in database

    • Use ORDER BY and LIMIT to get the second highest salary

    • Assume ties are allowed and use DISTINCT

  • Answered by AI
  • Q4. 4. Difference Between method overloading and method overriding?
  • Ans. 

    Method overloading is having multiple methods with the same name but different parameters. Method overriding is having a method in a subclass with the same name and parameters as a method in its superclass.

    • Method overloading is done within the same class while method overriding is done in different classes (subclass and superclass).

    • Method overloading is achieved by changing the number of parameters or the data type of ...

  • Answered by AI
  • Q5. 5.which is the parent class of all classes in Java?
  • Ans. 

    The parent class of all classes in Java is the Object class.

    • All classes in Java implicitly extend the Object class.

    • The Object class provides basic methods such as toString(), equals(), and hashCode().

    • Any class can override these methods to provide custom implementations.

    • Example: public class MyClass extends Object { ... }

    • Example: Object obj = new MyClass();

  • Answered by AI
  • Q6. Explain your final year project?
  • Q7. Difference between SQL and NoSql database?
  • Ans. 

    SQL databases are relational and use structured query language, while NoSQL databases are non-relational and use various data models.

    • SQL databases are based on a fixed schema, while NoSQL databases are schema-less.

    • SQL databases use tables to store data, while NoSQL databases use various data models like key-value, document, columnar, or graph.

    • SQL databases are better suited for complex queries and structured data, whil...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - All interview process are easy. Intervier just ask basic concept of related to your stream.

Skills evaluated in this interview

Analyst Interview Questions & Answers

TCS user image Anonymous

posted on 30 Aug 2022

I applied via Naukri.com and was interviewed before Aug 2021. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Why do you want to join tcs

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident enough and convey your answers crisp and clear. Try to match your current role with the position you applied for.

I applied via Naukri.com and was interviewed in Nov 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Logical Reasoning Puzzle

Interview Preparation Tips

Interview preparation tips for other job seekers - Smile in between and be confident. No matter what you will be alive after the interview. People are ready to pay billions but can't afford a second more when it is all over.

Liberty Steel Group Interview FAQs

How many rounds are there in Liberty Steel Group interview?
Liberty Steel Group interview process usually has 1 rounds. The most common rounds in the Liberty Steel Group interview process are Technical and One-on-one Round.
How to prepare for Liberty Steel Group 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 Liberty Steel Group. The most common topics and skills that interviewers at Liberty Steel Group expect are Procurement, MRO, Accounting, Business Intelligence and Buyer Activities.
What are the top questions asked in Liberty Steel Group interview?

Some of the top questions asked at the Liberty Steel Group interview -

  1. What is quality pol...read more
  2. did you requirements in i...read more
  3. Areas of intere...read more

Tell us how to improve this page.

Liberty Steel Group Interview Process

based on 5 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Tata Steel Interview Questions
4.1
 • 826 Interviews
JSW Steel Interview Questions
3.9
 • 595 Interviews
Vedanta Limited Interview Questions
3.8
 • 46 Interviews
ESL Steel Interview Questions
4.0
 • 31 Interviews
ArcelorMittal Interview Questions
4.1
 • 29 Interviews
Vizag Steel Interview Questions
4.1
 • 28 Interviews
View all

Liberty Steel Group Reviews and Ratings

based on 43 reviews

2.6/5

Rating in categories

2.4

Skill development

2.8

Work-life balance

2.8

Salary

2.3

Job security

2.2

Company culture

2.2

Promotions

2.4

Work satisfaction

Explore 43 Reviews and Ratings
Assistant Manager
9 salaries
unlock blur

₹4.4 L/yr - ₹9.8 L/yr

Assistant Manager- HR
6 salaries
unlock blur

₹7.8 L/yr - ₹9 L/yr

Manager
5 salaries
unlock blur

₹7.2 L/yr - ₹18.5 L/yr

Deputy Manager
5 salaries
unlock blur

₹9.5 L/yr - ₹12 L/yr

Assistant Manager Analytics
5 salaries
unlock blur

₹9.5 L/yr - ₹22.8 L/yr

Explore more salaries
Compare Liberty Steel Group with

Tata Steel

4.1
Compare

JSW Steel

3.9
Compare

Steel Authority Of India

4.1
Compare

ArcelorMittal Nippon Steel

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