Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by LTIMindtree Team. If you also belong to the team, you can get access from here

LTIMindtree Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

LTIMindtree Mainframe Developer Interview Questions and Answers

Updated 11 Jun 2024

6 Interview questions

A Mainframe Developer was asked 12mo ago
Q. Is any condition mandatory to call a program in COBOL?
Ans. 

No, there is no mandatory condition to call a program in COBOL.

  • In COBOL, a program can be called without any mandatory conditions.

  • The CALL statement is used to call a program in COBOL.

  • The called program can be executed based on the logic written within it.

  • Example: CALL 'PROGRAM-NAME' USING parameters.

A Mainframe Developer was asked 12mo ago
Q. What is SQLCA?
Ans. 

SQL CA stands for SQL Communications Area, which is a data structure used in mainframe programming to communicate between programs and the DB2 database.

  • SQL CA contains information about the SQL statement being executed, such as SQLCODE, SQLSTATE, and error messages.

  • It is used to pass information between the application program and the DB2 database.

  • SQL CA is typically defined in the working storage section of a COB...

Mainframe Developer Interview Questions Asked at Other Companies

asked in TCS
Q1. How will you use NULL indicator in your program? How will you use ... read more
asked in EXL Service
Q2. What is the scripting language used on IBM mainframe operating sy ... read more
asked in TCS
Q3. How will you use cursor in COBOL program? What is the difference ... read more
asked in Infosys
Q4. What is the difference between COMP and COMP3?
asked in Infosys
Q5. What is a cursor in the context of databases, and what purposes d ... read more
A Mainframe Developer was asked 12mo ago
Q. In COBOL DB2, what does a bind detail of null indicate?
Ans. 

In COBOL DB2, binding indicates how null values are handled in SQL statements.

  • NULL in DB2 indicates that a value is unknown or missing.

  • When binding a COBOL variable, you can specify if it can accept NULL values.

  • Use the 'NULL' indicator variable to manage NULL values in COBOL.

  • Example: If a variable can be NULL, set its indicator to -1; otherwise, set it to 0.

A Mainframe Developer was asked
Q. What is the difference between CALL and COPY statements?
Ans. 

CALL statement is used to transfer control to another program while COPY statement is used to include copybooks in a program.

  • CALL statement is used to invoke a separate program or subroutine.

  • COPY statement is used to include copybooks in a program for reusability.

  • CALL statement transfers control to the called program and returns after execution.

  • COPY statement simply includes the contents of the copybook at the spe...

What people are saying about LTIMindtree

View All
a senior software engineer
1w
Need clarity on Ltimindtree's Variable pay
Hi, I have received an Offer from LTIMINDTREE, and there offering 24L(5Yoe) P3, 21.8L as Fixed and 2L as variable pay monthly. Client is Amazon I also have another offer with HTC, have two questions on the vp. The HR is trying to say that the VP is like non performance, regardless of performance you'll get it unless other companies which offer it based on performance...is this tru ? Then if I'm receiving a hike next year, what it'll be based on ?, will the 2.2L VP apply again next year. Hows the hike and promotion ? LTIMindtree
FeedCard Image
Got a question about LTIMindtree?
Ask anonymously on communities.
🔥 Asked by recruiter 2 times
A Mainframe Developer was asked
Q. What is the COND parameter?
Ans. 

COND parameter is used to specify the condition code value of the previous step to determine the execution of the current step.

  • It is used in JCL statements like IF, ELSEIF, and COND.

  • It can be used to execute a step conditionally based on the return code of the previous step.

  • It can also be used to skip a step based on the return code of the previous step.

  • The syntax for COND parameter is COND=(code, operator, stepna...

A Mainframe Developer was asked
Q. What are your questions regarding the COND parameter in JCL?
Ans. 

The COND parameter in JCL controls job step execution based on previous step outcomes.

  • The COND parameter can be used to specify conditions under which a job step should or should not execute.

  • Syntax: COND=(condition1, condition2, ...), where conditions can be based on return codes.

  • Example: COND=(0,4) means the step will execute if the previous step's return code is 0 or 4.

  • You can use 'EVEN' to execute the step rega...

LTIMindtree Mainframe Developer Interview Experiences

8 interviews found

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

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Static call details,string handle
  • Q2. COBOL db2 bind deatail , null indicates
  • Ans. 

    In COBOL DB2, binding indicates how null values are handled in SQL statements.

    • NULL in DB2 indicates that a value is unknown or missing.

    • When binding a COBOL variable, you can specify if it can accept NULL values.

    • Use the 'NULL' indicator variable to manage NULL values in COBOL.

    • Example: If a variable can be NULL, set its indicator to -1; otherwise, set it to 0.

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

(2 Questions)

  • Q1. Complex situations in project
  • Ans. 

    Handling complex situations in projects requires problem-solving skills, communication, and collaboration.

    • Identify the root cause of the complexity

    • Break down the problem into smaller tasks

    • Collaborate with team members to brainstorm solutions

    • Communicate effectively with stakeholders to manage expectations

    • Prioritize tasks based on urgency and impact

  • Answered by AI
  • Q2. How many people u lead
  • Ans. 

    I have led teams ranging from 3 to 10 members on various Mainframe projects, focusing on collaboration and skill development.

    • Led a team of 5 developers in a project to migrate legacy systems to modern Mainframe solutions, improving efficiency by 30%.

    • Managed a cross-functional team of 8 during a critical system upgrade, ensuring timely delivery and minimal downtime.

    • Conducted training sessions for new team members, enhan...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Job Portal and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What is SQL CA?
  • Ans. 

    SQL CA stands for SQL Communications Area, which is a data structure used in mainframe programming to communicate between programs and the DB2 database.

    • SQL CA contains information about the SQL statement being executed, such as SQLCODE, SQLSTATE, and error messages.

    • It is used to pass information between the application program and the DB2 database.

    • SQL CA is typically defined in the working storage section of a COBOL pr...

  • Answered by AI
  • Q2. Is any condition mandatory to call a program in COBOL?
  • Ans. 

    No, there is no mandatory condition to call a program in COBOL.

    • In COBOL, a program can be called without any mandatory conditions.

    • The CALL statement is used to call a program in COBOL.

    • The called program can be executed based on the logic written within it.

    • Example: CALL 'PROGRAM-NAME' USING parameters.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well mainly focus on COBOL, db2 and PLSQL.

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Job Portal and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. All the basics questions of cobol,jcl,db2
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Call and copy difference
  • Ans. 

    CALL statement is used to transfer control to another program while COPY statement is used to include copybooks in a program.

    • CALL statement is used to invoke a separate program or subroutine.

    • COPY statement is used to include copybooks in a program for reusability.

    • CALL statement transfers control to the called program and returns after execution.

    • COPY statement simply includes the contents of the copybook at the specifie...

  • Answered by AI

Skills evaluated in this interview

Mainframe Developer Interview Questions & Answers

user image Uma Maheswari

posted on 27 Jan 2023

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

I applied via Naukri.com and was interviewed in Dec 2022. There were 4 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 

(1 Question)

  • Q1. Scenario based questions
Round 3 - Technical 

(1 Question)

  • Q1. Tech and managerial round
Round 4 - HR 

(1 Question)

  • Q1. More about compensation

Interview Preparation Tips

Interview preparation tips for other job seekers - Intreview process was quick.Interviewer was very friendly.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. What is COND parameter?
  • Ans. 

    COND parameter is used to specify the condition code value of the previous step to determine the execution of the current step.

    • It is used in JCL statements like IF, ELSEIF, and COND.

    • It can be used to execute a step conditionally based on the return code of the previous step.

    • It can also be used to skip a step based on the return code of the previous step.

    • The syntax for COND parameter is COND=(code, operator, stepname).

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Prefered work location and salary negotiation

Interview Preparation Tips

Interview preparation tips for other job seekers - Be well prepared with your concepts

Skills evaluated in this interview

Round 1 - One-on-one 

(3 Questions)

  • Q1. All programs related questions
  • Q2. Questions on cond parameter in jcl
  • Ans. 

    The COND parameter in JCL controls job step execution based on previous step outcomes.

    • The COND parameter can be used to specify conditions under which a job step should or should not execute.

    • Syntax: COND=(condition1, condition2, ...), where conditions can be based on return codes.

    • Example: COND=(0,4) means the step will execute if the previous step's return code is 0 or 4.

    • You can use 'EVEN' to execute the step regardles...

  • Answered by AI
  • Q3. Restart logic in db2
  • Ans. 

    Restart logic in db2

    • Restart logic is used to recover from system or application failures

    • It involves identifying the point of failure and restarting from that point

    • In DB2, restart logic is implemented using the RESTART and CONTINUE options

    • RESTART option starts the application from the beginning of a unit of work

    • CONTINUE option resumes the application from the point of failure

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Concentrate more on logics and be cool
And pleasent while giving the interview
Keep your mind creative for logic of the problem

Mainframe Developer Interview Questions & Answers

user image Sri Divya Boga

posted on 1 Nov 2022

I applied via Campus Placement and was interviewed before Nov 2021. There were 3 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 - Aptitude Test 

All genaral multiple choices related to sql,html,c

Round 3 - Coding Test 

Coding teat giving a problem and need to use any language u know to compile and solve with necessary test cases

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident on the details u say related to the topic. Unique answers will do great.

Interview questions from similar companies

I applied via Naukri.com and was interviewed before Aug 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Technical questions : 1)oops concepts 2)plsql cursors, triggers, procedures 3)quick sort algorithm

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with your resume. None of the questions were asked out of resume.

Interview Questionnaire 

2 Questions

  • Q1. Apigee
  • Q2. Interal architecture

LTIMindtree Interview FAQs

How many rounds are there in LTIMindtree Mainframe Developer interview?
LTIMindtree interview process usually has 2 rounds. The most common rounds in the LTIMindtree interview process are Technical, One-on-one Round and Resume Shortlist.
How to prepare for LTIMindtree Mainframe Developer 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 LTIMindtree. The most common topics and skills that interviewers at LTIMindtree expect are Cobol, JCL, Cics, IBM DB2 and IMS DB.
What are the top questions asked in LTIMindtree Mainframe Developer interview?

Some of the top questions asked at the LTIMindtree Mainframe Developer interview -

  1. Is any condition mandatory to call a program in COB...read more
  2. What is COND paramet...read more
  3. Questions on cond parameter in ...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3.7/5

based on 6 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 75%
4-6 weeks 25%
View more
LTIMindtree Mainframe Developer Salary
based on 106 salaries
₹3.5 L/yr - ₹7.5 L/yr
21% less than the average Mainframe Developer Salary in India
View more details

LTIMindtree Mainframe Developer Reviews and Ratings

based on 12 reviews

3.0/5

Rating in categories

3.2

Skill development

2.9

Work-life balance

2.5

Salary

3.5

Job security

3.2

Company culture

2.5

Promotions

3.1

Work satisfaction

Explore 12 Reviews and Ratings
Mainframe Developer -Gurugram Location

Gurgaon / Gurugram

8-12 Yrs

Not Disclosed

Mainframe Developer

Kolkata,

Chennai

+1

5-8 Yrs

Not Disclosed

Mainframe Developer -IMS DB

Hyderabad / Secunderabad,

Bangalore / Bengaluru

5-10 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
22k salaries
unlock blur

₹7.4 L/yr - ₹21.7 L/yr

Software Engineer
16.3k salaries
unlock blur

₹3.9 L/yr - ₹8.8 L/yr

Technical Lead
6.4k salaries
unlock blur

₹16.4 L/yr - ₹28.5 L/yr

Module Lead
5.7k salaries
unlock blur

₹12.6 L/yr - ₹22 L/yr

Senior Engineer
4.7k salaries
unlock blur

₹5.8 L/yr - ₹14 L/yr

Explore more salaries
Compare LTIMindtree with

Cognizant

3.7
Compare

Capgemini

3.7
Compare

Accenture

3.7
Compare

TCS

3.6
Compare
write
Share an Interview