Upload Button Icon Add office photos

Filter interviews by

ABC Companies Technical Consultant Interview Questions and Answers

Updated 28 Nov 2021

15 Interview questions

A Technical Consultant was asked
Q. What is the compile command in an 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)

A Technical Consultant was asked
Q. What is runqry and what is it used for?
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.

Technical Consultant Interview Questions Asked at Other Companies

asked in Mastek
Q1. Oops C and java difference Query for selecting all columns from a ... read more
Q2. What are the real-time applications of Spring concepts in Java?
asked in HCLTech
Q3. What is the difference between family ipv6 route-target and defau ... read more
asked in PwC
Q4. If I give you a new tool, can you cope with it?
asked in HCLTech
Q5. Why did we receive single collision errors on the port, what was ... read more
A Technical Consultant was asked
Q. What are the different types of arrays, and where have you used them?
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.

  • ...

A Technical Consultant was asked
Q. What is the 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.

A Technical Consultant was asked
Q. What is a 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.

A Technical Consultant was asked
Q. How do you declare a file in a 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.

A Technical Consultant was asked
Q. Are you familiar with 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

Are these interview questions helpful?
A Technical Consultant was asked
Q. What is the XFOOT command, and where can we use it?
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; ...

A Technical Consultant was asked
Q. How do you install a program on an IBM iSeries 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

A Technical Consultant was asked
Q. How many tables can be declared in an 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.

ABC Companies Technical Consultant Interview Experiences

1 interview found

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 trending discussions

View All
Interview Tips & Stories
1w (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about ABC Companies?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Walk-in and was interviewed before Feb 2021. 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 - Technical 

(2 Questions)

  • Q1. Depends on experience
  • Q2. Related to systematic approach
  • Ans. Problem solving tools, OEE, FPY, Root cause analysis. 14Q, 5S
  • Answered Anonymously

Interview Preparation Tips

Interview preparation tips for other job seekers - Never join Bosch chakan if want to have growing future In career and work life balance.

Technical Consultant Interview Questions Asked at Other Companies

asked in Mastek
Q1. Oops C and java difference Query for selecting all columns from a ... read more
Q2. What are the real-time applications of Spring concepts in Java?
asked in HCLTech
Q3. What is the difference between family ipv6 route-target and defau ... read more
asked in PwC
Q4. If I give you a new tool, can you cope with it?
asked in HCLTech
Q5. Why did we receive single collision errors on the port, what was ... read more

I applied via Walk-in and was interviewed before Jun 2021. 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 - Group Discussion 

HR told about the company on the first day, how it works, told the rules, showed the management and a lot

Interview Preparation Tips

Topics to prepare for Amazon Associate interview:
  • Safery
  • Environment
  • Cleaning
Interview preparation tips for other job seekers - There is nothing to worry, if you have the desire to work and have passion, then you can work anywhere.

Interview Questionnaire 

1 Question

  • Q1. What is your role in previous company

I applied via Company Website and was interviewed in May 2019. There were 4 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. About your self
  • Q2. About your previous company and job profile
  • Q3. How do you relate your previous job profile with the profile you are applying
  • Q4. Any thing extra ordinary you have done in your previous company (s) that has changed your business
  • Ans. 

    Implemented a new customer feedback system that increased customer satisfaction by 20%

    • Implemented a new customer feedback system to gather insights and improve customer experience

    • Analyzed feedback data to identify common issues and areas for improvement

    • Implemented changes based on feedback to address customer concerns and enhance overall satisfaction

    • Trained team members on how to effectively use the new system and inte...

  • Answered by AI
  • Q5. Hobbies and all

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident
Have proper knowledge about your work experience
Make your CV precis and do adhere to it
Be honest

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

Interview Questionnaire 

1 Question

  • Q1. What is your achievements which is you proud of??

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep camp and give true answers

I applied via Campus Placement and was interviewed before Jun 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

Mathematics, English, Reasoning

Round 2 - Technical 

(2 Questions)

  • Q1. They asked Technical questions
  • Q2. What is antenna What is satcom
  • Ans. 

    An antenna is a device that converts electrical signals into electromagnetic waves and vice versa. Satcom is short for satellite communication.

    • Antennas are used for transmitting and receiving signals in various applications such as radio, television, and wireless communication.

    • Satcom refers to the use of satellites for communication purposes, including television broadcasting, internet access, and military communicatio...

  • Answered by AI
Round 3 - Group Discussion 

Clean India
Corruption

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and believe in yourself
Are these interview questions helpful?

I applied via Naukri.com and was interviewed in Mar 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Technical

Interview Preparation Tips

Interview preparation tips for other job seekers - Be reliable

I applied via Naukri.com

Interview Questionnaire 

2 Questions

  • Q1. Why Amazon?
  • Ans. 

    Amazon's innovation, customer focus, and diverse opportunities align with my career goals and values.

    • Customer Obsession: Amazon prioritizes customer satisfaction, evident in initiatives like Prime and personalized recommendations.

    • Innovation: The company is a leader in technology and logistics, constantly pushing boundaries with services like AWS and drone delivery.

    • Diversity of Roles: Amazon offers a wide range of caree...

  • Answered by AI
  • Q2. What do you expect from Amazon?
  • Ans. 

    I expect Amazon to foster innovation, provide growth opportunities, and maintain a customer-centric culture.

    • Opportunities for professional development, such as training programs and mentorship.

    • A collaborative work environment that encourages teamwork and idea sharing.

    • Access to cutting-edge technology and resources to drive innovation.

    • A strong focus on customer satisfaction, ensuring that every decision prioritizes the ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be open to anything, and keep your expectations low as your expectations might kill you. Just relax and take everything in a healthy way

Consultant Interview Questions & Answers

Siemens user image Ujjwal Mukherjee

posted on 12 Dec 2015

I applied via Referral

Interview Questionnaire 

1 Question

  • Q1. A windmill manufacturer in Scandinavia wants to expand but has no labor pool for recruitment and is constrained by it. (Case Type- Expansion / Growth)
  • Ans. 

    The windmill manufacturer in Scandinavia is facing labor pool shortage and needs to expand.

    • The manufacturer can consider outsourcing labor from other countries.

    • They can also invest in training programs to develop local talent.

    • The manufacturer can offer incentives to attract skilled workers to relocate.

    • They can also consider automating some of their processes to reduce the need for labor.

    • The manufacturer can partner wit...

  • Answered by AI

Interview Preparation Tips

Round: Case Study Interview
Experience: Broke it into attracting required labor at the site or outsourcing Within outsourcing talked about factors by which I would identify countries for this task.
In the end was just asked to recommend 2 industries from where I could use skills of existing engineers and I came up with other power generation industries and aerospace for blade design
Tips: What was good: PI, Involving the interviewer in case discussion What could be better: Quicker solution of case, he gave me a lot of hints and nudges for the solution After the final interview, I was also asked to rank each performance to check self-awareness. Overall, SMC checks a lot on cultural awareness, fit in their culture and personality traits.


Skills:
College Name: Indian School Of Business (ISB)

ABC Companies Interview FAQs

What are the top questions asked in ABC Companies Technical Consultant interview?

Some of the top questions asked at the ABC Companies Technical Consultant 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.

Interview Questions from Similar Companies

Amazon Interview Questions
4.0
 • 5.4k Interviews
Delhivery Interview Questions
3.8
 • 524 Interviews
Siemens Interview Questions
4.0
 • 457 Interviews
CARS24 Interview Questions
3.5
 • 361 Interviews
KEC International Interview Questions
4.0
 • 355 Interviews
TVS Motor Interview Questions
3.9
 • 351 Interviews
Bosch Interview Questions
4.1
 • 350 Interviews
JBM Group Interview Questions
4.0
 • 308 Interviews
View all
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

Manager
3 salaries
unlock blur

₹13.7 L/yr - ₹35.7 L/yr

Explore more salaries
Compare ABC Companies with

Amazon

4.0
Compare

Larsen & Toubro Limited

3.9
Compare

Mahindra & Mahindra

4.1
Compare

Delhivery

3.8
Compare
write
Share an Interview