Upload Button Icon Add office photos

Filter interviews by

ABC Companies Interview Questions, Process, and Tips

Updated 5 Jan 2023

Top ABC Companies Interview Questions and Answers

View all 15 questions

ABC Companies Interview Experiences

Popular Designations

4 interviews found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in 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 - HR 

(2 Questions)

  • Q1. Why you want to join
  • Q2. What is your salary expectation

Interview Preparation Tips

Interview preparation tips for other job seekers - Never Give Up you will surely find a good job ... mate

Web Developer Interview Questions asked at other Companies

Q1. Check Indices With Given Difference Problem Statement You are provided with an integer array ARR of size N along with two integers A and B. Your task is to determine if there exist two distinct indices in the array such that the absolute di... read more
View answer (1)

Manager Interview Questions & Answers

user image Anonymous

posted on 15 Jul 2022

I was interviewed before Jul 2021.

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 - One-on-one 

(1 Question)

  • Q1. How you have handled the senior management or how to handle work stress.

Interview Preparation Tips

Interview preparation tips for other job seekers - Please choose good manager. Dont go for big names

Manager Interview Questions asked at other Companies

Q1. There is a chairman of a conglomerate. He has been on the post for 10 years, and is extremely dominating. He treats the various business heads like children, not letting them take any major decision. While the chairman has negatives, he bel... read more
View answer (2)

I applied via Recruitment Consultant and was interviewed before Nov 2020. There were 3 interview rounds.

Interview Questionnaire 

15 Questions

  • Q1.  What is difference between Function and procedure ?
  • Ans. 

    Functions return a value while procedures do not.

    • Functions return a value while procedures do not.

    • Functions can be used in expressions while procedures cannot.

    • Functions can have parameters passed by value or reference while procedures can only have parameters passed by reference.

  • Answered by AI
  • Q2.  Describe Packed decimal an Zoned decimal ?
  • Ans. 

    Packed decimal and zoned decimal are two common data formats used in mainframe systems.

    • Packed decimal is a binary-coded decimal format that stores two digits in each byte, with the last nibble used for sign.

    • Zoned decimal is a format that uses one byte to store each digit, with the last byte used for sign.

    • Packed decimal is more space-efficient than zoned decimal, but requires more processing power to convert to and from...

  • Answered by AI
  • Q3.  How to add fields in pysical file without compiling?
  • Ans. 

    Fields can be added to a physical file without compiling using SQL ALTER TABLE statement.

    • Use ALTER TABLE statement to add fields to physical file.

    • Syntax: ALTER TABLE library/file ADD COLUMN fieldname datatype

    • Example: ALTER TABLE MYLIB/EMPLOYEE ADD COLUMN EMAIL VARCHAR(50)

  • Answered by AI
  • Q4. How to declare file in CL program ?
  • Ans. 

    To declare a file in CL program, use the DCLF command followed by the file name.

    • Use the DCLF command followed by the file name to declare a file in CL program.

    • The file name should be enclosed in parentheses.

    • The file must be defined in the program's file description.

    • Example: DCLF FILE(MYFILE)

    • The file can then be used in the program using its declared name.

  • Answered by AI
  • Q5. How to binding program in RPGILE ?
  • Ans. 

    Binding programs in RPGILE involves specifying the program name and library in the binding directory.

    • Create a binding directory using CRTBNDDIR command

    • Add the program to the binding directory using ADDLIBLE command

    • Specify the program name and library in the binding directory using the BNDDIR parameter in the CRTPGM command

    • Use the CALL statement to call the program

  • Answered by AI
  • Q6. What is subsystem ?
  • Ans. 

    A subsystem is a smaller system within a larger system that performs a specific function.

    • Subsystems are often used in complex engineering systems such as airplanes and automobiles.

    • They can be thought of as modules that work together to achieve a larger goal.

    • Subsystems can be hardware or software-based.

    • Examples of subsystems include the engine subsystem in a car and the navigation subsystem in an airplane.

  • Answered by AI
  • Q7. What is OVRDBF command ?
  • Ans. 

    OVRDBF is a command in IBM i (AS/400) that allows a program to override the file it is accessing.

    • OVRDBF is used to temporarily redirect a program's file input/output to a different file.

    • It can be used to redirect output to a printer or a spool file.

    • The command can also be used to change the record format of a file.

    • OVRDBF can be used in CL programs or in RPG programs using the OVRDBF opcode.

  • Answered by AI
  • Q8. How you check error in RPG program?
  • Ans. 

    Errors in RPG programs can be checked using various tools and techniques.

    • Compile the program with the appropriate compiler options to check for syntax errors

    • Use debuggers and tracing tools to identify runtime errors

    • Analyze job logs and dump files to diagnose program errors

    • Use third-party tools like X-Analysis and Hawkeye to identify and fix errors

  • Answered by AI
  • Q9. Types of arrays and where you used ?
  • Ans. 

    There are mainly two types of arrays: Single-dimensional and Multi-dimensional. I have used both in various projects.

    • Single-dimensional arrays are used to store a list of values of the same data type.

    • Multi-dimensional arrays are used to store values in a matrix format with rows and columns.

    • I have used single-dimensional arrays to store user input data and multi-dimensional arrays to store data in a tabular format.

    • For e...

  • Answered by AI
  • Q10. What is runqry and its use?
  • Ans. 

    runqry is a command used in IBM iSeries to run a query on a database file.

    • runqry is used to retrieve data from a database file in IBM iSeries.

    • It allows users to specify selection criteria and sort order for the retrieved data.

    • The output of runqry can be displayed on the screen, printed, or saved to a file.

    • It is commonly used by technical consultants to extract data for analysis or reporting purposes.

  • Answered by AI
  • Q11. What is compile command in RPG program
  • Ans. 

    Compile command in RPG program is used to convert source code into executable code.

    • Compile command is used to check for syntax errors and generate object code

    • The command is usually RUNCL or CRTRPGMOD

    • The compiled program can be executed using CALL or CALLB

    • Example: RUNCLPGM PGM(MYLIB/MYPROG) SRCFILE(MYLIB/MYSRC)

    • Example: CRTRPGMOD MODULE(MYLIB/MYPROG) SRCFILE(MYLIB/MYSRC)

  • Answered by AI
  • Q12. How many table can declare in RPG program
  • Ans. 

    There is no limit to the number of tables that can be declared in an RPG program.

    • Tables can be declared using the DCL-TBL statement.

    • The number of tables that can be declared is limited only by the available memory.

    • Each table can have its own unique name and structure.

    • Tables can be used to store and manipulate data within the RPG program.

  • Answered by AI
  • Q13. How to install program to a I series system?
  • Ans. 

    Programs can be installed on an I series system using various methods.

    • Use the Install Program (INZPRM) command to install a program from a save file

    • Use the Program Temporary Fix (PTF) process to install fixes and updates

    • Use the Portable Application Solutions Environment (PASE) to install Linux-based programs

    • Use the Integrated Web Application Server (IAS) to install web-based applications

  • Answered by AI
  • Q14. What is XFOOT command, where we can use?
  • Ans. 

    XFOOT is a command used in SAS software to display the contents of a SAS data set.

    • XFOOT command is used to display the contents of a SAS data set in the SAS log.

    • It displays the number of observations and variables in the data set.

    • It also displays the size of the data set in bytes.

    • XFOOT command can be used in conjunction with other SAS commands like PROC PRINT and PROC SORT.

    • Example: XFOOT; PROC PRINT data=dataset; RUN;

  • Answered by AI
  • Q15. You know BRMS and its functions
  • Ans. 

    Yes, I am familiar with BRMS and its functions.

    • BRMS stands for Business Rules Management System

    • It is used to manage and automate business rules

    • BRMS allows for easy modification and management of rules

    • Examples of BRMS include IBM Operational Decision Manager and Red Hat Decision Manager

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Below 10 years experience they ask RPG and CL questions, above 10 years interviewer ask Project and Technical questions means project based questions

Skills evaluated in this interview

Top ABC Companies Technical Consultant Interview Questions and Answers

Q1. How to add fields in pysical file without compiling?
View answer (1)

Technical Consultant Interview Questions asked at other Companies

Q1. Oops C and java difference Query for selecting all columns from a table 10 uses of a pen Personal questions like the place we belong to What do you know about our company The interview was not really good ,I got selected 😅 for role of tech... read more
View answer (1)

Interview Questionnaire 

1 Question

  • Q1. What is your name

Interview Preparation Tips

Interview preparation tips for other job seekers - My name is Nikhil

Nothing Specified Interview Questions asked at other Companies

Q1. 6. Overloading vs overriding 7. Sql? 8. What is rdbms? 9. Normalisation?
View answer (1)

ABC Companies interview questions for popular designations

 Manager

 (1)

 Nothing Specified

 (1)

 Technical Consultant

 (1)

 Web Developer

 (1)

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
More than 8 weeks
Result
Selected Selected

I was interviewed in Jan 2025.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Sale price on on day
  • Q2. Start working

Interview Preparation Tips

Interview preparation tips for other job seekers - Fofocus heavily on networking, tailoring your resume with relevant keywords, actively following up with potential employers, showcasing your sales skills in interviews through storytelling, and monitoring companies you're interested in to stay updated on opportunities.
Key points to remember:
Prioritize networking:
Utilize your network to connect with people in the industry, attend industry events, and leverage platforms like LinkedIn to build relationships with potential hiring managers.
Tailor your resume:
Include relevant sales keywords throughout your resume to catch the attention of recruiters and ensure your experience aligns with the job description.
Practice your sales pitch:
Prepare compelling stories from your past experiences to demonstrate your ability to close deals, overcome objections, and build rapport during interviews.
Follow up consistently:
After submitting applications, send personalized follow-up emails to maintain engagement with potential employers.
Research companies:
Actively monitor companies you're interested in by following their social media and news to stay informed about potential openings.
Highlight transferable skills:
Even if you lack direct sales experience, emphasize skills like communication, persuasion, relationship building, and problem-solving that translate well to a sales role.
Ask insightful questions:
During interviews, demonstrate your knowledge of the company and role by asking thoughtful questions that show your genuine interest.
Be enthusiastic and confident:
Convey a positive attitude and express your passion for sales to make a strong impression on potential employers.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Group Discussion 

Diesel Generator: A Reliable Power Source
A diesel generator is a self-contained power generating unit that combines a diesel engine with an electric generator (often an alternator). It's a versatile and widely used source of electricity, particularly in situations where a reliable power supply is crucial.
How Diesel Generators Work
* Diesel Engine: The diesel engine, fueled by diesel fuel, acts as the prime mover. It converts the chemical energy of the fuel into mechanical energy through combustion.
* Electric Generator: The mechanical energy from the engine is transferred to the generator, which converts it into electrical energy. This electrical energy can then be used to power various appliances and equipment.
Applications of Diesel Generators
* Backup Power: Diesel generators are commonly used as backup power sources for homes, businesses, hospitals, and critical infrastructure during power outages.
* Remote Locations: In areas with limited or no access to the grid, diesel generators provide a reliable source of electricity for various applications.
* Construction Sites: Diesel generators power tools and equipment on construction sites, ensuring work can continue even in remote locations.
* Off-Grid Living: Individuals living off the grid often rely on diesel generators for their electricity needs.
* Data Centers: Diesel generators provide backup power to ensure the continuous operation of critical data centers.
Advantages of Diesel Generators
* Reliability: Diesel engines are known for their durability and reliability, making them suitable for demanding applications.
* Fuel Efficiency: Modern diesel engines offer excellent fuel efficiency, reducing operating costs.
* Wide Power Range: Diesel generators are available in a wide range of sizes and power capacities, catering to various needs.
* Easy Maintenance: Diesel generators are relatively easy to maintain and service.
Disadvantages of Diesel Generators
* Noise: Diesel generators can be noisy, which may be a concern in certain settings.

Round 2 - One-on-one 

(3 Questions)

  • Q1. Transformer & protection
  • Q2. Breaker & protection
  • Q3. Motor panel Feeder & protection
Round 3 - One-on-one 

(2 Questions)

  • Q1. Motor & Motor protection
  • Q2. All types panel & protection
  • Ans. 

    Panel and protection systems are essential components in electrical engineering for controlling and safeguarding electrical circuits.

    • Different types of panels include distribution panels, control panels, and instrumentation panels.

    • Protection systems include overcurrent protection, earth fault protection, and differential protection.

    • Panels are used to house electrical components and provide a safe environment for operat...

  • Answered by AI
Interview experience
3
Average
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected
Round 1 - Group Discussion 

Group discussion for senior team and HR team also discussed than Joni employee

Round 2 - One-on-one 

(2 Questions)

  • Q1. How many years experience you and what about hyundai Glovis and hyundai car's
  • Q2. How many years are working in automobile industry
Round 3 - One-on-one 

(2 Questions)

  • Q1. Please interview sudule for 10am to 2pm timing only
  • Q2. HR asking to all employees how's need the job what's you family background
Round 4 - Technical 

(2 Questions)

  • Q1. HR test to employ for technical and prectical
  • Q2. HR asking to employ wich language you comfortable

Interview Preparation Tips

Interview preparation tips for other job seekers - HR final answer we on time to employ not delay reply for the interview results
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at National Institute of Technology (NIT), Kurukshetra and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - Technical 

(6 Questions)

  • Q1. Introduce yourself
  • Q2. How will you handle disputes in the team?
  • Q3. Explain your projects
  • Q4. Why you want to work as Manager although your degree is in Electrical Engineering
  • Q5. Which operation do you think are costly in the Delhivery Last mile, First mile, Middle , Transportation etc ?
  • Q6. What you have managed in College?
Round 2 - One-on-one 

(6 Questions)

  • Q1. Introduce yourself
  • Q2. Explain your projects
  • Q3. Why you want to join Delhivery as a Manager although you are from Electrical Engineering department?
  • Q4. How will you unload vehicles? What factors will you consider while unloading?
  • Q5. Suppose you are managing a team of 20 people and 10 are absent what actions will you take ?
  • Q6. Any Questions you want to ask

Interview Preparation Tips

Topics to prepare for Delhivery Operations Manager interview:
  • Management
  • Supply chain management
  • Situation based questions
  • Logistics Management
  • Warehouse Management
Interview preparation tips for other job seekers - There were 2 interviews of about 20 minutes only so, one should have good communication and English speaking skills. Apart from it do research related to company before giving interview by the help of website and youtube videos.
Explain situation based questions strategically with logics.
Prepare for Supply chain management and logistics basics they might ask.
Be confident and pray to God.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Dec 2024.

Round 1 - Technical 

(7 Questions)

  • Q1. What is battery voltage in ola scooter?
  • Ans. 

    The battery voltage in Ola scooter is typically around 48V.

    • The battery voltage in Ola scooters is usually around 48V.

    • The exact voltage may vary slightly depending on the specific model of the scooter.

    • It is important to check the battery voltage regularly to ensure optimal performance.

  • Answered by AI
  • Q2. What is MCU assemble to Ola scooter?
  • Ans. 

    The MCU (Motor Control Unit) is assembled to Ola scooters to control the motor and ensure efficient performance.

    • MCU controls the motor of the scooter

    • Ensures efficient performance

    • Regulates speed and power output

    • Monitors battery usage and charging

  • Answered by AI
  • Q3. What is a HMI in Ola scooter work ?
  • Ans. 

    HMI in Ola scooter work stands for Human Machine Interface, which is the interface through which a user interacts with the scooter's systems.

    • HMI in Ola scooter work refers to the display screen and controls that allow the rider to interact with the scooter's functions.

    • It includes features like speedometer, battery level indicator, mode selection, and settings menu.

    • The HMI may also include touch screen capabilities for ...

  • Answered by AI
  • Q4. How in range ola scooter?
  • Ans. 

    The range of Ola scooters varies depending on the model and battery capacity.

    • Range can be affected by factors like speed, terrain, and weather conditions.

    • Ola S1 Pro has a claimed range of 181 km on a single charge.

    • Ola S1 has a claimed range of 121 km on a single charge.

    • Regular maintenance and proper charging habits can help optimize the scooter's range.

  • Answered by AI
  • Q5. How many nuts are therein the alloy wheel of a ola scooter?
  • Ans. 

    There are typically 5 nuts in the alloy wheel of an Ola scooter.

    • Most alloy wheels have 4-6 nuts for securing the wheel to the hub

    • Ola scooters commonly have 5 nuts in their alloy wheels

    • The nuts are used to securely fasten the wheel to the hub

  • Answered by AI
  • Q6. How many spokes are there in the front alloy wheel of Ola scooter?
  • Ans. 

    There are 12 spokes in the front alloy wheel of Ola scooter.

    • The front alloy wheel of Ola scooter typically has 12 spokes.

    • Spokes are the rods or bars that radiate from the center of the wheel to the outer edge.

    • The number of spokes can vary depending on the design and model of the scooter.

  • Answered by AI
  • Q7. What is HMI work in Ola scooter?
  • Ans. 

    HMI work in Ola scooter involves designing and implementing the Human Machine Interface for the scooter's digital display and controls.

    • Designing the layout and functionality of the digital display on the scooter

    • Implementing touch screen capabilities for user interaction

    • Integrating features like navigation, music controls, and vehicle settings into the interface

    • Ensuring user-friendly and intuitive design for easy use wh...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Properly knowledge in service technici to Electric Vehicle then hiring in this job..
Interview experience
3
Average
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected
Round 1 - Aptitude Test 

I am writing automation and clicking on aptitude test.

Round 2 - Assignment 

I am writing automation and clicking on assignment test.

Round 3 - Technical 

(2 Questions)

  • Q1. Hey guys? How is it going. I gotta work for it. This is an automation task.
  • Q2. Hey guys? How is it going. I gotta work for it. This is an automation task testing.
Round 4 - HR 

(2 Questions)

  • Q1. Hey guys? How is it going. I gotta work for it. This is an automation task.
  • Q2. Hey guys? How is it going. I gotta work for it. This is an automation task. Yes
Round 5 - Assignment 

This is an automation test. I got this task from my senior. I'm doing good.

Interview Preparation Tips

Interview preparation tips for other job seekers - Tips are like this, This an Automation Script which is giving you feedback so , please ignore all above

ABC Companies Interview FAQs

How many rounds are there in ABC Companies interview?
ABC Companies interview process usually has 2 rounds. The most common rounds in the ABC Companies interview process are Resume Shortlist, HR and One-on-one Round.
What are the top questions asked in ABC Companies interview?

Some of the top questions asked at the ABC Companies interview -

  1. How to add fields in pysical file without compili...read more
  2. What is difference between Function and procedur...read more
  3. How to install program to a I series syst...read more

Tell us how to improve this page.

ABC Companies Interview Process

based on 1 interview

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

Amazon Interview Questions
4.1
 • 5.1k Interviews
10405090xyzabc Interview Questions
3.6
 • 1.3k Interviews
Delhivery Interview Questions
3.9
 • 457 Interviews
Bosch Interview Questions
4.2
 • 334 Interviews
CARS24 Interview Questions
3.6
 • 326 Interviews
TVS Motor Interview Questions
4.0
 • 308 Interviews
KEC International Interview Questions
4.0
 • 295 Interviews
Bajaj Auto Interview Questions
3.9
 • 270 Interviews
View all

ABC Companies Reviews and Ratings

based on 5 reviews

3.5/5

Rating in categories

4.0

Skill development

3.7

Work-life balance

5.0

Salary

5.0

Job security

4.3

Company culture

3.7

Promotions

4.2

Work satisfaction

Explore 5 Reviews and Ratings
Software Engineer
6 salaries
unlock blur

₹15 L/yr - ₹94 L/yr

Software Developer
4 salaries
unlock blur

₹8.6 L/yr - ₹26.6 L/yr

Accountant
4 salaries
unlock blur

₹1 L/yr - ₹4.6 L/yr

Director
4 salaries
unlock blur

₹46 L/yr - ₹200 L/yr

Manager
3 salaries
unlock blur

₹13.7 L/yr - ₹35.7 L/yr

Explore more salaries
Compare ABC Companies with

Amazon

4.1
Compare

Larsen & Toubro Limited

4.0
Compare

Mahindra & Mahindra

4.1
Compare

Delhivery

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